ETH Price: $3,065.03 (+3.17%)
Gas: 9 Gwei

Token

Crypto Titan Token (TITN)
 

Overview

Max Total Supply

1,000,000,000,000,000 TITN

Holders

311 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,757,180,147,699.700294525601216722 TITN

Value
$0.00
0xf136c7bef1985668c2fcddcdd0c7c488e78b2bcd
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Crypto Titan Token $TITN was created to provide gamers with a path to enter the world of crypto. The team is launching a play to earn mobile game that integrates NFT ownable avatars, token rewards, and PvP staking. The tax is 2% redistribution in ETH, 2% liquidity and 6% Marketing.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TITN

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-05
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.2;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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 Dividend-Paying Token Optional Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev OPTIONAL functions for a dividend-paying token contract.
interface DividendPayingTokenOptionalInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) external view returns(uint256);

  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) external view returns(uint256);
}

/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
interface DividendPayingTokenInterface {
  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) external view returns(uint256);

  /// @notice Distributes ether to token holders as dividends.
  /// @dev SHOULD distribute the paid ether to token holders as dividends.
  ///  SHOULD NOT directly transfer ether to token holders in this function.
  ///  MUST emit a `DividendsDistributed` event when the amount of distributed ether is greater than 0.
  function distributeDividends() external payable;

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
  ///  MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
  function withdrawDividend() external;

  /// @dev This event MUST emit when ether is distributed to token holders.
  /// @param from The address which sends ether to this contract.
  /// @param weiAmount The amount of distributed ether in wei.
  event DividendsDistributed(
    address indexed from,
    uint256 weiAmount
  );

  /// @dev This event MUST emit when an address withdraws their dividend.
  /// @param to The address which withdraws ether from this contract.
  /// @param weiAmount The amount of withdrawn ether in wei.
  event DividendWithdrawn(
    address indexed to,
    uint256 weiAmount
  );
}

/**
 * @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);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

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

/**
 * @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 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), _owner);
    }

    /**
     * @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;
    }
}
 
contract ERC20 is Context, IERC20, IERC20Metadata, Ownable {
    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 18;
    }

    /**
     * @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);
}



// pragma solidity >=0.6.2;

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



library IterableMapping {
    // Iterable mapping from address to uint;
    struct Map {
        address[] keys;
        mapping(address => uint) values;
        mapping(address => uint) indexOf;
        mapping(address => bool) inserted;
    }

    function get(Map storage map, address key) public view returns (uint) {
        return map.values[key];
    }

    function getIndexOfKey(Map storage map, address key) public view returns (int) {
        if(!map.inserted[key]) {
            return -1;
        }
        return int(map.indexOf[key]);
    }

    function getKeyAtIndex(Map storage map, uint index) public view returns (address) {
        return map.keys[index];
    }



    function size(Map storage map) public view returns (uint) {
        return map.keys.length;
    }

    function set(Map storage map, address key, uint val) public {
        if (map.inserted[key]) {
            map.values[key] = val;
        } else {
            map.inserted[key] = true;
            map.values[key] = val;
            map.indexOf[key] = map.keys.length;
            map.keys.push(key);
        }
    }

    function remove(Map storage map, address key) public {
        if (!map.inserted[key]) {
            return;
        }

        delete map.inserted[key];
        delete map.values[key];

        uint index = map.indexOf[key];
        uint lastIndex = map.keys.length - 1;
        address lastKey = map.keys[lastIndex];

        map.indexOf[lastKey] = index;
        delete map.indexOf[key];

        map.keys[index] = lastKey;
        map.keys.pop();
    }
}

/// @title Dividend-Paying Token
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev A mintable ERC20 token that allows anyone to pay and distribute ether
///  to token holders as dividends and allows token holders to withdraw their dividends.
///  Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code
contract DividendPayingToken is ERC20, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface {
  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  // With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
  // For more discussion about choosing the value of `magnitude`,
  //  see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
  uint256 constant internal magnitude = 2**128;

  uint256 internal magnifiedDividendPerShare;

  // About dividendCorrection:
  // If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
  // When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
  //   `dividendOf(_user)` should not be changed,
  //   but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
  // To keep the `dividendOf(_user)` unchanged, we add a correction term:
  //   `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
  //   where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
  //   `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
  // So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
  mapping(address => int256) internal magnifiedDividendCorrections;
  mapping(address => uint256) internal withdrawnDividends;

  uint256 public totalDividendsDistributed;

  constructor(string memory _name, string memory _symbol) public ERC20(_name, _symbol) {

  }

  /// @dev Distributes dividends whenever ether is paid to this contract.
  receive() external payable {
    distributeDividends();
  }

  /// @notice Distributes ether to token holders as dividends.
  /// @dev It reverts if the total supply of tokens is 0.
  /// It emits the `DividendsDistributed` event if the amount of received ether is greater than 0.
  /// About undistributed ether:
  ///   In each distribution, there is a small amount of ether not distributed,
  ///     the magnified amount of which is
  ///     `(msg.value * magnitude) % totalSupply()`.
  ///   With a well-chosen `magnitude`, the amount of undistributed ether
  ///     (de-magnified) in a distribution can be less than 1 wei.
  ///   We can actually keep track of the undistributed ether in a distribution
  ///     and try to distribute it in the next distribution,
  ///     but keeping track of such data on-chain costs much more than
  ///     the saved ether, so we don't do that.
  function distributeDividends() public override payable {
    require(totalSupply() > 0);

    if (msg.value > 0) {
      magnifiedDividendPerShare = magnifiedDividendPerShare.add(
        (msg.value).mul(magnitude) / totalSupply()
      );
      emit DividendsDistributed(msg.sender, msg.value);

      totalDividendsDistributed = totalDividendsDistributed.add(msg.value);
    }
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function withdrawDividend() public virtual override {
    _withdrawDividendOfUser(msg.sender);
  }

  /// @notice Withdraws the ether distributed to the sender.
  /// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
  function _withdrawDividendOfUser(address payable user) internal returns (uint256) {
    uint256 _withdrawableDividend = withdrawableDividendOf(user);
    if (_withdrawableDividend > 0) {
      withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
      emit DividendWithdrawn(user, _withdrawableDividend);
      (bool success,) = user.call{value: _withdrawableDividend, gas: 3000}("");

      if(!success) {
        withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend);
        return 0;
      }

      return _withdrawableDividend;
    }

    return 0;
  }


  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function dividendOf(address _owner) public view override returns(uint256) {
    return withdrawableDividendOf(_owner);
  }

  /// @notice View the amount of dividend in wei that an address can withdraw.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` can withdraw.
  function withdrawableDividendOf(address _owner) public view override returns(uint256) {
    return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
  }

  /// @notice View the amount of dividend in wei that an address has withdrawn.
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has withdrawn.
  function withdrawnDividendOf(address _owner) public view override returns(uint256) {
    return withdrawnDividends[_owner];
  }


  /// @notice View the amount of dividend in wei that an address has earned in total.
  /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
  /// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
  /// @param _owner The address of a token holder.
  /// @return The amount of dividend in wei that `_owner` has earned in total.
  function accumulativeDividendOf(address _owner) public view override returns(uint256) {
    return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe()
      .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
  }

  /// @dev Internal function that transfer tokens from one address to another.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param from The address to transfer from.
  /// @param to The address to transfer to.
  /// @param value The amount to be transferred.
  function _transfer(address from, address to, uint256 value) internal virtual override {
    require(false);

    int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe();
    magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection);
    magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection);
  }

  /// @dev Internal function that mints tokens to an account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account that will receive the created tokens.
  /// @param value The amount that will be created.
  function _mint(address account, uint256 value) internal override {
    super._mint(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  /// @dev Internal function that burns an amount of the token of a given account.
  /// Update magnifiedDividendCorrections to keep dividends unchanged.
  /// @param account The account whose tokens will be burnt.
  /// @param value The amount that will be burnt.
  function _burn(address account, uint256 value) internal override {
    super._burn(account, value);

    magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
      .add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
  }

  function _setBalance(address account, uint256 newBalance) internal {
    uint256 currentBalance = balanceOf(account);

    if(newBalance > currentBalance) {
      uint256 mintAmount = newBalance.sub(currentBalance);
      _mint(account, mintAmount);
    } else if(newBalance < currentBalance) {
      uint256 burnAmount = currentBalance.sub(newBalance);
      _burn(account, burnAmount);
    }
  }
}




contract TITN is ERC20 {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool private swapping;
    bool public pauseSell = false;
    bool public pauseBuy = false;


    CTTDividendTracker public dividendTracker;

    address public liquidityWallet;
    address payable public marketingWallet = 0x3A8820C2a5FBF7757ca2d3c4C0D4Aecb76E2D9b4;
    uint256 public swapTokensAtAmount = 1000000 * (10**18); 


    uint256 public immutable ETHRewardsFee;
    uint256 public immutable liquidityFee;
    uint256 public immutable MarketingWalletFee;
    uint256 public immutable totalFees;





    // sells have fees of 12 and 6 (10 * 1.2 and 5 * 1.2)
    uint256 public sellFeeIncreaseFactor = 120; 

    // use by default 50,000 gas to process auto-claiming dividends
    uint256 public gasForProcessing = 50000;


    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public blackList;


    

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    event UpdateDividendTracker(address indexed newAddress, address indexed oldAddress);

    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);


    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event LiquidityWalletUpdated(address indexed newLiquidityWallet, address indexed oldLiquidityWallet);

    event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue);


    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    event SendDividends(
    	uint256 tokensSwapped,
    	uint256 amount
    );

    event ProcessedDividendTracker(
    	uint256 iterations,
    	uint256 claims,
        uint256 lastProcessedIndex,
    	bool indexed automatic,
    	uint256 gas,
    	address indexed processor
    );

    constructor() public ERC20("Crypto Titan Token", "TITN") {
        uint256 _ETHRewardsFee = 2;
        uint256 _liquidityFee = 2;
        uint256 _MarketingWalletFee = 6;

        ETHRewardsFee = _ETHRewardsFee;
        liquidityFee = _liquidityFee;
        MarketingWalletFee = _MarketingWalletFee;
        totalFees = _ETHRewardsFee.add(_liquidityFee).add(_MarketingWalletFee);


    	dividendTracker = new CTTDividendTracker();

    	liquidityWallet = owner();

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

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);


        // exclude from receiving dividends
        dividendTracker.excludeFromDividends(address(dividendTracker));
        dividendTracker.excludeFromDividends(address(this));
        dividendTracker.excludeFromDividends(owner());
        dividendTracker.excludeFromDividends(address(_uniswapV2Router));

        // exclude from paying fees or having max transaction amount
        excludeFromFees(liquidityWallet, true);
        excludeFromFees(address(this), true);

        
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), 1000000000000000 * (10**18));
    }

    receive() external payable {

  	}

    function updateDividendTracker(address newAddress) public onlyOwner {
        require(newAddress != address(dividendTracker), "The dividend tracker already has that address");

        CTTDividendTracker newDividendTracker = CTTDividendTracker(payable(newAddress));

        require(newDividendTracker.owner() == address(this), "The new dividend tracker must be owned by the CTT token contract");

        newDividendTracker.excludeFromDividends(address(newDividendTracker));
        newDividendTracker.excludeFromDividends(address(this));
        newDividendTracker.excludeFromDividends(owner());
        newDividendTracker.excludeFromDividends(address(uniswapV2Router));

        emit UpdateDividendTracker(newAddress, address(dividendTracker));

        dividendTracker = newDividendTracker;
    }

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "The router already has that address");
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
    }

    function setSellStatus(bool enabled) external onlyOwner {
        pauseSell = enabled;
    }

    function setBuyStatus(bool enabled) external onlyOwner {
        pauseBuy = enabled;
    }
    

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "CTT: Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }
    
    function excludeFromDividends(address account) external onlyOwner {
        dividendTracker.excludeFromDividends(account);
    }
    
    function setSellFactor(uint256 newFactor) external onlyOwner {
        sellFeeIncreaseFactor = newFactor;
    }
    
    
    function setSwapAtAmount(uint256 newAmount) external onlyOwner {
        swapTokensAtAmount = newAmount * (10**18);
    }
    
    function changeMinimumHoldingLimit(uint256 newLimit) public onlyOwner {
        dividendTracker.setMinimumTokenBalanceForDividends(newLimit);
    }
    

    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }
    
    
    function changeMarketingWallet(address payable newAddress) external onlyOwner {
        marketingWallet = newAddress;
    }
    

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The Uniswap pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;

        if(value) {
            dividendTracker.excludeFromDividends(pair);
        }

        emit SetAutomatedMarketMakerPair(pair, value);
    }
    
    function sendETHToWallets(uint256 amount) private { 
        swapTokensForEth(amount); 
        marketingWallet.transfer(address(this).balance);
    }


    function updateLiquidityWallet(address newLiquidityWallet) public onlyOwner {
        require(newLiquidityWallet != liquidityWallet, "CTT: The liquidity wallet is already this address");
        excludeFromFees(newLiquidityWallet, true);
        emit LiquidityWalletUpdated(newLiquidityWallet, liquidityWallet);
        liquidityWallet = newLiquidityWallet;
    }

    function updateGasForProcessing(uint256 newValue) public onlyOwner {
        require(newValue != gasForProcessing, "CTT: Cannot update gasForProcessing to same value");
        emit GasForProcessingUpdated(newValue, gasForProcessing);
        gasForProcessing = newValue;
    }
    
    function blackListAddress(address account) external onlyOwner {
        blackList[account] = true;
    }
    
    function unBlockAddress(address account) external onlyOwner {
        blackList[account] = false;
    }

    function updateClaimWait(uint256 claimWait) external onlyOwner {
        dividendTracker.updateClaimWait(claimWait);
    }

    function getClaimWait() external view returns(uint256) {
        return dividendTracker.claimWait();
    }
    
    function minimumLimitForDividend() public view returns(uint256) {
        return dividendTracker.minimumTokenLimit();
    }

    function getTotalDividendsDistributed() external view returns (uint256) {
        return dividendTracker.totalDividendsDistributed();
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    function isExcludedFromDividends(address account) public view returns(bool) {
        return dividendTracker.excludedFromDividends(account);
    }

    function withdrawableDividendOf(address account) public view returns(uint256) {
    	return dividendTracker.withdrawableDividendOf(account);
  	}

	function dividendTokenBalanceOf(address account) public view returns (uint256) {
		return dividendTracker.balanceOf(account);
	}

    function getAccountDividendsInfo(address account)
        external view returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256) {
        return dividendTracker.getAccount(account);
    }

	function getAccountDividendsInfoAtIndex(uint256 index)
        external view returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256) {
    	return dividendTracker.getAccountAtIndex(index);
    }

	function processDividendTracker(uint256 gas) external {
		(uint256 iterations, uint256 claims, uint256 lastProcessedIndex) = dividendTracker.process(gas);
		emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, false, gas, tx.origin);
    }

    function claim() external {
		dividendTracker.processAccount(msg.sender, false);
    }

    function getLastProcessedIndex() external view returns(uint256) {
    	return dividendTracker.getLastProcessedIndex();
    }

    function getNumberOfDividendTokenHolders() external view returns(uint256) {
        return dividendTracker.getNumberOfTokenHolders();
    }
    

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
        

        if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(blackList[from] == true || blackList[to] == true) {
            revert();
        }

        if(to == uniswapV2Pair && pauseSell == true && from != owner()) {
            revert();
        }

        if(from == uniswapV2Pair && pauseBuy == true && to != owner()) {
            revert();
        }
        
        
		uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if(
            canSwap &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            from != liquidityWallet &&
            to != liquidityWallet
        ) {
            swapping = true;
            
            uint256 devWalletTokens = contractTokenBalance.mul(MarketingWalletFee).div(totalFees);
            sendETHToWallets(devWalletTokens);

            uint256 swapTokens = contractTokenBalance.mul(liquidityFee).div(totalFees);
            swapAndLiquify(swapTokens);

            uint256 sellTokens = balanceOf(address(this));
            swapAndSendDividends(sellTokens);

            swapping = false;
        }


        bool takeFee =  !swapping; 

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

        if(takeFee) {
        	uint256 fees = amount.mul(totalFees).div(100);

            // if sell, multiply by 1.2
            if(automatedMarketMakerPairs[to]) {
                fees = fees.mul(sellFeeIncreaseFactor).div(100);
            }

        	amount = amount.sub(fees);

            super._transfer(from, address(this), fees);
        }

        super._transfer(from, to, amount);

        try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {}
        try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {}

        if(!swapping) {
	    	uint256 gas = gasForProcessing;

	    	try dividendTracker.process(gas) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) {
	    		emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gas, tx.origin);
	    	} 
	    	catch {

	    	}
        }
    }

    function swapAndLiquify(uint256 tokens) private {
        // split the contract balance into halves
        uint256 half = tokens.div(2);
        uint256 otherHalf = tokens.sub(half);
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the liquidity event include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;
        
        // swap tokens for ETH
        swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered
        

        // how much ETH did we just swap into?
        uint256 newBalance = address(this).balance.sub(initialBalance);
        
        // add liquidity to uniswap
        addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);

    }

    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
            liquidityWallet,
            block.timestamp
        );
        
    }

    function swapAndSendDividends(uint256 tokens) private {
        swapTokensForEth(tokens);
        uint256 dividends = address(this).balance;
        (bool success,) = address(dividendTracker).call{value: dividends}("");

        if(success) {
   	 		emit SendDividends(tokens, dividends);
        }
    }
}

contract CTTDividendTracker is DividendPayingToken {
    using SafeMath for uint256;
    using SafeMathInt for int256;
    using IterableMapping for IterableMapping.Map;

    IterableMapping.Map private tokenHoldersMap;
    uint256 public lastProcessedIndex;

    mapping (address => bool) public excludedFromDividends;

    mapping (address => uint256) public lastClaimTimes;

    uint256 public claimWait;
    uint256 private  minimumTokenBalanceForDividends;

    event ExcludeFromDividends(address indexed account);
    event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);

    event Claim(address indexed account, uint256 amount, bool indexed automatic);

    constructor() public DividendPayingToken("CTT_Dividend_Tracker", "CTT_Dividend_Tracker") {
    	claimWait = 3600;
        minimumTokenBalanceForDividends = 500000000000 * (10**18); 
    }
    
    
    function setMinimumTokenBalanceForDividends(uint256 newMinTokenBalForDividends) external onlyOwner {
        minimumTokenBalanceForDividends = newMinTokenBalForDividends * (10**18);
    }

    function _transfer(address, address, uint256) internal override {
        require(false, "CTT_Dividend_Tracker: No transfers allowed");
    }

    function withdrawDividend() public override {
        require(false, "CTT_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main CTT contract.");
    }

    function excludeFromDividends(address account) external onlyOwner {
    	require(!excludedFromDividends[account]);
    	excludedFromDividends[account] = true;

    	_setBalance(account, 0);
    	tokenHoldersMap.remove(account);

    	emit ExcludeFromDividends(account);
    }

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(newClaimWait >= 3600 && newClaimWait <= 86400, "CTT_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours");
        require(newClaimWait != claimWait, "CTT_Dividend_Tracker: Cannot update claimWait to same value");
        emit ClaimWaitUpdated(newClaimWait, claimWait);
        claimWait = newClaimWait;
    }

    function getLastProcessedIndex() external view returns(uint256) {
    	return lastProcessedIndex;
    }
    
    function minimumTokenLimit() public view returns(uint256) {
        return minimumTokenBalanceForDividends;
    }

    function getNumberOfTokenHolders() external view returns(uint256) {
        return tokenHoldersMap.keys.length;
    }



    function getAccount(address _account)
        public view returns (
            address account,
            int256 index,
            int256 iterationsUntilProcessed,
            uint256 withdrawableDividends,
            uint256 totalDividends,
            uint256 lastClaimTime,
            uint256 nextClaimTime,
            uint256 secondsUntilAutoClaimAvailable) {
        account = _account;

        index = tokenHoldersMap.getIndexOfKey(account);

        iterationsUntilProcessed = -1;

        if(index >= 0) {
            if(uint256(index) > lastProcessedIndex) {
                iterationsUntilProcessed = index.sub(int256(lastProcessedIndex));
            }
            else {
                uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ?
                                                        tokenHoldersMap.keys.length.sub(lastProcessedIndex) :
                                                        0;


                iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray));
            }
        }


        withdrawableDividends = withdrawableDividendOf(account);
        totalDividends = accumulativeDividendOf(account);

        lastClaimTime = lastClaimTimes[account];

        nextClaimTime = lastClaimTime > 0 ?
                                    lastClaimTime.add(claimWait) :
                                    0;

        secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ?
                                                    nextClaimTime.sub(block.timestamp) :
                                                    0;
    }

    function getAccountAtIndex(uint256 index)
        public view returns (
            address,
            int256,
            int256,
            uint256,
            uint256,
            uint256,
            uint256,
            uint256) {
    	if(index >= tokenHoldersMap.size()) {
            return (0x0000000000000000000000000000000000000000, -1, -1, 0, 0, 0, 0, 0);
        }

        address account = tokenHoldersMap.getKeyAtIndex(index);

        return getAccount(account);
    }

    function canAutoClaim(uint256 lastClaimTime) private view returns (bool) {
    	if(lastClaimTime > block.timestamp)  {
    		return false;
    	}

    	return block.timestamp.sub(lastClaimTime) >= claimWait;
    }

    function setBalance(address payable account, uint256 newBalance) external onlyOwner {
    	if(excludedFromDividends[account]) {
    		return;
    	}

    	if(newBalance >= minimumTokenBalanceForDividends) {
            _setBalance(account, newBalance);
    		tokenHoldersMap.set(account, newBalance);
    	}
    	else {
            _setBalance(account, 0);
    		tokenHoldersMap.remove(account);
    	}

    	processAccount(account, true);
    }

    function process(uint256 gas) public returns (uint256, uint256, uint256) {
    	uint256 numberOfTokenHolders = tokenHoldersMap.keys.length;

    	if(numberOfTokenHolders == 0) {
    		return (0, 0, lastProcessedIndex);
    	}

    	uint256 _lastProcessedIndex = lastProcessedIndex;

    	uint256 gasUsed = 0;

    	uint256 gasLeft = gasleft();

    	uint256 iterations = 0;
    	uint256 claims = 0;

    	while(gasUsed < gas && iterations < numberOfTokenHolders) {
    		_lastProcessedIndex++;

    		if(_lastProcessedIndex >= tokenHoldersMap.keys.length) {
    			_lastProcessedIndex = 0;
    		}

    		address account = tokenHoldersMap.keys[_lastProcessedIndex];

    		if(canAutoClaim(lastClaimTimes[account])) {
    			if(processAccount(payable(account), true)) {
    				claims++;
    			}
    		}

    		iterations++;

    		uint256 newGasLeft = gasleft();

    		if(gasLeft > newGasLeft) {
    			gasUsed = gasUsed.add(gasLeft.sub(newGasLeft));
    		}

    		gasLeft = newGasLeft;
    	}

    	lastProcessedIndex = _lastProcessedIndex;

    	return (iterations, claims, lastProcessedIndex);
    }

    function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) {
        uint256 amount = _withdrawDividendOfUser(account);

    	if(amount > 0) {
    		lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount, automatic);
    		return true;
    	}

    	return false;
    }
}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","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":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"ETHRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MarketingWalletFee","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"blackListAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newAddress","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"changeMinimumHoldingLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract CTTDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"isExcludedFromDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","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":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumLimitForDividend","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":"pauseBuy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSell","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFeeIncreaseFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setBuyStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFactor","type":"uint256"}],"name":"setSellFactor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSellStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unBlockAddress","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"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newLiquidityWallet","type":"address"}],"name":"updateLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6101206040526006805461ffff60a81b19169055600980546001600160a01b031916733a8820c2a5fbf7757ca2d3c4c0d4aecb76e2d9b417905569d3c21bcecceda1000000600a556078600b5561c350600c553480156200005f57600080fd5b506040518060400160405280601281526020017121b93cb83a37902a34ba30b7102a37b5b2b760711b815250604051806040016040528060048152602001632a24aa2760e11b8152506000620000ba620005b960201b60201c565b600080546001600160a01b0319166001600160a01b038381169190911780835560405193945016917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200011d906004906020850190620009a6565b50805162000133906005906020840190620009a6565b5050600260a081905260c0819052600660e081905290915081906200017e816200016a8480620005bd602090811b6200277817901c565b620005bd60201b620027781790919060201c565b61010052604051620001909062000a2b565b604051809103906000f080158015620001ad573d6000803e3d6000fd5b50600780546001600160a01b0319166001600160a01b0392909216919091179055620001d86200061f565b600860006101000a8154816001600160a01b0302191690836001600160a01b031602179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200025357600080fd5b505afa15801562000268573d6000803e3d6000fd5b505050506040513d60208110156200027f57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b158015620002d057600080fd5b505afa158015620002e5573d6000803e3d6000fd5b505050506040513d6020811015620002fc57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200034f57600080fd5b505af115801562000364573d6000803e3d6000fd5b505050506040513d60208110156200037b57600080fd5b5051600680546001600160a01b0319166001600160a01b038516179055606081901b6001600160601b0319166080529050620003b98160016200062e565b6007546040805163031e79db60e41b81526001600160a01b0390921660048301819052905190916331e79db091602480830192600092919082900301818387803b1580156200040757600080fd5b505af11580156200041c573d6000803e3d6000fd5b50506007546040805163031e79db60e41b815230600482015290516001600160a01b0390921693506331e79db0925060248082019260009290919082900301818387803b1580156200046d57600080fd5b505af115801562000482573d6000803e3d6000fd5b50506007546001600160a01b031691506331e79db09050620004a36200061f565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015620004e357600080fd5b505af1158015620004f8573d6000803e3d6000fd5b50506007546040805163031e79db60e41b81526001600160a01b03878116600483015291519190921693506331e79db09250602480830192600092919082900301818387803b1580156200054b57600080fd5b505af115801562000560573d6000803e3d6000fd5b50506008546200057e92506001600160a01b03169050600162000761565b6200058b30600162000761565b620005ae620005996200061f565b6d314dc6448d9338c15b0a000000006200088e565b505050505062000a50565b3390565b60008282018381101562000618576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6000546001600160a01b031690565b6001600160a01b0382166000908152600f602052604090205460ff16151581151514156200068e5760405162461bcd60e51b8152600401808060200182810382526038815260200180620069a96038913960400191505060405180910390fd5b6001600160a01b0382166000908152600f60205260409020805460ff1916821580159190911790915562000725576007546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b1580156200070b57600080fd5b505af115801562000720573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6200076b620005b9565b6000546001600160a01b03908116911614620007ce576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0382166000908152600d602052604090205460ff16151581151514156200082e5760405162461bcd60e51b815260040180806020018281038252602f8152602001806200697a602f913960400191505060405180910390fd5b6001600160a01b0382166000818152600d6020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6001600160a01b038216620008ea576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620008f860008383620009a1565b6200091481600354620005bd60201b620027781790919060201c565b6003556001600160a01b0382166000908152600160209081526040909120546200094991839062002778620005bd821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620009e957805160ff191683800117855562000a19565b8280016001018555821562000a19579182015b8281111562000a19578251825591602001919060010190620009fc565b5062000a2792915062000a39565b5090565b612440806200453a83390190565b5b8082111562000a27576000815560010162000a3a565b60805160601c60a05160c05160e05161010051613a7f62000abb60003980610f145280612b5c5280612bbd5280612ca2525080611c555280612b81525080611c895280612be2525080611bc15250806112045280611d0552806129be5280612a3c5250613a7f6000f3fe60806040526004361061039b5760003560e01c80638c0344db116101dc578063b62496f511610102578063dd62ed3e116100a0578063e98030c71161006f578063e98030c714610d37578063efce97e814610d61578063f27fd25414610d8b578063f2fde38b14610db5576103a2565b8063dd62ed3e14610c9f578063e2f4560514610cda578063e37ba8f914610cef578063e7841ec014610d22576103a2565b8063c492f046116100dc578063c492f04614610bc3578063c705c56914610c42578063d469801614610c75578063d709a36214610c8a576103a2565b8063b62496f514610b22578063bb85c6d114610b55578063c024666814610b88576103a2565b80639c1b8af51161017a578063a8b9d24011610149578063a8b9d24014610a0e578063a9059cbb14610a41578063ad56c13c14610a7a578063aefcd97014610af8576103a2565b80639c1b8af514610996578063a26579ad146109ab578063a38eb622146109c0578063a457c2d7146109d5576103a2565b806396f792ce116101b657806396f792ce1461091c5780639754a7d81461093157806398118cb4146109465780639a7a23d61461095b576103a2565b80638c0344db146108dd5780638da5cb5b146108f257806395d89b4114610907576103a2565b806349bd5a5e116102c157806365b8dbc01161025f578063715018a61161022e578063715018a61461085657806375f0a8741461086b578063871c128d1461088057806388bdd9be146108aa576103a2565b806365b8dbc0146107935780636843cd84146107c6578063700bb191146107f957806370a0823114610823576103a2565b80635b4be32b1161029b5780635b4be32b146106f55780635bfd1ab8146107215780636402511e1461075457806364b0f6531461077e576103a2565b806349bd5a5e146106985780634e71d92d146106ad5780634fbee193146106c2576103a2565b806323b872dd1161033957806331e79db01161030857806331e79db0146105c657806339509351146105f95780633b0e0133146106325780634838d16514610665576103a2565b806323b872dd1461052e5780632c1f52161461057157806330bb4cff14610586578063313ce5671461059b576103a2565b806313114a9d1161037557806313114a9d146104ac5780631694505e146104d357806318160ddd1461050457806322bd3f7f14610519576103a2565b806306fdde03146103a7578063095ea7b3146104315780630d02e05c1461047e576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610de8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103f65781810151838201526020016103de565b50505050905090810190601f1680156104235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561043d57600080fd5b5061046a6004803603604081101561045457600080fd5b506001600160a01b038135169060200135610e7e565b604080519115158252519081900360200190f35b34801561048a57600080fd5b506104aa600480360360208110156104a157600080fd5b50351515610e9c565b005b3480156104b857600080fd5b506104c1610f12565b60408051918252519081900360200190f35b3480156104df57600080fd5b506104e8610f36565b604080516001600160a01b039092168252519081900360200190f35b34801561051057600080fd5b506104c1610f45565b34801561052557600080fd5b506104c1610f4b565b34801561053a57600080fd5b5061046a6004803603606081101561055157600080fd5b506001600160a01b03813581169160208101359091169060400135610f51565b34801561057d57600080fd5b506104e8610fd8565b34801561059257600080fd5b506104c1610fe7565b3480156105a757600080fd5b506105b061105d565b6040805160ff9092168252519081900360200190f35b3480156105d257600080fd5b506104aa600480360360208110156105e957600080fd5b50356001600160a01b0316611062565b34801561060557600080fd5b5061046a6004803603604081101561061c57600080fd5b506001600160a01b038135169060200135611123565b34801561063e57600080fd5b506104aa6004803603602081101561065557600080fd5b50356001600160a01b0316611171565b34801561067157600080fd5b5061046a6004803603602081101561068857600080fd5b50356001600160a01b03166111ed565b3480156106a457600080fd5b506104e8611202565b3480156106b957600080fd5b506104aa611226565b3480156106ce57600080fd5b5061046a600480360360208110156106e557600080fd5b50356001600160a01b03166112ab565b34801561070157600080fd5b506104aa6004803603602081101561071857600080fd5b503515156112c9565b34801561072d57600080fd5b506104aa6004803603602081101561074457600080fd5b50356001600160a01b031661133f565b34801561076057600080fd5b506104aa6004803603602081101561077757600080fd5b50356113b8565b34801561078a57600080fd5b506104c161141f565b34801561079f57600080fd5b506104aa600480360360208110156107b657600080fd5b50356001600160a01b0316611464565b3480156107d257600080fd5b506104c1600480360360208110156107e957600080fd5b50356001600160a01b0316611566565b34801561080557600080fd5b506104aa6004803603602081101561081c57600080fd5b50356115e9565b34801561082f57600080fd5b506104c16004803603602081101561084657600080fd5b50356001600160a01b03166116d0565b34801561086257600080fd5b506104aa6116eb565b34801561087757600080fd5b506104e861178d565b34801561088c57600080fd5b506104aa600480360360208110156108a357600080fd5b503561179c565b3480156108b657600080fd5b506104aa600480360360208110156108cd57600080fd5b50356001600160a01b0316611868565b3480156108e957600080fd5b506104c1611bbf565b3480156108fe57600080fd5b506104e8611be3565b34801561091357600080fd5b506103bc611bf2565b34801561092857600080fd5b506104c1611c53565b34801561093d57600080fd5b5061046a611c77565b34801561095257600080fd5b506104c1611c87565b34801561096757600080fd5b506104aa6004803603604081101561097e57600080fd5b506001600160a01b0381351690602001351515611cab565b3480156109a257600080fd5b506104c1611d7e565b3480156109b757600080fd5b506104c1611d84565b3480156109cc57600080fd5b5061046a611dc9565b3480156109e157600080fd5b5061046a600480360360408110156109f857600080fd5b506001600160a01b038135169060200135611dd9565b348015610a1a57600080fd5b506104c160048036036020811015610a3157600080fd5b50356001600160a01b0316611e41565b348015610a4d57600080fd5b5061046a60048036036040811015610a6457600080fd5b506001600160a01b038135169060200135611e92565b348015610a8657600080fd5b50610aad60048036036020811015610a9d57600080fd5b50356001600160a01b0316611ea6565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610b0457600080fd5b506104aa60048036036020811015610b1b57600080fd5b5035611f86565b348015610b2e57600080fd5b5061046a60048036036020811015610b4557600080fd5b50356001600160a01b031661202b565b348015610b6157600080fd5b506104aa60048036036020811015610b7857600080fd5b50356001600160a01b0316612040565b348015610b9457600080fd5b506104aa60048036036040811015610bab57600080fd5b506001600160a01b03813516906020013515156120ba565b348015610bcf57600080fd5b506104aa60048036036040811015610be657600080fd5b810190602081018135640100000000811115610c0157600080fd5b820183602082011115610c1357600080fd5b80359060200191846020830284011164010000000083111715610c3557600080fd5b91935091503515156121d0565b348015610c4e57600080fd5b5061046a60048036036020811015610c6557600080fd5b50356001600160a01b03166122f0565b348015610c8157600080fd5b506104e8612341565b348015610c9657600080fd5b506104c1612350565b348015610cab57600080fd5b506104c160048036036040811015610cc257600080fd5b506001600160a01b0381358116916020013516612395565b348015610ce657600080fd5b506104c16123c0565b348015610cfb57600080fd5b506104aa60048036036020811015610d1257600080fd5b50356001600160a01b03166123c6565b348015610d2e57600080fd5b506104c16124d3565b348015610d4357600080fd5b506104aa60048036036020811015610d5a57600080fd5b5035612518565b348015610d6d57600080fd5b506104aa60048036036020811015610d8457600080fd5b50356125bd565b348015610d9757600080fd5b50610aad60048036036020811015610dae57600080fd5b503561261a565b348015610dc157600080fd5b506104aa60048036036020811015610dd857600080fd5b50356001600160a01b0316612680565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e745780601f10610e4957610100808354040283529160200191610e74565b820191906000526020600020905b815481529060010190602001808311610e5757829003601f168201915b5050505050905090565b6000610e92610e8b6127d9565b84846127dd565b5060015b92915050565b610ea46127d9565b6000546001600160a01b03908116911614610ef4576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b60068054911515600160b01b0260ff60b01b19909216919091179055565b7f000000000000000000000000000000000000000000000000000000000000000081565b6006546001600160a01b031681565b60035490565b600b5481565b6000610f5e8484846128c9565b610fce84610f6a6127d9565b610fc985604051806060016040528060288152602001613936602891396001600160a01b038a16600090815260026020526040812090610fa86127d9565b6001600160a01b031681526020810191909152604001600020549190612f0e565b6127dd565b5060019392505050565b6007546001600160a01b031681565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b15801561102c57600080fd5b505afa158015611040573d6000803e3d6000fd5b505050506040513d602081101561105657600080fd5b5051905090565b601290565b61106a6127d9565b6000546001600160a01b039081169116146110ba576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6007546040805163031e79db60e41b81526001600160a01b038481166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561110857600080fd5b505af115801561111c573d6000803e3d6000fd5b5050505050565b6000610e926111306127d9565b84610fc985600260006111416127d9565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612778565b6111796127d9565b6000546001600160a01b039081169116146111c9576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b600e6020526000908152604090205460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6007546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b15801561127d57600080fd5b505af1158015611291573d6000803e3d6000fd5b505050506040513d60208110156112a757600080fd5b5050565b6001600160a01b03166000908152600d602052604090205460ff1690565b6112d16127d9565b6000546001600160a01b03908116911614611321576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b60068054911515600160a81b0260ff60a81b19909216919091179055565b6113476127d9565b6000546001600160a01b03908116911614611397576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6113c06127d9565b6000546001600160a01b03908116911614611410576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b670de0b6b3a764000002600a55565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b15801561102c57600080fd5b61146c6127d9565b6000546001600160a01b039081169116146114bc576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6006546001600160a01b03828116911614156115095760405162461bcd60e51b81526004018080602001828103825260238152602001806138716023913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b600754604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b1580156115b757600080fd5b505afa1580156115cb573d6000803e3d6000fd5b505050506040513d60208110156115e157600080fd5b505192915050565b600754604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b15801561164057600080fd5b505af1158015611654573d6000803e3d6000fd5b505050506040513d606081101561166a57600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526001602052604090205490565b6116f36127d9565b6000546001600160a01b03908116911614611743576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6009546001600160a01b031681565b6117a46127d9565b6000546001600160a01b039081169116146117f4576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b600c548114156118355760405162461bcd60e51b8152600401808060200182810382526031815260200180613a196031913960400191505060405180910390fd5b600c5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600c55565b6118706127d9565b6000546001600160a01b039081169116146118c0576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6007546001600160a01b038281169116141561190d5760405162461bcd60e51b815260040180806020018281038252602d8152602001806139ec602d913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561195557600080fd5b505afa158015611969573d6000803e3d6000fd5b505050506040513d602081101561197f57600080fd5b50516001600160a01b0316146119c65760405162461bcd60e51b81526004018080602001828103825260408152602001806138f66040913960400191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611a1557600080fd5b505af1158015611a29573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611a7457600080fd5b505af1158015611a88573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611aa3611be3565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611ae257600080fd5b505af1158015611af6573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611b4857600080fd5b505af1158015611b5c573d6000803e3d6000fd5b50506007546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600780546001600160a01b0319166001600160a01b039290921691909117905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b031690565b60058054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e745780601f10610e4957610100808354040283529160200191610e74565b7f000000000000000000000000000000000000000000000000000000000000000081565b600654600160a81b900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b611cb36127d9565b6000546001600160a01b03908116911614611d03576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415611d745760405162461bcd60e51b81526004018080602001828103825260418152602001806138946041913960600191505060405180910390fd5b6112a78282612fa5565b600c5481565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b15801561102c57600080fd5b600654600160b01b900460ff1681565b6000610e92611de66127d9565b84610fc9856040518060600160405280602581526020016139c76025913960026000611e106127d9565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612f0e565b600754604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b1580156115b757600080fd5b6000610e92611e9f6127d9565b84846128c9565b600080600080600080600080600760009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b158015611f1557600080fd5b505afa158015611f29573d6000803e3d6000fd5b505050506040513d610100811015611f4057600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b611f8e6127d9565b6000546001600160a01b03908116911614611fde576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b60075460408051635ebf4db960e01b81526004810184905290516001600160a01b0390921691635ebf4db99160248082019260009290919082900301818387803b15801561110857600080fd5b600f6020526000908152604090205460ff1681565b6120486127d9565b6000546001600160a01b03908116911614612098576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6120c26127d9565b6000546001600160a01b03908116911614612112576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600d602052604090205460ff16151581151514156121705760405162461bcd60e51b815260040180806020018281038252602f81526020018061376b602f913960400191505060405180910390fd5b6001600160a01b0382166000818152600d6020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6121d86127d9565b6000546001600160a01b03908116911614612228576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b60005b8281101561227d5781600d600086868581811061224457fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff191691151591909117905560010161222b565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b60075460408051634e7b827f60e01b81526001600160a01b03848116600483015291516000939290921691634e7b827f91602480820192602092909190829003018186803b1580156115b757600080fd5b6008546001600160a01b031681565b600754604080516332f1665960e11b815290516000926001600160a01b0316916365e2ccb2916004808301926020929190829003018186803b15801561102c57600080fd5b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600a5481565b6123ce6127d9565b6000546001600160a01b0390811691161461241e576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6008546001600160a01b038281169116141561246b5760405162461bcd60e51b815260040180806020018281038252603181526020018061379a6031913960400191505060405180910390fd5b6124768160016120ba565b6008546040516001600160a01b03918216918316907f6080503d1da552ae8eb4b7b8a20245d9fabed014180510e7d1a05ea08fdb0f3e90600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b15801561102c57600080fd5b6125206127d9565b6000546001600160a01b03908116911614612570576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6007546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b15801561110857600080fd5b6125c56127d9565b6000546001600160a01b03908116911614612615576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b600b55565b600080600080600080600080600760009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b158015611f1557600080fd5b6126886127d9565b6000546001600160a01b039081169116146126d8576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6001600160a01b03811661271d5760405162461bcd60e51b81526004018080602001828103825260268152602001806137cb6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000828201838110156127d2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166128225760405162461bcd60e51b81526004018080602001828103825260248152602001806139a36024913960400191505060405180910390fd5b6001600160a01b0382166128675760405162461bcd60e51b81526004018080602001828103825260228152602001806137f16022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661290e5760405162461bcd60e51b815260040180806020018281038252602581526020018061397e6025913960400191505060405180910390fd5b6001600160a01b0382166129535760405162461bcd60e51b81526004018080602001828103825260238152602001806137486023913960400191505060405180910390fd5b8061296957612964838360006130d3565b612f09565b6001600160a01b0383166000908152600e602052604090205460ff161515600114806129b257506001600160a01b0382166000908152600e602052604090205460ff1615156001145b156129bc57600080fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316148015612a0b5750600654600160a81b900460ff1615156001145b8015612a305750612a1a611be3565b6001600160a01b0316836001600160a01b031614155b15612a3a57600080fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015612a895750600654600160b01b900460ff1615156001145b8015612aae5750612a98611be3565b6001600160a01b0316826001600160a01b031614155b15612ab857600080fd5b6000612ac3306116d0565b600a5490915081108015908190612ae45750600654600160a01b900460ff16155b8015612b0957506001600160a01b0385166000908152600f602052604090205460ff16155b8015612b2357506008546001600160a01b03868116911614155b8015612b3d57506008546001600160a01b03858116911614155b15612c38576006805460ff60a01b1916600160a01b1790556000612bab7f0000000000000000000000000000000000000000000000000000000000000000612ba5857f0000000000000000000000000000000000000000000000000000000000000000613230565b90613289565b9050612bb6816132cb565b6000612c067f0000000000000000000000000000000000000000000000000000000000000000612ba5867f0000000000000000000000000000000000000000000000000000000000000000613230565b9050612c118161330d565b6000612c1c306116d0565b9050612c2781613393565b50506006805460ff60a01b19169055505b6006546001600160a01b0386166000908152600d602052604090205460ff600160a01b909204821615911680612c8657506001600160a01b0385166000908152600d602052604090205460ff165b15612c8f575060005b8015612d20576000612cc66064612ba5877f0000000000000000000000000000000000000000000000000000000000000000613230565b6001600160a01b0387166000908152600f602052604090205490915060ff1615612d0757612d046064612ba5600b548461323090919063ffffffff16565b90505b612d11858261343c565b9450612d1e8730836130d3565b505b612d2b8686866130d3565b6007546001600160a01b031663e30443bc87612d46816116d0565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612d8c57600080fd5b505af1925050508015612d9d575060015b506007546001600160a01b031663e30443bc86612db9816116d0565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612dff57600080fd5b505af1925050508015612e10575060015b50600654600160a01b900460ff16612f0557600c54600754604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b158015612e7657600080fd5b505af1925050508015612eaa57506040513d6060811015612e9657600080fd5b508051602082015160409092015190919060015b612eb357612f03565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b60008184841115612f9d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f62578181015183820152602001612f4a565b50505050905090810190601f168015612f8f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166000908152600f602052604090205460ff16151581151514156130035760405162461bcd60e51b81526004018080602001828103825260388152602001806138136038913960400191505060405180910390fd5b6001600160a01b0382166000908152600f60205260409020805460ff19168215801591909117909155613097576007546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561307e57600080fd5b505af1158015613092573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166131185760405162461bcd60e51b815260040180806020018281038252602581526020018061397e6025913960400191505060405180910390fd5b6001600160a01b03821661315d5760405162461bcd60e51b81526004018080602001828103825260238152602001806137486023913960400191505060405180910390fd5b613168838383612f09565b6131a58160405180606001604052806026815260200161384b602691396001600160a01b0386166000908152600160205260409020549190612f0e565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546131d49082612778565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008261323f57506000610e96565b8282028284828161324c57fe5b04146127d25760405162461bcd60e51b81526004018080602001828103825260218152602001806138d56021913960400191505060405180910390fd5b60006127d283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061347e565b6132d4816134e3565b6009546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156112a7573d6000803e3d6000fd5b600061331a826002613289565b90506000613328838361343c565b905047613334836134e3565b6000613340478361343c565b905061334c8382613689565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b61339c816134e3565b60075460405147916000916001600160a01b039091169083908381818185875af1925050503d80600081146133ed576040519150601f19603f3d011682016040523d82523d6000602084013e6133f2565b606091505b505090508015612f0957604080518481526020810184905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3929181900390910190a1505050565b60006127d283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612f0e565b600081836134cd5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612f62578181015183820152602001612f4a565b5060008385816134d957fe5b0495945050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061351157fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561356557600080fd5b505afa158015613579573d6000803e3d6000fd5b505050506040513d602081101561358f57600080fd5b50518151829060019081106135a057fe5b6001600160a01b0392831660209182029290920101526006546135c691309116846127dd565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561364c578181015183820152602001613634565b505050509050019650505050505050600060405180830381600087803b15801561367557600080fd5b505af1158015612f05573d6000803e3d6000fd5b6006546136a19030906001600160a01b0316846127dd565b6006546008546040805163f305d71960e01b81523060048201526024810186905260006044820181905260648201526001600160a01b0392831660848201524260a48201529051919092169163f305d71991849160c48082019260609290919082900301818588803b15801561371657600080fd5b505af115801561372a573d6000803e3d6000fd5b50505050506040513d606081101561374157600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734354543a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c75646564274354543a20546865206c69717569646974792077616c6c657420697320616c7265616479207468697320616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c756545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554686520726f7574657220616c7265616479206861732074686174206164647265737354686520556e697377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b65725061697273536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e6564206279207468652043545420746f6b656e20636f6e747261637445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f546865206469766964656e6420747261636b657220616c726561647920686173207468617420616464726573734354543a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c7565a26469706673582212201937b997ae6634aeaa670520a52ecc1932b0c24332867c83a32bc4299b3491f164736f6c634300060c003360806040523480156200001157600080fd5b506040518060400160405280601481526020017f4354545f4469766964656e645f547261636b65720000000000000000000000008152506040518060400160405280601481526020017f4354545f4469766964656e645f547261636b657200000000000000000000000081525081816000620000926200012d60201b60201c565b600080546001600160a01b0319166001600160a01b038381169190911780835560405193945016917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000f590600490602085019062000131565b5080516200010b90600590602084019062000131565b5050610e1060115550506c064f964e68233a76f52000000060125550620001cd565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200017457805160ff1916838001178555620001a4565b82800160010185558215620001a4579182015b82811115620001a457825182559160200191906001019062000187565b50620001b2929150620001b6565b5090565b5b80821115620001b25760008155600101620001b7565b61226380620001dd6000396000f3fe6080604052600436106102135760003560e01c806370a0823111610118578063aafd847a116100a0578063e7841ec01161006f578063e7841ec014610805578063e98030c71461081a578063f2fde38b14610844578063fbcbc0f114610877578063ffb2c479146108aa57610222565b8063aafd847a14610723578063bc4c4b3714610756578063dd62ed3e14610791578063e30443bc146107cc57610222565b806391b89fba116100e757806391b89fba1461063657806395d89b4114610669578063a457c2d71461067e578063a8b9d240146106b7578063a9059cbb146106ea57610222565b806370a08231146105a8578063715018a6146105db57806385a6b3ae146105f05780638da5cb5b1461060557610222565b8063313ce5671161019b5780635183d6fd1161016a5780635183d6fd146104ca5780635ebf4db91461053f57806365e2ccb2146105695780636a4740021461057e5780636f2789ec1461059357610222565b8063313ce5671461040057806331e79db01461042b578063395093511461045e5780634e7b827f1461049757610222565b806318160ddd116101e257806318160ddd1461032d578063226cfa3d1461034257806323b872dd1461037557806327ce0147146103b85780633009a609146103eb57610222565b806303c833021461022757806306fdde031461022f578063095ea7b3146102b957806309bbedde1461030657610222565b36610222576102206108f2565b005b600080fd5b6102206108f2565b34801561023b57600080fd5b50610244610983565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561027e578181015183820152602001610266565b50505050905090810190601f1680156102ab5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102c557600080fd5b506102f2600480360360408110156102dc57600080fd5b506001600160a01b038135169060200135610a19565b604080519115158252519081900360200190f35b34801561031257600080fd5b5061031b610a37565b60408051918252519081900360200190f35b34801561033957600080fd5b5061031b610a3d565b34801561034e57600080fd5b5061031b6004803603602081101561036557600080fd5b50356001600160a01b0316610a43565b34801561038157600080fd5b506102f26004803603606081101561039857600080fd5b506001600160a01b03813581169160208101359091169060400135610a55565b3480156103c457600080fd5b5061031b600480360360208110156103db57600080fd5b50356001600160a01b0316610adc565b3480156103f757600080fd5b5061031b610b3b565b34801561040c57600080fd5b50610415610b41565b6040805160ff9092168252519081900360200190f35b34801561043757600080fd5b506102206004803603602081101561044e57600080fd5b50356001600160a01b0316610b46565b34801561046a57600080fd5b506102f26004803603604081101561048157600080fd5b506001600160a01b038135169060200135610ca2565b3480156104a357600080fd5b506102f2600480360360208110156104ba57600080fd5b50356001600160a01b0316610cf0565b3480156104d657600080fd5b506104f4600480360360208110156104ed57600080fd5b5035610d05565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b34801561054b57600080fd5b506102206004803603602081101561056257600080fd5b5035610e64565b34801561057557600080fd5b5061031b610ecb565b34801561058a57600080fd5b50610220610ed1565b34801561059f57600080fd5b5061031b610f08565b3480156105b457600080fd5b5061031b600480360360208110156105cb57600080fd5b50356001600160a01b0316610f0e565b3480156105e757600080fd5b50610220610f29565b3480156105fc57600080fd5b5061031b610fcb565b34801561061157600080fd5b5061061a610fd1565b604080516001600160a01b039092168252519081900360200190f35b34801561064257600080fd5b5061031b6004803603602081101561065957600080fd5b50356001600160a01b0316610fe0565b34801561067557600080fd5b50610244610feb565b34801561068a57600080fd5b506102f2600480360360408110156106a157600080fd5b506001600160a01b03813516906020013561104c565b3480156106c357600080fd5b5061031b600480360360208110156106da57600080fd5b50356001600160a01b03166110b4565b3480156106f657600080fd5b506102f26004803603604081101561070d57600080fd5b506001600160a01b0381351690602001356110e0565b34801561072f57600080fd5b5061031b6004803603602081101561074657600080fd5b50356001600160a01b03166110f4565b34801561076257600080fd5b506102f26004803603604081101561077957600080fd5b506001600160a01b038135169060200135151561110f565b34801561079d57600080fd5b5061031b600480360360408110156107b457600080fd5b506001600160a01b03813581169160200135166111e4565b3480156107d857600080fd5b50610220600480360360408110156107ef57600080fd5b506001600160a01b03813516906020013561120f565b34801561081157600080fd5b5061031b6113bb565b34801561082657600080fd5b506102206004803603602081101561083d57600080fd5b50356113c1565b34801561085057600080fd5b506102206004803603602081101561086757600080fd5b50356001600160a01b03166114dd565b34801561088357600080fd5b506104f46004803603602081101561089a57600080fd5b50356001600160a01b03166115d5565b3480156108b657600080fd5b506108d4600480360360208110156108cd57600080fd5b5035611748565b60408051938452602084019290925282820152519081900360600190f35b60006108fc610a3d565b1161090657600080fd5b341561098157610937610917610a3d565b61092534600160801b611846565b8161092c57fe5b6006549190046118a6565b60065560408051348152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a260095461097d90346118a6565b6009555b565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a0f5780601f106109e457610100808354040283529160200191610a0f565b820191906000526020600020905b8154815290600101906020018083116109f257829003601f168201915b5050505050905090565b6000610a2d610a26611900565b8484611904565b5060015b92915050565b600a5490565b60035490565b60106020526000908152604090205481565b6000610a628484846119f0565b610ad284610a6e611900565b610acd85604051806060016040528060288152602001612117602891396001600160a01b038a16600090815260026020526040812090610aac611900565b6001600160a01b031681526020810191909152604001600020549190611a27565b611904565b5060019392505050565b6001600160a01b038116600090815260076020526040812054600160801b90610b2b90610b2690610b20610b1b610b1288610f0e565b60065490611846565b611abe565b90611ace565b611b01565b81610b3257fe5b0490505b919050565b600e5481565b601290565b610b4e611900565b6000546001600160a01b03908116911614610b9e576040805162461bcd60e51b8152602060048201819052602482015260008051602061213f833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600f602052604090205460ff1615610bc457600080fd5b6001600160a01b0381166000908152600f60205260408120805460ff19166001179055610bf2908290611b14565b6040805163131836e760e21b8152600a60048201526001600160a01b03831660248201529051737c515d6440f36494ec1c570bdd163385ec0acb0b91634c60db9c916044808301926000929190829003018186803b158015610c5357600080fd5b505af4158015610c67573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b6000610a2d610caf611900565b84610acd8560026000610cc0611900565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906118a6565b600f6020526000908152604090205460ff1681565b600080600080600080600080600a737c515d6440f36494ec1c570bdd163385ec0acb0b63deb3d89690916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610d6357600080fd5b505af4158015610d77573d6000803e3d6000fd5b505050506040513d6020811015610d8d57600080fd5b50518910610db4575060009650600019955085945086935083925082915081905080610e59565b6000600a737c515d6440f36494ec1c570bdd163385ec0acb0b63d1aa9e7e90918c6040518363ffffffff1660e01b8152600401808381526020018281526020019250505060206040518083038186803b158015610e1057600080fd5b505af4158015610e24573d6000803e3d6000fd5b505050506040513d6020811015610e3a57600080fd5b50519050610e47816115d5565b98509850985098509850985098509850505b919395975091939597565b610e6c611900565b6000546001600160a01b03908116911614610ebc576040805162461bcd60e51b8152602060048201819052602482015260008051602061213f833981519152604482015290519081900360640190fd5b670de0b6b3a764000002601255565b60125490565b60405162461bcd60e51b81526004018080602001828103825260638152602001806120936063913960800191505060405180910390fd5b60115481565b6001600160a01b031660009081526001602052604090205490565b610f31611900565b6000546001600160a01b03908116911614610f81576040805162461bcd60e51b8152602060048201819052602482015260008051602061213f833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60095481565b6000546001600160a01b031690565b6000610a31826110b4565b60058054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a0f5780601f106109e457610100808354040283529160200191610a0f565b6000610a2d611059611900565b84610acd856040518060600160405280602581526020016122096025913960026000611083611900565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611a27565b6001600160a01b038116600090815260086020526040812054610a31906110da84610adc565b90611b6d565b6000610a2d6110ed611900565b84846119f0565b6001600160a01b031660009081526008602052604090205490565b6000611119611900565b6000546001600160a01b03908116911614611169576040805162461bcd60e51b8152602060048201819052602482015260008051602061213f833981519152604482015290519081900360640190fd5b600061117484611baf565b905080156111da576001600160a01b0384166000818152601060209081526040918290204290558151848152915186151593927fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09292908290030190a36001915050610a31565b5060009392505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b611217611900565b6000546001600160a01b03908116911614611267576040805162461bcd60e51b8152602060048201819052602482015260008051602061213f833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600f602052604090205460ff161561128d576113b7565b6012548110611325576112a08282611b14565b60408051632f0ad01760e21b8152600a60048201526001600160a01b0384166024820152604481018390529051737c515d6440f36494ec1c570bdd163385ec0acb0b9163bc2b405c916064808301926000929190829003018186803b15801561130857600080fd5b505af415801561131c573d6000803e3d6000fd5b505050506113aa565b611330826000611b14565b6040805163131836e760e21b8152600a60048201526001600160a01b03841660248201529051737c515d6440f36494ec1c570bdd163385ec0acb0b91634c60db9c916044808301926000929190829003018186803b15801561139157600080fd5b505af41580156113a5573d6000803e3d6000fd5b505050505b6113b582600161110f565b505b5050565b600e5490565b6113c9611900565b6000546001600160a01b03908116911614611419576040805162461bcd60e51b8152602060048201819052602482015260008051602061213f833981519152604482015290519081900360640190fd5b610e10811015801561142e5750620151808111155b6114695760405162461bcd60e51b815260040180806020018281038252604981526020018061204a6049913960600191505060405180910390fd5b6011548114156114aa5760405162461bcd60e51b815260040180806020018281038252603b81526020018061215f603b913960400191505060405180910390fd5b60115460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601155565b6114e5611900565b6000546001600160a01b03908116911614611535576040805162461bcd60e51b8152602060048201819052602482015260008051602061213f833981519152604482015290519081900360640190fd5b6001600160a01b03811661157a5760405162461bcd60e51b81526004018080602001828103825260268152602001806120026026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600080600080600080600080889750600a737c515d6440f36494ec1c570bdd163385ec0acb0b6317e142d190918a6040518363ffffffff1660e01b815260040180838152602001826001600160a01b031681526020019250505060206040518083038186803b15801561164757600080fd5b505af415801561165b573d6000803e3d6000fd5b505050506040513d602081101561167157600080fd5b505196506000199550600087126116d557600e548711156116a157600e5461169a908890611cf0565b95506116d5565b600e54600a54600091106116b65760006116c5565b600e54600a546116c591611b6d565b90506116d18882611ace565b9650505b6116de886110b4565b94506116e988610adc565b6001600160a01b038916600090815260106020526040902054909450925082611713576000611721565b6011546117219084906118a6565b915042821161173157600061173b565b61173b8242611b6d565b9050919395975091939597565b600a546000908190819080611768575050600e546000925082915061183f565b600e546000805a90506000805b898410801561178357508582105b1561182e57600a54600190950194851061179c57600094505b6000600a60000186815481106117ae57fe5b60009182526020808320909101546001600160a01b031680835260109091526040909120549091506117df90611d22565b156117fb576117ef81600161110f565b156117fb576001909101905b60019092019160005a9050808511156118255761182261181b8683611b6d565b87906118a6565b95505b93506117759050565b600e85905590975095509193505050505b9193909250565b60008261185557506000610a31565b8282028284828161186257fe5b041461189f5760405162461bcd60e51b81526004018080602001828103825260218152602001806120f66021913960400191505060405180910390fd5b9392505050565b60008282018381101561189f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b0383166119495760405162461bcd60e51b81526004018080602001828103825260248152602001806121e56024913960400191505060405180910390fd5b6001600160a01b03821661198e5760405162461bcd60e51b81526004018080602001828103825260228152602001806120286022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60405162461bcd60e51b815260040180806020018281038252602a8152602001806121bb602a913960400191505060405180910390fd5b60008184841115611ab65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a7b578181015183820152602001611a63565b50505050905090810190601f168015611aa85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008181811215610a3157600080fd5b6000828201818312801590611ae35750838112155b80611af85750600083128015611af857508381125b61189f57600080fd5b600080821215611b1057600080fd5b5090565b6000611b1f83610f0e565b905080821115611b47576000611b358383611b6d565b9050611b418482611d49565b506113b5565b808210156113b5576000611b5b8284611b6d565b9050611b678482611dad565b50505050565b600061189f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a27565b600080611bbb836110b4565b90508015611ce7576001600160a01b038316600090815260086020526040902054611be690826118a6565b6001600160a01b038416600081815260086020908152604091829020939093558051848152905191927fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d92918290030190a26040516000906001600160a01b03851690610bb890849084818181858888f193505050503d8060008114611c88576040519150601f19603f3d011682016040523d82523d6000602084013e611c8d565b606091505b5050905080611cdf576001600160a01b038416600090815260086020526040902054611cb99083611b6d565b6001600160a01b0385166000908152600860205260408120919091559250610b36915050565b509050610b36565b50600092915050565b6000818303818312801590611d055750838113155b80611af85750600083128015611af8575083811361189f57600080fd5b600042821115611d3457506000610b36565b601154611d414284611b6d565b101592915050565b611d538282611df1565b611d8d611d6e610b1b8360065461184690919063ffffffff16565b6001600160a01b03841660009081526007602052604090205490611cf0565b6001600160a01b0390921660009081526007602052604090209190915550565b611db78282611ee3565b611d8d611dd2610b1b8360065461184690919063ffffffff16565b6001600160a01b03841660009081526007602052604090205490611ace565b6001600160a01b038216611e4c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611e58600083836113b5565b600354611e6590826118a6565b6003556001600160a01b038216600090815260016020526040902054611e8b90826118a6565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611f285760405162461bcd60e51b815260040180806020018281038252602181526020018061219a6021913960400191505060405180910390fd5b611f34826000836113b5565b611f7181604051806060016040528060228152602001611fe0602291396001600160a01b0385166000908152600160205260409020549190611a27565b6001600160a01b038316600090815260016020526040902055600354611f979082611b6d565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734354545f4469766964656e645f547261636b65723a20636c61696d57616974206d757374206265207570646174656420746f206265747765656e203120616e6420323420686f7572734354545f4469766964656e645f547261636b65723a2077697468647261774469766964656e642064697361626c65642e20557365207468652027636c61696d272066756e6374696f6e206f6e20746865206d61696e2043545420636f6e74726163742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724354545f4469766964656e645f547261636b65723a2043616e6e6f742075706461746520636c61696d5761697420746f2073616d652076616c756545524332303a206275726e2066726f6d20746865207a65726f20616464726573734354545f4469766964656e645f547261636b65723a204e6f207472616e736665727320616c6c6f77656445524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220642cef785f06a0f58a5c988e863cbe8ccfe8d52b413eb6d6980f90c95b0aeb1a64736f6c634300060c00334354543a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c75646564274175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638c0344db116101dc578063b62496f511610102578063dd62ed3e116100a0578063e98030c71161006f578063e98030c714610d37578063efce97e814610d61578063f27fd25414610d8b578063f2fde38b14610db5576103a2565b8063dd62ed3e14610c9f578063e2f4560514610cda578063e37ba8f914610cef578063e7841ec014610d22576103a2565b8063c492f046116100dc578063c492f04614610bc3578063c705c56914610c42578063d469801614610c75578063d709a36214610c8a576103a2565b8063b62496f514610b22578063bb85c6d114610b55578063c024666814610b88576103a2565b80639c1b8af51161017a578063a8b9d24011610149578063a8b9d24014610a0e578063a9059cbb14610a41578063ad56c13c14610a7a578063aefcd97014610af8576103a2565b80639c1b8af514610996578063a26579ad146109ab578063a38eb622146109c0578063a457c2d7146109d5576103a2565b806396f792ce116101b657806396f792ce1461091c5780639754a7d81461093157806398118cb4146109465780639a7a23d61461095b576103a2565b80638c0344db146108dd5780638da5cb5b146108f257806395d89b4114610907576103a2565b806349bd5a5e116102c157806365b8dbc01161025f578063715018a61161022e578063715018a61461085657806375f0a8741461086b578063871c128d1461088057806388bdd9be146108aa576103a2565b806365b8dbc0146107935780636843cd84146107c6578063700bb191146107f957806370a0823114610823576103a2565b80635b4be32b1161029b5780635b4be32b146106f55780635bfd1ab8146107215780636402511e1461075457806364b0f6531461077e576103a2565b806349bd5a5e146106985780634e71d92d146106ad5780634fbee193146106c2576103a2565b806323b872dd1161033957806331e79db01161030857806331e79db0146105c657806339509351146105f95780633b0e0133146106325780634838d16514610665576103a2565b806323b872dd1461052e5780632c1f52161461057157806330bb4cff14610586578063313ce5671461059b576103a2565b806313114a9d1161037557806313114a9d146104ac5780631694505e146104d357806318160ddd1461050457806322bd3f7f14610519576103a2565b806306fdde03146103a7578063095ea7b3146104315780630d02e05c1461047e576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610de8565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103f65781810151838201526020016103de565b50505050905090810190601f1680156104235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561043d57600080fd5b5061046a6004803603604081101561045457600080fd5b506001600160a01b038135169060200135610e7e565b604080519115158252519081900360200190f35b34801561048a57600080fd5b506104aa600480360360208110156104a157600080fd5b50351515610e9c565b005b3480156104b857600080fd5b506104c1610f12565b60408051918252519081900360200190f35b3480156104df57600080fd5b506104e8610f36565b604080516001600160a01b039092168252519081900360200190f35b34801561051057600080fd5b506104c1610f45565b34801561052557600080fd5b506104c1610f4b565b34801561053a57600080fd5b5061046a6004803603606081101561055157600080fd5b506001600160a01b03813581169160208101359091169060400135610f51565b34801561057d57600080fd5b506104e8610fd8565b34801561059257600080fd5b506104c1610fe7565b3480156105a757600080fd5b506105b061105d565b6040805160ff9092168252519081900360200190f35b3480156105d257600080fd5b506104aa600480360360208110156105e957600080fd5b50356001600160a01b0316611062565b34801561060557600080fd5b5061046a6004803603604081101561061c57600080fd5b506001600160a01b038135169060200135611123565b34801561063e57600080fd5b506104aa6004803603602081101561065557600080fd5b50356001600160a01b0316611171565b34801561067157600080fd5b5061046a6004803603602081101561068857600080fd5b50356001600160a01b03166111ed565b3480156106a457600080fd5b506104e8611202565b3480156106b957600080fd5b506104aa611226565b3480156106ce57600080fd5b5061046a600480360360208110156106e557600080fd5b50356001600160a01b03166112ab565b34801561070157600080fd5b506104aa6004803603602081101561071857600080fd5b503515156112c9565b34801561072d57600080fd5b506104aa6004803603602081101561074457600080fd5b50356001600160a01b031661133f565b34801561076057600080fd5b506104aa6004803603602081101561077757600080fd5b50356113b8565b34801561078a57600080fd5b506104c161141f565b34801561079f57600080fd5b506104aa600480360360208110156107b657600080fd5b50356001600160a01b0316611464565b3480156107d257600080fd5b506104c1600480360360208110156107e957600080fd5b50356001600160a01b0316611566565b34801561080557600080fd5b506104aa6004803603602081101561081c57600080fd5b50356115e9565b34801561082f57600080fd5b506104c16004803603602081101561084657600080fd5b50356001600160a01b03166116d0565b34801561086257600080fd5b506104aa6116eb565b34801561087757600080fd5b506104e861178d565b34801561088c57600080fd5b506104aa600480360360208110156108a357600080fd5b503561179c565b3480156108b657600080fd5b506104aa600480360360208110156108cd57600080fd5b50356001600160a01b0316611868565b3480156108e957600080fd5b506104c1611bbf565b3480156108fe57600080fd5b506104e8611be3565b34801561091357600080fd5b506103bc611bf2565b34801561092857600080fd5b506104c1611c53565b34801561093d57600080fd5b5061046a611c77565b34801561095257600080fd5b506104c1611c87565b34801561096757600080fd5b506104aa6004803603604081101561097e57600080fd5b506001600160a01b0381351690602001351515611cab565b3480156109a257600080fd5b506104c1611d7e565b3480156109b757600080fd5b506104c1611d84565b3480156109cc57600080fd5b5061046a611dc9565b3480156109e157600080fd5b5061046a600480360360408110156109f857600080fd5b506001600160a01b038135169060200135611dd9565b348015610a1a57600080fd5b506104c160048036036020811015610a3157600080fd5b50356001600160a01b0316611e41565b348015610a4d57600080fd5b5061046a60048036036040811015610a6457600080fd5b506001600160a01b038135169060200135611e92565b348015610a8657600080fd5b50610aad60048036036020811015610a9d57600080fd5b50356001600160a01b0316611ea6565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610b0457600080fd5b506104aa60048036036020811015610b1b57600080fd5b5035611f86565b348015610b2e57600080fd5b5061046a60048036036020811015610b4557600080fd5b50356001600160a01b031661202b565b348015610b6157600080fd5b506104aa60048036036020811015610b7857600080fd5b50356001600160a01b0316612040565b348015610b9457600080fd5b506104aa60048036036040811015610bab57600080fd5b506001600160a01b03813516906020013515156120ba565b348015610bcf57600080fd5b506104aa60048036036040811015610be657600080fd5b810190602081018135640100000000811115610c0157600080fd5b820183602082011115610c1357600080fd5b80359060200191846020830284011164010000000083111715610c3557600080fd5b91935091503515156121d0565b348015610c4e57600080fd5b5061046a60048036036020811015610c6557600080fd5b50356001600160a01b03166122f0565b348015610c8157600080fd5b506104e8612341565b348015610c9657600080fd5b506104c1612350565b348015610cab57600080fd5b506104c160048036036040811015610cc257600080fd5b506001600160a01b0381358116916020013516612395565b348015610ce657600080fd5b506104c16123c0565b348015610cfb57600080fd5b506104aa60048036036020811015610d1257600080fd5b50356001600160a01b03166123c6565b348015610d2e57600080fd5b506104c16124d3565b348015610d4357600080fd5b506104aa60048036036020811015610d5a57600080fd5b5035612518565b348015610d6d57600080fd5b506104aa60048036036020811015610d8457600080fd5b50356125bd565b348015610d9757600080fd5b50610aad60048036036020811015610dae57600080fd5b503561261a565b348015610dc157600080fd5b506104aa60048036036020811015610dd857600080fd5b50356001600160a01b0316612680565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e745780601f10610e4957610100808354040283529160200191610e74565b820191906000526020600020905b815481529060010190602001808311610e5757829003601f168201915b5050505050905090565b6000610e92610e8b6127d9565b84846127dd565b5060015b92915050565b610ea46127d9565b6000546001600160a01b03908116911614610ef4576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b60068054911515600160b01b0260ff60b01b19909216919091179055565b7f000000000000000000000000000000000000000000000000000000000000000a81565b6006546001600160a01b031681565b60035490565b600b5481565b6000610f5e8484846128c9565b610fce84610f6a6127d9565b610fc985604051806060016040528060288152602001613936602891396001600160a01b038a16600090815260026020526040812090610fa86127d9565b6001600160a01b031681526020810191909152604001600020549190612f0e565b6127dd565b5060019392505050565b6007546001600160a01b031681565b600754604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b15801561102c57600080fd5b505afa158015611040573d6000803e3d6000fd5b505050506040513d602081101561105657600080fd5b5051905090565b601290565b61106a6127d9565b6000546001600160a01b039081169116146110ba576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6007546040805163031e79db60e41b81526001600160a01b038481166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561110857600080fd5b505af115801561111c573d6000803e3d6000fd5b5050505050565b6000610e926111306127d9565b84610fc985600260006111416127d9565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612778565b6111796127d9565b6000546001600160a01b039081169116146111c9576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b600e6020526000908152604090205460ff1681565b7f00000000000000000000000093116dd832c83e87ddfd639fade8a36d29595a8581565b6007546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b15801561127d57600080fd5b505af1158015611291573d6000803e3d6000fd5b505050506040513d60208110156112a757600080fd5b5050565b6001600160a01b03166000908152600d602052604090205460ff1690565b6112d16127d9565b6000546001600160a01b03908116911614611321576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b60068054911515600160a81b0260ff60a81b19909216919091179055565b6113476127d9565b6000546001600160a01b03908116911614611397576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600e60205260409020805460ff19169055565b6113c06127d9565b6000546001600160a01b03908116911614611410576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b670de0b6b3a764000002600a55565b600754604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b15801561102c57600080fd5b61146c6127d9565b6000546001600160a01b039081169116146114bc576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6006546001600160a01b03828116911614156115095760405162461bcd60e51b81526004018080602001828103825260238152602001806138716023913960400191505060405180910390fd5b6006546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b600754604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b1580156115b757600080fd5b505afa1580156115cb573d6000803e3d6000fd5b505050506040513d60208110156115e157600080fd5b505192915050565b600754604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b15801561164057600080fd5b505af1158015611654573d6000803e3d6000fd5b505050506040513d606081101561166a57600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526001602052604090205490565b6116f36127d9565b6000546001600160a01b03908116911614611743576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6009546001600160a01b031681565b6117a46127d9565b6000546001600160a01b039081169116146117f4576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b600c548114156118355760405162461bcd60e51b8152600401808060200182810382526031815260200180613a196031913960400191505060405180910390fd5b600c5460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3600c55565b6118706127d9565b6000546001600160a01b039081169116146118c0576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6007546001600160a01b038281169116141561190d5760405162461bcd60e51b815260040180806020018281038252602d8152602001806139ec602d913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561195557600080fd5b505afa158015611969573d6000803e3d6000fd5b505050506040513d602081101561197f57600080fd5b50516001600160a01b0316146119c65760405162461bcd60e51b81526004018080602001828103825260408152602001806138f66040913960400191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611a1557600080fd5b505af1158015611a29573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611a7457600080fd5b505af1158015611a88573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611aa3611be3565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611ae257600080fd5b505af1158015611af6573d6000803e3d6000fd5b50506006546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611b4857600080fd5b505af1158015611b5c573d6000803e3d6000fd5b50506007546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600780546001600160a01b0319166001600160a01b039290921691909117905550565b7f000000000000000000000000000000000000000000000000000000000000000281565b6000546001600160a01b031690565b60058054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610e745780601f10610e4957610100808354040283529160200191610e74565b7f000000000000000000000000000000000000000000000000000000000000000681565b600654600160a81b900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000281565b611cb36127d9565b6000546001600160a01b03908116911614611d03576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b7f00000000000000000000000093116dd832c83e87ddfd639fade8a36d29595a856001600160a01b0316826001600160a01b03161415611d745760405162461bcd60e51b81526004018080602001828103825260418152602001806138946041913960600191505060405180910390fd5b6112a78282612fa5565b600c5481565b60075460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b15801561102c57600080fd5b600654600160b01b900460ff1681565b6000610e92611de66127d9565b84610fc9856040518060600160405280602581526020016139c76025913960026000611e106127d9565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612f0e565b600754604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b1580156115b757600080fd5b6000610e92611e9f6127d9565b84846128c9565b600080600080600080600080600760009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b158015611f1557600080fd5b505afa158015611f29573d6000803e3d6000fd5b505050506040513d610100811015611f4057600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b611f8e6127d9565b6000546001600160a01b03908116911614611fde576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b60075460408051635ebf4db960e01b81526004810184905290516001600160a01b0390921691635ebf4db99160248082019260009290919082900301818387803b15801561110857600080fd5b600f6020526000908152604090205460ff1681565b6120486127d9565b6000546001600160a01b03908116911614612098576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6120c26127d9565b6000546001600160a01b03908116911614612112576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600d602052604090205460ff16151581151514156121705760405162461bcd60e51b815260040180806020018281038252602f81526020018061376b602f913960400191505060405180910390fd5b6001600160a01b0382166000818152600d6020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6121d86127d9565b6000546001600160a01b03908116911614612228576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b60005b8281101561227d5781600d600086868581811061224457fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff191691151591909117905560010161222b565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b60075460408051634e7b827f60e01b81526001600160a01b03848116600483015291516000939290921691634e7b827f91602480820192602092909190829003018186803b1580156115b757600080fd5b6008546001600160a01b031681565b600754604080516332f1665960e11b815290516000926001600160a01b0316916365e2ccb2916004808301926020929190829003018186803b15801561102c57600080fd5b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600a5481565b6123ce6127d9565b6000546001600160a01b0390811691161461241e576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6008546001600160a01b038281169116141561246b5760405162461bcd60e51b815260040180806020018281038252603181526020018061379a6031913960400191505060405180910390fd5b6124768160016120ba565b6008546040516001600160a01b03918216918316907f6080503d1da552ae8eb4b7b8a20245d9fabed014180510e7d1a05ea08fdb0f3e90600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6007546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b15801561102c57600080fd5b6125206127d9565b6000546001600160a01b03908116911614612570576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6007546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b15801561110857600080fd5b6125c56127d9565b6000546001600160a01b03908116911614612615576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b600b55565b600080600080600080600080600760009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b158015611f1557600080fd5b6126886127d9565b6000546001600160a01b039081169116146126d8576040805162461bcd60e51b8152602060048201819052602482015260008051602061395e833981519152604482015290519081900360640190fd5b6001600160a01b03811661271d5760405162461bcd60e51b81526004018080602001828103825260268152602001806137cb6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000828201838110156127d2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166128225760405162461bcd60e51b81526004018080602001828103825260248152602001806139a36024913960400191505060405180910390fd5b6001600160a01b0382166128675760405162461bcd60e51b81526004018080602001828103825260228152602001806137f16022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661290e5760405162461bcd60e51b815260040180806020018281038252602581526020018061397e6025913960400191505060405180910390fd5b6001600160a01b0382166129535760405162461bcd60e51b81526004018080602001828103825260238152602001806137486023913960400191505060405180910390fd5b8061296957612964838360006130d3565b612f09565b6001600160a01b0383166000908152600e602052604090205460ff161515600114806129b257506001600160a01b0382166000908152600e602052604090205460ff1615156001145b156129bc57600080fd5b7f00000000000000000000000093116dd832c83e87ddfd639fade8a36d29595a856001600160a01b0316826001600160a01b0316148015612a0b5750600654600160a81b900460ff1615156001145b8015612a305750612a1a611be3565b6001600160a01b0316836001600160a01b031614155b15612a3a57600080fd5b7f00000000000000000000000093116dd832c83e87ddfd639fade8a36d29595a856001600160a01b0316836001600160a01b0316148015612a895750600654600160b01b900460ff1615156001145b8015612aae5750612a98611be3565b6001600160a01b0316826001600160a01b031614155b15612ab857600080fd5b6000612ac3306116d0565b600a5490915081108015908190612ae45750600654600160a01b900460ff16155b8015612b0957506001600160a01b0385166000908152600f602052604090205460ff16155b8015612b2357506008546001600160a01b03868116911614155b8015612b3d57506008546001600160a01b03858116911614155b15612c38576006805460ff60a01b1916600160a01b1790556000612bab7f000000000000000000000000000000000000000000000000000000000000000a612ba5857f0000000000000000000000000000000000000000000000000000000000000006613230565b90613289565b9050612bb6816132cb565b6000612c067f000000000000000000000000000000000000000000000000000000000000000a612ba5867f0000000000000000000000000000000000000000000000000000000000000002613230565b9050612c118161330d565b6000612c1c306116d0565b9050612c2781613393565b50506006805460ff60a01b19169055505b6006546001600160a01b0386166000908152600d602052604090205460ff600160a01b909204821615911680612c8657506001600160a01b0385166000908152600d602052604090205460ff165b15612c8f575060005b8015612d20576000612cc66064612ba5877f000000000000000000000000000000000000000000000000000000000000000a613230565b6001600160a01b0387166000908152600f602052604090205490915060ff1615612d0757612d046064612ba5600b548461323090919063ffffffff16565b90505b612d11858261343c565b9450612d1e8730836130d3565b505b612d2b8686866130d3565b6007546001600160a01b031663e30443bc87612d46816116d0565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612d8c57600080fd5b505af1925050508015612d9d575060015b506007546001600160a01b031663e30443bc86612db9816116d0565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015612dff57600080fd5b505af1925050508015612e10575060015b50600654600160a01b900460ff16612f0557600c54600754604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b158015612e7657600080fd5b505af1925050508015612eaa57506040513d6060811015612e9657600080fd5b508051602082015160409092015190919060015b612eb357612f03565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b60008184841115612f9d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f62578181015183820152602001612f4a565b50505050905090810190601f168015612f8f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166000908152600f602052604090205460ff16151581151514156130035760405162461bcd60e51b81526004018080602001828103825260388152602001806138136038913960400191505060405180910390fd5b6001600160a01b0382166000908152600f60205260409020805460ff19168215801591909117909155613097576007546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561307e57600080fd5b505af1158015613092573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166131185760405162461bcd60e51b815260040180806020018281038252602581526020018061397e6025913960400191505060405180910390fd5b6001600160a01b03821661315d5760405162461bcd60e51b81526004018080602001828103825260238152602001806137486023913960400191505060405180910390fd5b613168838383612f09565b6131a58160405180606001604052806026815260200161384b602691396001600160a01b0386166000908152600160205260409020549190612f0e565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546131d49082612778565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008261323f57506000610e96565b8282028284828161324c57fe5b04146127d25760405162461bcd60e51b81526004018080602001828103825260218152602001806138d56021913960400191505060405180910390fd5b60006127d283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061347e565b6132d4816134e3565b6009546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156112a7573d6000803e3d6000fd5b600061331a826002613289565b90506000613328838361343c565b905047613334836134e3565b6000613340478361343c565b905061334c8382613689565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b61339c816134e3565b60075460405147916000916001600160a01b039091169083908381818185875af1925050503d80600081146133ed576040519150601f19603f3d011682016040523d82523d6000602084013e6133f2565b606091505b505090508015612f0957604080518481526020810184905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3929181900390910190a1505050565b60006127d283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612f0e565b600081836134cd5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612f62578181015183820152602001612f4a565b5060008385816134d957fe5b0495945050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061351157fe5b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561356557600080fd5b505afa158015613579573d6000803e3d6000fd5b505050506040513d602081101561358f57600080fd5b50518151829060019081106135a057fe5b6001600160a01b0392831660209182029290920101526006546135c691309116846127dd565b60065460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561364c578181015183820152602001613634565b505050509050019650505050505050600060405180830381600087803b15801561367557600080fd5b505af1158015612f05573d6000803e3d6000fd5b6006546136a19030906001600160a01b0316846127dd565b6006546008546040805163f305d71960e01b81523060048201526024810186905260006044820181905260648201526001600160a01b0392831660848201524260a48201529051919092169163f305d71991849160c48082019260609290919082900301818588803b15801561371657600080fd5b505af115801561372a573d6000803e3d6000fd5b50505050506040513d606081101561374157600080fd5b5050505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734354543a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c75646564274354543a20546865206c69717569646974792077616c6c657420697320616c7265616479207468697320616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c756545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636554686520726f7574657220616c7265616479206861732074686174206164647265737354686520556e697377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b65725061697273536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e6564206279207468652043545420746f6b656e20636f6e747261637445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f546865206469766964656e6420747261636b657220616c726561647920686173207468617420616464726573734354543a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c7565a26469706673582212201937b997ae6634aeaa670520a52ecc1932b0c24332867c83a32bc4299b3491f164736f6c634300060c0033

Libraries Used

IterableMapping : 0x7c515d6440f36494ec1c570bdd163385ec0acb0bUnverified

Deployed Bytecode Sourcemap

43867:16074:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17056:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19262:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19262:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;49183:92;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49183:92:0;;;;:::i;:::-;;44512:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;43932:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;43932:41:0;;;;;;;;;;;;;;18194:108;;;;;;;;;;;;;:::i;44622:42::-;;;;;;;;;;;;;:::i;19925:355::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19925:355:0;;;;;;;;;;;;;;;;;:::i;44130:41::-;;;;;;;;;;;;;:::i;52747:141::-;;;;;;;;;;;;;:::i;18036:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49596:130;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49596:130:0;-1:-1:-1;;;;;49596:130:0;;:::i;20706:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20706:218:0;;;;;;;;:::i;52131:106::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52131:106:0;-1:-1:-1;;;;;52131:106:0;;:::i;44906:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44906:42:0;-1:-1:-1;;;;;44906:42:0;;:::i;43980:38::-;;;;;;;;;;;;;:::i;54399:88::-;;;;;;;;;;;;;:::i;52896:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52896:125:0;-1:-1:-1;;;;;52896:125:0;;:::i;49081:94::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49081:94:0;;;;:::i;52249:105::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52249:105:0;-1:-1:-1;;;;;52249:105:0;;:::i;49869:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49869:123:0;;:::i;54629:141::-;;;;;;;;;;;;;:::i;48766:307::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48766:307:0;-1:-1:-1;;;;;48766:307:0;;:::i;53341:130::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53341:130:0;-1:-1:-1;;;;;53341:130:0;;:::i;54132:259::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54132:259:0;;:::i;18365:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18365:127:0;-1:-1:-1;;;;;18365:127:0;;:::i;15650:148::-;;;;;;;;;;;;;:::i;44217:83::-;;;;;;;;;;;;;:::i;51838:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51838:281:0;;:::i;47943:815::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47943:815:0;-1:-1:-1;;;;;47943:815:0;;:::i;44373:38::-;;;;;;;;;;;;;:::i;15008:79::-;;;;;;;;;;;;;:::i;17275:104::-;;;;;;;;;;;;;:::i;44462:43::-;;;;;;;;;;;;;:::i;44055:29::-;;;;;;;;;;;;;:::i;44418:37::-;;;;;;;;;;;;;:::i;50628:252::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50628:252:0;;;;;;;;;;:::i;44743:39::-;;;;;;;;;;;;;:::i;52494:108::-;;;;;;;;;;;;;:::i;44091:28::-;;;;;;;;;;;;;:::i;21427:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21427:269:0;;;;;;;;:::i;53189:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53189:147:0;-1:-1:-1;;;;;53189:147:0;;:::i;18726:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18726:175:0;;;;;;;;:::i;53479:318::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53479:318:0;-1:-1:-1;;;;;53479:318:0;;:::i;:::-;;;;-1:-1:-1;;;;;53479:318:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50004:149;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50004:149:0;;:::i;45116:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45116:58:0;-1:-1:-1;;;;;45116:58:0;;:::i;50489:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50489:125:0;-1:-1:-1;;;;;50489:125:0;;:::i;49289:295::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49289:295:0;;;;;;;;;;:::i;50167:304::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50167:304:0;-1:-1:-1;50167:304:0;;;;:::i;53033:148::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53033:148:0;-1:-1:-1;;;;;53033:148:0;;:::i;44180:30::-;;;;;;;;;;;;;:::i;52614:125::-;;;;;;;;;;;;;:::i;18964:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18964:151:0;;;;;;;;;;:::i;44307:54::-;;;;;;;;;;;;;:::i;51462:368::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51462:368:0;-1:-1:-1;;;;;51462:368:0;;:::i;54495:126::-;;;;;;;;;;;;;:::i;52362:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52362:124:0;;:::i;49738:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49738:113:0;;:::i;53802:325::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53802:325:0;;:::i;15953:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15953:244:0;-1:-1:-1;;;;;15953:244:0;;:::i;17056:100::-;17143:5;17136:12;;;;;;;;-1:-1:-1;;17136:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17110:13;;17136:12;;17143:5;;17136:12;;17143:5;17136:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17056:100;:::o;19262:169::-;19345:4;19362:39;19371:12;:10;:12::i;:::-;19385:7;19394:6;19362:8;:39::i;:::-;-1:-1:-1;19419:4:0;19262:169;;;;;:::o;49183:92::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;49249:8:::1;:18:::0;;;::::1;;-1:-1:-1::0;;;49249:18:0::1;-1:-1:-1::0;;;;49249:18:0;;::::1;::::0;;;::::1;::::0;;49183:92::o;44512:34::-;;;:::o;43932:41::-;;;-1:-1:-1;;;;;43932:41:0;;:::o;18194:108::-;18282:12;;18194:108;:::o;44622:42::-;;;;:::o;19925:355::-;20065:4;20082:36;20092:6;20100:9;20111:6;20082:9;:36::i;:::-;20129:121;20138:6;20146:12;:10;:12::i;:::-;20160:89;20198:6;20160:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20160:19:0;;;;;;:11;:19;;;;;;20180:12;:10;:12::i;:::-;-1:-1:-1;;;;;20160:33:0;;;;;;;;;;;;-1:-1:-1;20160:33:0;;;:89;:37;:89::i;:::-;20129:8;:121::i;:::-;-1:-1:-1;20268:4:0;19925:355;;;;;:::o;44130:41::-;;;-1:-1:-1;;;;;44130:41:0;;:::o;52747:141::-;52837:15;;:43;;;-1:-1:-1;;;52837:43:0;;;;52810:7;;-1:-1:-1;;;;;52837:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52837:43:0;;-1:-1:-1;52747:141:0;:::o;18036:93::-;18119:2;18036:93;:::o;49596:130::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;49673:15:::1;::::0;:45:::1;::::0;;-1:-1:-1;;;49673:45:0;;-1:-1:-1;;;;;49673:45:0;;::::1;;::::0;::::1;::::0;;;:15;;;::::1;::::0;:36:::1;::::0;:45;;;;;:15:::1;::::0;:45;;;;;;;:15;;:45;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49596:130:::0;:::o;20706:218::-;20794:4;20811:83;20820:12;:10;:12::i;:::-;20834:7;20843:50;20882:10;20843:11;:25;20855:12;:10;:12::i;:::-;-1:-1:-1;;;;;20843:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20843:25:0;;;:34;;;;;;;;;;;:38;:50::i;52131:106::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;52204:18:0::1;;::::0;;;:9:::1;:18;::::0;;;;:25;;-1:-1:-1;;52204:25:0::1;52225:4;52204:25;::::0;;52131:106::o;44906:42::-;;;;;;;;;;;;;;;:::o;43980:38::-;;;:::o;54399:88::-;54430:15;;:49;;;-1:-1:-1;;;54430:49:0;;54461:10;54430:49;;;;:15;:49;;;;;;;;-1:-1:-1;;;;;54430:15:0;;;;:30;;:49;;;;;;;;;;;;;;;;;;:15;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54399:88:0:o;52896:125::-;-1:-1:-1;;;;;52985:28:0;52961:4;52985:28;;;:19;:28;;;;;;;;;52896:125::o;49081:94::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;49148:9:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;49148:19:0::1;-1:-1:-1::0;;;;49148:19:0;;::::1;::::0;;;::::1;::::0;;49081:94::o;52249:105::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;52320:18:0::1;52341:5;52320:18:::0;;;:9:::1;:18;::::0;;;;:26;;-1:-1:-1;;52320:26:0::1;::::0;;52249:105::o;49869:123::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;49977:6:::1;49964:20;49943:18;:41:::0;49869:123::o;54629:141::-;54721:15;;:41;;;-1:-1:-1;;;54721:41:0;;;;54694:7;;-1:-1:-1;;;;;54721:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;48766:307;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;48875:15:::1;::::0;-1:-1:-1;;;;;48853:38:0;;::::1;48875:15:::0;::::1;48853:38;;48845:86;;;;-1:-1:-1::0;;;48845:86:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48989:15;::::0;48947:59:::1;::::0;-1:-1:-1;;;;;48989:15:0;;::::1;::::0;48947:59;::::1;::::0;::::1;::::0;48989:15:::1;::::0;48947:59:::1;49017:15;:48:::0;;-1:-1:-1;;;;;;49017:48:0::1;-1:-1:-1::0;;;;;49017:48:0;;;::::1;::::0;;;::::1;::::0;;48766:307::o;53341:130::-;53432:15;;:34;;;-1:-1:-1;;;53432:34:0;;-1:-1:-1;;;;;53432:34:0;;;;;;;;;53411:7;;53432:15;;;;;:25;;:34;;;;;;;;;;;;;;;:15;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53432:34:0;;53341:130;-1:-1:-1;;53341:130:0:o;54132:259::-;54258:15;;:28;;;-1:-1:-1;;;;;;54258:28:0;;;;;;;;;;54192:18;;;;;;-1:-1:-1;;;;;54258:15:0;;;;:23;;:28;;;;;;;;;;;;;;;54192:18;54258:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54258:28:0;;;;;;;;;;;;54296:87;;;;;;;;;;;;;;;;;54258:28;54296:87;;;;;;;54258:28;;-1:-1:-1;54258:28:0;-1:-1:-1;54258:28:0;;-1:-1:-1;54373:9:0;;54361:5;;54296:87;;;;;;;;;54132:259;;;;:::o;18365:127::-;-1:-1:-1;;;;;18466:18:0;18439:7;18466:18;;;:9;:18;;;;;;;18365:127::o;15650:148::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;15757:1:::1;15741:6:::0;;15720:40:::1;::::0;-1:-1:-1;;;;;15741:6:0;;::::1;::::0;15720:40:::1;::::0;15757:1;;15720:40:::1;15788:1;15771:19:::0;;-1:-1:-1;;;;;;15771:19:0::1;::::0;;15650:148::o;44217:83::-;;;-1:-1:-1;;;;;44217:83:0;;:::o;51838:281::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;51936:16:::1;;51924:8;:28;;51916:90;;;;-1:-1:-1::0;;;51916:90:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52056:16;::::0;52022:51:::1;::::0;52046:8;;52022:51:::1;::::0;;;::::1;52084:16;:27:::0;51838:281::o;47943:815::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;48052:15:::1;::::0;-1:-1:-1;;;;;48030:38:0;;::::1;48052:15:::0;::::1;48030:38;;48022:96;;;;-1:-1:-1::0;;;48022:96:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48131:37;48198:10;48131:79;;48269:4;-1:-1:-1::0;;;;;48231:43:0::1;:18;-1:-1:-1::0;;;;;48231:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48231:26:0;-1:-1:-1;;;;;48231:43:0::1;;48223:120;;;;-1:-1:-1::0;;;48223:120:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48356:18;-1:-1:-1::0;;;;;48356:39:0::1;;48404:18;48356:68;;;;;;;;;;;;;-1:-1:-1::0;;;;;48356:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48435:54:0::1;::::0;;-1:-1:-1;;;48435:54:0;;48483:4:::1;48435:54;::::0;::::1;::::0;;;-1:-1:-1;;;;;48435:39:0;::::1;::::0;-1:-1:-1;48435:39:0::1;::::0;-1:-1:-1;48435:54:0;;;;;-1:-1:-1;;48435:54:0;;;;;;;-1:-1:-1;48435:39:0;:54;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48500:18;-1:-1:-1::0;;;;;48500:39:0::1;;48540:7;:5;:7::i;:::-;48500:48;;;;;;;;;;;;;-1:-1:-1::0;;;;;48500:48:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48607:15:0::1;::::0;48559:65:::1;::::0;;-1:-1:-1;;;48559:65:0;;-1:-1:-1;;;;;48607:15:0;;::::1;48559:65;::::0;::::1;::::0;;;:39;;::::1;::::0;-1:-1:-1;48559:39:0::1;::::0;-1:-1:-1;48559:65:0;;;;;48607:15:::1;::::0;48559:65;;;;;;;;48607:15;48559:39;:65;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48684:15:0::1;::::0;48642:59:::1;::::0;-1:-1:-1;;;;;48684:15:0;;::::1;::::0;-1:-1:-1;48642:59:0;;::::1;::::0;-1:-1:-1;48642:59:0::1;::::0;48684:15:::1;::::0;48642:59:::1;48714:15;:36:::0;;-1:-1:-1;;;;;;48714:36:0::1;-1:-1:-1::0;;;;;48714:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;47943:815:0:o;44373:38::-;;;:::o;15008:79::-;15046:7;15073:6;-1:-1:-1;;;;;15073:6:0;15008:79;:::o;17275:104::-;17364:7;17357:14;;;;;;;;-1:-1:-1;;17357:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17331:13;;17357:14;;17364:7;;17357:14;;17364:7;17357:14;;;;;;;;;;;;;;;;;;;;;;;;44462:43;;;:::o;44055:29::-;;;-1:-1:-1;;;44055:29:0;;;;;:::o;44418:37::-;;;:::o;50628:252::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;50735:13:::1;-1:-1:-1::0;;;;;50727:21:0::1;:4;-1:-1:-1::0;;;;;50727:21:0::1;;;50719:99;;;;-1:-1:-1::0;;;50719:99:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50831:41;50860:4;50866:5;50831:28;:41::i;44743:39::-:0;;;;:::o;52494:108::-;52567:15;;:27;;;-1:-1:-1;;;52567:27:0;;;;52540:7;;-1:-1:-1;;;;;52567:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;44091:28;;;-1:-1:-1;;;44091:28:0;;;;;:::o;21427:269::-;21520:4;21537:129;21546:12;:10;:12::i;:::-;21560:7;21569:96;21608:15;21569:96;;;;;;;;;;;;;;;;;:11;:25;21581:12;:10;:12::i;:::-;-1:-1:-1;;;;;21569:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21569:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;53189:147::-;53282:15;;:47;;;-1:-1:-1;;;53282:47:0;;-1:-1:-1;;;;;53282:47:0;;;;;;;;;53258:7;;53282:15;;;;;:38;;:47;;;;;;;;;;;;;;;:15;:47;;;;;;;;;;18726:175;18812:4;18829:42;18839:12;:10;:12::i;:::-;18853:9;18864:6;18829:9;:42::i;53479:318::-;53575:7;53597:6;53618;53639:7;53661;53683;53705;53727;53754:15;;;;;;;;;-1:-1:-1;;;;;53754:15:0;-1:-1:-1;;;;;53754:26:0;;53781:7;53754:35;;;;;;;;;;;;;-1:-1:-1;;;;;53754:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53754:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53754:35:0;;-1:-1:-1;53754:35:0;;-1:-1:-1;53754:35:0;-1:-1:-1;53754:35:0;-1:-1:-1;53754:35:0;-1:-1:-1;53754:35:0;;-1:-1:-1;53754:35:0;-1:-1:-1;53479:318:0;;;;;;;;;:::o;50004:149::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;50085:15:::1;::::0;:60:::1;::::0;;-1:-1:-1;;;50085:60:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;50085:15:0;;::::1;::::0;:50:::1;::::0;:60;;;;;:15:::1;::::0;:60;;;;;;;;:15;;:60;::::1;;::::0;::::1;;;;::::0;::::1;45116:58:::0;;;;;;;;;;;;;;;:::o;50489:125::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;50578:15:::1;:28:::0;;-1:-1:-1;;;;;;50578:28:0::1;-1:-1:-1::0;;;;;50578:28:0;;;::::1;::::0;;;::::1;::::0;;50489:125::o;49289:295::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;49382:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;49374:100;;;;-1:-1:-1::0;;;49374:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;49485:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;49485:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;49542:34;;;;;;;::::1;::::0;;;;;;;;::::1;49289:295:::0;;:::o;50167:304::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;50284:9:::1;50280:115;50299:19:::0;;::::1;50280:115;;;50375:8;50340:19;:32;50360:8;;50369:1;50360:11;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;50360:11:0::1;50340:32:::0;;-1:-1:-1;50340:32:0;::::1;::::0;;;;;;-1:-1:-1;50340:32:0;:43;;-1:-1:-1;;50340:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;50320:3:0::1;50280:115;;;;50412:51;50444:8;;50454;50412:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;50412:51:0::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;50412:51:0;;-1:-1:-1;;;;;50412:51:0::1;50167:304:::0;;;:::o;53033:148::-;53127:15;;:46;;;-1:-1:-1;;;53127:46:0;;-1:-1:-1;;;;;53127:46:0;;;;;;;;;53103:4;;53127:15;;;;;:37;;:46;;;;;;;;;;;;;;;:15;:46;;;;;;;;;;44180:30;;;-1:-1:-1;;;;;44180:30:0;;:::o;52614:125::-;52696:15;;:35;;;-1:-1:-1;;;52696:35:0;;;;52669:7;;-1:-1:-1;;;;;52696:15:0;;:33;;:35;;;;;;;;;;;;;;:15;:35;;;;;;;;;;18964:151;-1:-1:-1;;;;;19080:18:0;;;19053:7;19080:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18964:151::o;44307:54::-;;;;:::o;51462:368::-;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;51579:15:::1;::::0;-1:-1:-1;;;;;51557:37:0;;::::1;51579:15:::0;::::1;51557:37;;51549:99;;;;-1:-1:-1::0;;;51549:99:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51659:41;51675:18;51695:4;51659:15;:41::i;:::-;51759:15;::::0;51716:59:::1;::::0;-1:-1:-1;;;;;51759:15:0;;::::1;::::0;51716:59;::::1;::::0;::::1;::::0;51759:15:::1;::::0;51716:59:::1;51786:15;:36:::0;;-1:-1:-1;;;;;;51786:36:0::1;-1:-1:-1::0;;;;;51786:36:0;;;::::1;::::0;;;::::1;::::0;;51462:368::o;54495:126::-;54574:15;;:39;;;-1:-1:-1;;;54574:39:0;;;;54550:7;;-1:-1:-1;;;;;54574:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;52362:124;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;52436:15:::1;::::0;:42:::1;::::0;;-1:-1:-1;;;52436:42:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;52436:15:0;;::::1;::::0;:31:::1;::::0;:42;;;;;:15:::1;::::0;:42;;;;;;;;:15;;:42;::::1;;::::0;::::1;;;;::::0;::::1;49738:113:::0;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;49810:21:::1;:33:::0;49738:113::o;53802:325::-;53903:7;53925:6;53946;53967:7;53989;54011;54033;54055;54079:15;;;;;;;;;-1:-1:-1;;;;;54079:15:0;-1:-1:-1;;;;;54079:33:0;;54113:5;54079:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15953:244;15230:12;:10;:12::i;:::-;15220:6;;-1:-1:-1;;;;;15220:6:0;;;:22;;;15212:67;;;;;-1:-1:-1;;;15212:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15212:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16042:22:0;::::1;16034:73;;;;-1:-1:-1::0;;;16034:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16144:6;::::0;;16123:38:::1;::::0;-1:-1:-1;;;;;16123:38:0;;::::1;::::0;16144:6;::::1;::::0;16123:38:::1;::::0;::::1;16172:6;:17:::0;;-1:-1:-1;;;;;;16172:17:0::1;-1:-1:-1::0;;;;;16172:17:0;;;::::1;::::0;;;::::1;::::0;;15953:244::o;8861:181::-;8919:7;8951:5;;;8975:6;;;;8967:46;;;;;-1:-1:-1;;;8967:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9033:1;8861:181;-1:-1:-1;;;8861:181:0:o;97:98::-;177:10;97:98;:::o;24629:380::-;-1:-1:-1;;;;;24765:19:0;;24757:68;;;;-1:-1:-1;;;24757:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24844:21:0;;24836:68;;;;-1:-1:-1;;;24836:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24917:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24969:32;;;;;;;;;;;;;;;;;24629:380;;;:::o;54784:2709::-;-1:-1:-1;;;;;54916:18:0;;54908:68;;;;-1:-1:-1;;;54908:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;54995:16:0;;54987:64;;;;-1:-1:-1;;;54987:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55087:11;55084:92;;55115:28;55131:4;55137:2;55141:1;55115:15;:28::i;:::-;55158:7;;55084:92;-1:-1:-1;;;;;55199:15:0;;;;;;:9;:15;;;;;;;;:23;;:15;:23;;:48;;-1:-1:-1;;;;;;55226:13:0;;;;;;:9;:13;;;;;;;;:21;;:13;:21;55199:48;55196:88;;;55264:8;;;55196:88;55305:13;-1:-1:-1;;;;;55299:19:0;:2;-1:-1:-1;;;;;55299:19:0;;:40;;;;-1:-1:-1;55322:9:0;;-1:-1:-1;;;55322:9:0;;;;:17;;55335:4;55322:17;55299:40;:59;;;;;55351:7;:5;:7::i;:::-;-1:-1:-1;;;;;55343:15:0;:4;-1:-1:-1;;;;;55343:15:0;;;55299:59;55296:99;;;55375:8;;;55296:99;55418:13;-1:-1:-1;;;;;55410:21:0;:4;-1:-1:-1;;;;;55410:21:0;;:41;;;;-1:-1:-1;55435:8:0;;-1:-1:-1;;;55435:8:0;;;;:16;;55447:4;55435:16;55410:41;:58;;;;;55461:7;:5;:7::i;:::-;-1:-1:-1;;;;;55455:13:0;:2;-1:-1:-1;;;;;55455:13:0;;;55410:58;55407:98;;;55485:8;;;55407:98;55529:28;55560:24;55578:4;55560:9;:24::i;:::-;55644:18;;55529:55;;-1:-1:-1;55620:42:0;;;;;;;55692:33;;-1:-1:-1;55717:8:0;;-1:-1:-1;;;55717:8:0;;;;55716:9;55692:33;:82;;;;-1:-1:-1;;;;;;55743:31:0;;;;;;:25;:31;;;;;;;;55742:32;55692:82;:122;;;;-1:-1:-1;55799:15:0;;-1:-1:-1;;;;;55791:23:0;;;55799:15;;55791:23;;55692:122;:160;;;;-1:-1:-1;55837:15:0;;-1:-1:-1;;;;;55831:21:0;;;55837:15;;55831:21;;55692:160;55675:667;;;55879:8;:15;;-1:-1:-1;;;;55879:15:0;-1:-1:-1;;;55879:15:0;;;;55949:59;55998:9;55949:44;:20;55974:18;55949:24;:44::i;:::-;:48;;:59::i;:::-;55923:85;;56023:33;56040:15;56023:16;:33::i;:::-;56073:18;56094:53;56137:9;56094:38;:20;56119:12;56094:24;:38::i;:53::-;56073:74;;56162:26;56177:10;56162:14;:26::i;:::-;56205:18;56226:24;56244:4;56226:9;:24::i;:::-;56205:45;;56265:32;56286:10;56265:20;:32::i;:::-;-1:-1:-1;;56314:8:0;:16;;-1:-1:-1;;;;56314:16:0;;;-1:-1:-1;55675:667:0;56373:8;;-1:-1:-1;;;;;56483:25:0;;56356:12;56483:25;;;:19;:25;;;;;;56373:8;-1:-1:-1;;;56373:8:0;;;;;56372:9;;56483:25;;:52;;-1:-1:-1;;;;;;56512:23:0;;;;;;:19;:23;;;;;;;;56483:52;56480:99;;;-1:-1:-1;56562:5:0;56480:99;56594:7;56591:352;;;56615:12;56630:30;56656:3;56630:21;:6;56641:9;56630:10;:21::i;:30::-;-1:-1:-1;;;;;56721:29:0;;;;;;:25;:29;;;;;;56615:45;;-1:-1:-1;56721:29:0;;56718:116;;;56778:40;56814:3;56778:31;56787:21;;56778:4;:8;;:31;;;;:::i;:40::-;56771:47;;56718:116;56856:16;:6;56867:4;56856:10;:16::i;:::-;56847:25;;56889:42;56905:4;56919;56926;56889:15;:42::i;:::-;56591:352;;56955:33;56971:4;56977:2;56981:6;56955:15;:33::i;:::-;57005:15;;-1:-1:-1;;;;;57005:15:0;:26;57040:4;57047:15;57040:4;57047:9;:15::i;:::-;57005:58;;;;;;;;;;;;;-1:-1:-1;;;;;57005:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57001:74;57089:15;;-1:-1:-1;;;;;57089:15:0;:26;57124:2;57129:13;57124:2;57129:9;:13::i;:::-;57089:54;;;;;;;;;;;;;-1:-1:-1;;;;;57089:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57085:70;57171:8;;-1:-1:-1;;;57171:8:0;;;;57167:319;;57204:16;;57235:15;;:28;;;-1:-1:-1;;;;;;57235:28:0;;;;;;;;;;-1:-1:-1;;;;;57235:15:0;;;;:23;;:28;;;;;;;;;;;;;;;57190:11;57235:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57235:28:0;;;;;;;;;;;;;;;;57231:244;;;;;57352:86;;;;;;;;;;;;;;;;;;;;;;;;;;57428:9;;57417:4;;57352:86;;;;;;;;;57264:184;;;57231:244;57167:319;;54784:2709;;;;;;;:::o;9764:192::-;9850:7;9886:12;9878:6;;;;9870:29;;;;-1:-1:-1;;;9870:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9922:5:0;;;9764:192::o;50888:399::-;-1:-1:-1;;;;;50979:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;50971:109;;;;-1:-1:-1;;;50971:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51091:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;51091:39:0;;;;;;;;;;;;51143:79;;51168:15;;:42;;;-1:-1:-1;;;51168:42:0;;-1:-1:-1;;;;;51168:42:0;;;;;;;;;:15;;;;;:36;;:42;;;;;:15;;:42;;;;;;;:15;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51143:79;51239:40;;;;;;-1:-1:-1;;;;;51239:40:0;;;;;;;;50888:399;;:::o;22192:583::-;-1:-1:-1;;;;;22332:20:0;;22324:70;;;;-1:-1:-1;;;22324:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22413:23:0;;22405:71;;;;-1:-1:-1;;;22405:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22489:47;22510:6;22518:9;22529:6;22489:20;:47::i;:::-;22569:71;22591:6;22569:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22569:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;22549:17:0;;;;;;;:9;:17;;;;;;:91;;;;22674:20;;;;;;;:32;;22699:6;22674:24;:32::i;:::-;-1:-1:-1;;;;;22651:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;22732:35;;;;;;;22651:20;;22732:35;;;;;;;;;;;;;22192:583;;;:::o;10215:471::-;10273:7;10518:6;10514:47;;-1:-1:-1;10548:1:0;10541:8;;10514:47;10585:5;;;10589:1;10585;:5;:1;10609:5;;;;;:10;10601:56;;;;-1:-1:-1;;;10601:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11162:132;11220:7;11247:39;11251:1;11254;11247:39;;;;;;;;;;;;;;;;;:3;:39::i;51299:153::-;51361:24;51378:6;51361:16;:24::i;:::-;51397:15;;:47;;-1:-1:-1;;;;;51397:15:0;;;;51422:21;51397:47;;;;;:15;:47;:15;:47;51422:21;51397:15;:47;;;;;;;;;;;;;;;;;;;57501:949;57611:12;57626:13;:6;57637:1;57626:10;:13::i;:::-;57611:28;-1:-1:-1;57650:17:0;57670:16;:6;57611:28;57670:10;:16::i;:::-;57650:36;-1:-1:-1;57987:21:0;58061:22;58078:4;58061:16;:22::i;:::-;58224:18;58245:41;:21;58271:14;58245:25;:41::i;:::-;58224:62;;58344:35;58357:9;58368:10;58344:12;:35::i;:::-;58397:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57501:949;;;;;:::o;59626:312::-;59691:24;59708:6;59691:16;:24::i;:::-;59804:15;;59796:51;;59746:21;;59726:17;;-1:-1:-1;;;;;59804:15:0;;;;59746:21;;59726:17;59796:51;59726:17;59796:51;59746:21;59804:15;59796:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59778:69;;;59863:7;59860:71;;;59887:32;;;;;;;;;;;;;;;;;;;;;;;;;59626:312;;;:::o;9325:136::-;9383:7;9410:43;9414:1;9417;9410:43;;;;;;;;;;;;;;;;;:3;:43::i;11790:278::-;11876:7;11911:12;11904:5;11896:28;;;;-1:-1:-1;;;11896:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11935:9;11951:1;11947;:5;;;;;;;11790:278;-1:-1:-1;;;;;11790:278:0:o;58458:611::-;58620:16;;;58634:1;58620:16;;;58596:21;58620:16;;;;;58596:21;58620:16;;;;;;;;;;-1:-1:-1;58620:16:0;58596:40;;58665:4;58647;58652:1;58647:7;;;;;;;;-1:-1:-1;;;;;58647:23:0;;;:7;;;;;;;;;;:23;;;;58691:15;;:22;;;-1:-1:-1;;;58691:22:0;;;;:15;;;;;:20;;:22;;;;;58647:7;;58691:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58691:22:0;58681:7;;:4;;58686:1;;58681:7;;;;;;-1:-1:-1;;;;;58681:32:0;;;:7;;;;;;;;;:32;58758:15;;58726:62;;58743:4;;58758:15;58776:11;58726:8;:62::i;:::-;58827:15;;:224;;-1:-1:-1;;;58827:224:0;;;;;;;;:15;:224;;;;;;59005:4;58827:224;;;;;;59025:15;58827:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58827:15:0;;;;:66;;58908:11;;58978:4;;59005;59025:15;58827:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59077:541;59267:15;;59235:62;;59252:4;;-1:-1:-1;;;;;59267:15:0;59285:11;59235:8;:62::i;:::-;59340:15;;59544;;59340:260;;;-1:-1:-1;;;59340:260:0;;59412:4;59340:260;;;;;;;;;;:15;:260;;;;;;;;;;-1:-1:-1;;;;;59544:15:0;;;59340:260;;;;59574:15;59340:260;;;;;;:15;;;;;:31;;59379:9;;59340:260;;;;;;;;;;;;;;;59379:9;59340:15;:260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;59077:541:0:o

Swarm Source

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