ETH Price: $3,417.61 (-1.91%)
Gas: 5 Gwei

Token

OpenPool (OPL)
 

Overview

Max Total Supply

100,000,000 OPL

Holders

558

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000002154178 OPL

Value
$0.00
0x03f93e1d78a5ae4346bfa38bf9d0d399823e0642
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OpenPool

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-24
*/

// SPDX-License-Identifier: MIT

/*
Website: https://www.openpool.org

Twitter: https://twitter.com/OpenPoolOrg
*/

pragma solidity ^0.8.6;

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

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

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

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

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

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

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

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

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


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

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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

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

/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    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}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

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


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

interface IPair {
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function token0() external view returns (address);

}

interface IFactory{
        function createPair(address tokenA, address tokenB) external returns (address pair);
        function getPair(address tokenA, address tokenB) external view returns (address pair);
}

interface IUniswapRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline) external;
}

contract DividendPayingToken is ERC20, DividendPayingTokenInterface, Ownable {

  using SafeMath for uint256;
  using SafeMathUint for uint256;
  using SafeMathInt for int256;

  address public LP_Token;


  // 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;
  uint256 public totalDividendsWithdrawn;

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

  function distributeLPDividends(uint256 amount) public onlyOwner{
    require(totalSupply() > 0);

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

      totalDividendsDistributed = totalDividendsDistributed.add(amount);
    }
  }

  /// @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(payable(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);
      totalDividendsWithdrawn += _withdrawableDividend;
      emit DividendWithdrawn(user, _withdrawableDividend);
      bool success = IERC20(LP_Token).transfer(user, _withdrawableDividend);

      if(!success) {
        withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend);
        totalDividendsWithdrawn -= _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 OpenPool is ERC20, Ownable {
    IUniswapRouter public router;
    address public pair;

    bool private swapping;
    bool public swapEnabled = true;
    bool public claimEnabled;
    bool public tradingEnabled;

    OpenPoolDividendTracker public dividendTracker;

    address public devWallet;

    uint256 public swapTokensAtAmount;
    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWallet;

    struct Taxes {
        uint256 liquidity;
        uint256 dev;
    }

    Taxes public buyTaxes = Taxes(10, 10);
    Taxes public sellTaxes = Taxes(10, 10);

    uint256 public totalBuyTax = 20;
    uint256 public totalSellTax = 20;

    mapping(address => bool) public _isBot;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public automatedMarketMakerPairs;
    mapping(address => bool) private _isExcludedFromMaxWallet;

    ///////////////
    //   Events  //
    ///////////////

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event GasForProcessingUpdated(
        uint256 indexed newValue,
        uint256 indexed oldValue
    );
    event SendDividends(uint256 tokensSwapped, uint256 amount);
    event ProcessedDividendTracker(
        uint256 iterations,
        uint256 claims,
        uint256 lastProcessedIndex,
        bool indexed automatic,
        uint256 gas,
        address indexed processor
    );

    constructor(address _developerwallet) ERC20("OpenPool", "OPL") {
        dividendTracker = new OpenPoolDividendTracker();
        setDevWallet(_developerwallet);

        IUniswapRouter _router = IUniswapRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _pair = IFactory(_router.factory()).createPair(
            address(this),
            _router.WETH()
        );

        router = _router;
        pair = _pair;
        setSwapTokensAtAmount(200000); 
        updateMaxWalletAmount(1000000);
        setMaxBuyAndSell(500000, 500000);

        _setAutomatedMarketMakerPair(_pair, true);

        dividendTracker.updateLP_Token(pair);

        dividendTracker.excludeFromDividends(address(dividendTracker), true);
        dividendTracker.excludeFromDividends(address(this), true);
        dividendTracker.excludeFromDividends(owner(), true);
        dividendTracker.excludeFromDividends(address(0xdead), true);
        dividendTracker.excludeFromDividends(address(_router), true);

        excludeFromMaxWallet(address(_pair), true);
        excludeFromMaxWallet(address(this), true);
        excludeFromMaxWallet(address(_router), true);

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);

        _mint(owner(), 100000000 * (10**18));
    }

    receive() external payable {}

    function updateDividendTracker(address newAddress) public onlyOwner {
        OpenPoolDividendTracker newDividendTracker = OpenPoolDividendTracker(
            payable(newAddress)
        );
        newDividendTracker.excludeFromDividends(
            address(newDividendTracker),
            true
        );
        newDividendTracker.excludeFromDividends(address(this), true);
        newDividendTracker.excludeFromDividends(owner(), true);
        newDividendTracker.excludeFromDividends(address(router), true);
        dividendTracker = newDividendTracker;
    }

    /// @notice Manual claim the dividends
    function claim() external {
        require(claimEnabled, "Claim not enabled");
        dividendTracker.processAccount(payable(msg.sender));
    }

    function updateMaxWalletAmount(uint256 newNum) public onlyOwner {
        require(newNum >= 1000000, "Cannot set maxWallet lower than 1%");
        maxWallet = newNum * 10**18;
    }

    function setMaxBuyAndSell(uint256 maxBuy, uint256 maxSell)
        public
        onlyOwner
    {
        require(maxBuy >= 500000, "Cannot set maxbuy lower than 0.5% ");
        require(maxSell >= 500000, "Cannot set maxsell lower than 0.5% ");
        maxBuyAmount = maxBuy * 10**18;
        maxSellAmount = maxSell * 10**18;
    }

    function setSwapTokensAtAmount(uint256 amount) public onlyOwner {
        swapTokensAtAmount = amount * 10**18;
    }

    function excludeFromMaxWallet(address account, bool excluded)
        public
        onlyOwner
    {
        _isExcludedFromMaxWallet[account] = excluded;
    }

    /// @notice Withdraw tokens sent by mistake.
    /// @param tokenAddress The address of the token to withdraw
    function rescueETH20Tokens(address tokenAddress) external onlyOwner {
        IERC20(tokenAddress).transfer(
            owner(),
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    /// @notice Send remaining ETH to dev
    /// @dev It will send all ETH to dev
    function forceSend() external onlyOwner {
        uint256 ETHbalance = address(this).balance;
        (bool success, ) = payable(devWallet).call{value: ETHbalance}("");
        require(success);
    }

    function trackerRescueETH20Tokens(address tokenAddress) external onlyOwner {
        dividendTracker.trackerRescueETH20Tokens(msg.sender, tokenAddress);
    }

    function updateRouter(address newRouter) external onlyOwner {
        router = IUniswapRouter(newRouter);
    }

    /////////////////////////////////
    // Exclude / Include functions //
    /////////////////////////////////

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

        emit ExcludeFromFees(account, excluded);
    }

    /// @dev "true" to exlcude, "false" to include
    function excludeFromDividends(address account, bool value)
        public
        onlyOwner
    {
        dividendTracker.excludeFromDividends(account, value);
    }

    function setDevWallet(address newWallet) public onlyOwner {
        devWallet = newWallet;
    }

    function setBuyTaxes(uint256 _liquidity, uint256 _dev) external onlyOwner {
        require(_liquidity + _dev <= 20, "Fee must be <= 20%");
        buyTaxes = Taxes(_liquidity, _dev);
        totalBuyTax = _liquidity + _dev;
    }

    function setSellTaxes(uint256 _liquidity, uint256 _dev) external onlyOwner {
        require(_liquidity + _dev <= 20, "Fee must be <= 20%");
        sellTaxes = Taxes(_liquidity, _dev);
        totalSellTax = _liquidity + _dev;
    }

    /// @notice Enable or disable internal swaps
    /// @dev Set "true" to enable internal swaps for liquidity, treasury and dividends
    function setSwapEnabled(bool _enabled) external onlyOwner {
        swapEnabled = _enabled;
    }

    function activateTrading() external onlyOwner {
        require(!tradingEnabled, "Trading already enabled");
        tradingEnabled = true;
    }

    function setClaimEnabled(bool state) external onlyOwner {
        claimEnabled = state;
    }

    /// @param bot The bot address
    /// @param value "true" to blacklist, "false" to unblacklist
    function setBot(address bot, bool value) external onlyOwner {
        require(_isBot[bot] != value);
        _isBot[bot] = value;
    }

    function setLP_Token(address _lpToken) external onlyOwner {
        dividendTracker.updateLP_Token(_lpToken);
    }

    /// @dev Set new pairs created due to listing in new DEX
    function setAutomatedMarketMakerPair(address newPair, bool value)
        external
        onlyOwner
    {
        _setAutomatedMarketMakerPair(newPair, value);
    }

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

        if (value) {
            dividendTracker.excludeFromDividends(newPair, true);
        }

        emit SetAutomatedMarketMakerPair(newPair, value);
    }

    //////////////////////
    // Getter Functions //
    //////////////////////

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

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[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 getAccountInfo(address account)
        external
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        return dividendTracker.getAccount(account);
    }

    ////////////////////////
    // Transfer Functions //
    ////////////////////////

    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 (
            !_isExcludedFromFees[from] && !_isExcludedFromFees[to] && !swapping
        ) {
            require(tradingEnabled, "Trading not active");
            if (automatedMarketMakerPairs[to]) {
                require(
                    amount <= maxSellAmount,
                    "You are exceeding maxSellAmount"
                );
            } else if (automatedMarketMakerPairs[from])
                require(
                    amount <= maxBuyAmount,
                    "You are exceeding maxBuyAmount"
                );
            if (!_isExcludedFromMaxWallet[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "Unable to exceed Max Wallet"
                );
            }
        }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            !swapping &&
            swapEnabled &&
            automatedMarketMakerPairs[to] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            if (totalSellTax > 0) {
                swapAndLiquify(swapTokensAtAmount);
            }

            swapping = false;
        }

        bool takeFee = !swapping;

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

        if (!automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from])
            takeFee = false;

        if (takeFee) {
            uint256 feeAmt;
            if (automatedMarketMakerPairs[to])
                feeAmt = (amount * totalSellTax) / 100;
            else if (automatedMarketMakerPairs[from])
                feeAmt = (amount * totalBuyTax) / 100;

            amount = amount - feeAmt;
            super._transfer(from, address(this), feeAmt);
        }
        super._transfer(from, to, amount);

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

    function swapAndLiquify(uint256 tokens) private {
        uint256 toSwapForLiq = ((tokens * sellTaxes.liquidity) / totalSellTax) / 2;
        uint256 tokensToAddLiquidityWith = ((tokens * sellTaxes.liquidity) / totalSellTax) / 2;
        uint256 toSwapForDev = (tokens * sellTaxes.dev) / totalSellTax;

        swapTokensForETH(toSwapForLiq);

        uint256 currentbalance = address(this).balance;

        if (currentbalance > 0) {
            // Add liquidity to uni
            addLiquidity(tokensToAddLiquidityWith, currentbalance);
        }

        swapTokensForETH(toSwapForDev);

        uint256 EthTaxBalance = address(this).balance;

        // Send ETH to dev
        uint256 devAmt = EthTaxBalance;

        if (devAmt > 0) {
            (bool success, ) = payable(devWallet).call{value: devAmt}("");
            require(success, "Failed to send ETH to dev wallet");
        }

        uint256 lpBalance = IERC20(pair).balanceOf(address(this));

        //Send LP to dividends
        uint256 dividends = lpBalance;

        if (dividends > 0) {
            bool success = IERC20(pair).transfer(
                address(dividendTracker),
                dividends
            );
            if (success) {
                dividendTracker.distributeLPDividends(dividends);
                emit SendDividends(tokens, dividends);
            }
        }
    }

    // transfers LP from the owners wallet to holders // must approve this contract, on pair contract before calling
    function ManualLiquidityDistribution(uint256 amount) public onlyOwner {
        bool success = IERC20(pair).transferFrom(
            msg.sender,
            address(dividendTracker),
            amount
        );
        if (success) {
            dividendTracker.distributeLPDividends(amount);
        }
    }

    function swapTokensForETH(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

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

        // make the swap
        router.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(router), tokenAmount);

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

contract OpenPoolDividendTracker is Ownable, DividendPayingToken {
    struct AccountInfo {
        address account;
        uint256 withdrawableDividends;
        uint256 totalDividends;
        uint256 lastClaimTime;
    }

    mapping(address => bool) public excludedFromDividends;

    mapping(address => uint256) public lastClaimTimes;

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

    constructor()
        DividendPayingToken("OpenPool_Dividend_Tracker", "OpenPool_Dividend_Tracker")
    {}

    function trackerRescueETH20Tokens(address recipient, address tokenAddress)
        external
        onlyOwner
    {
        IERC20(tokenAddress).transfer(
            recipient,
            IERC20(tokenAddress).balanceOf(address(this))
        );
    }

    function updateLP_Token(address _lpToken) external onlyOwner {
        LP_Token = _lpToken;
    }

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

    function excludeFromDividends(address account, bool value)
        external
        onlyOwner
    {
        require(excludedFromDividends[account] != value);
        excludedFromDividends[account] = value;
        if (value == true) {
            _setBalance(account, 0);
        } else {
            _setBalance(account, balanceOf(account));
        }
        emit ExcludeFromDividends(account, value);
    }

    function getAccount(address account)
        public
        view
        returns (
            address,
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        AccountInfo memory info;
        info.account = account;
        info.withdrawableDividends = withdrawableDividendOf(account);
        info.totalDividends = accumulativeDividendOf(account);
        info.lastClaimTime = lastClaimTimes[account];
        return (
            info.account,
            info.withdrawableDividends,
            info.totalDividends,
            info.lastClaimTime,
            totalDividendsWithdrawn
        );
    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_developerwallet","type":"address"}],"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":"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ManualLiquidityDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateTrading","outputs":[],"stateMutability":"nonpayable","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":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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 OpenPoolDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"dev","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lpToken","type":"address"}],"name":"setLP_Token","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"maxSell","type":"uint256"}],"name":"setMaxBuyAndSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidity","type":"uint256"},{"internalType":"uint256","name":"_dev","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"totalBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellTax","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":"tokenAddress","type":"address"}],"name":"trackerRescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","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"}]

6007805460ff60a81b1916600160a81b179055600a608081905260a0819052600e819055600f81905561010060405260c081905260e08190526010819055601155601460128190556013553480156200005757600080fd5b5060405162005b0638038062005b068339810160408190526200007a9162000c18565b6040518060400160405280600881526020016713dc195b941bdbdb60c21b8152506040518060400160405280600381526020016213d41360ea1b8152508160039081620000c8919062000cee565b506004620000d7828262000cee565b505050620000f4620000ee6200062c60201b60201c565b62000630565b604051620001029062000c0a565b604051809103906000f0801580156200011f573d6000803e3d6000fd5b50600880546001600160a01b0319166001600160a01b03929092169190911790556200014b8162000682565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cb919062000c18565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000219573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023f919062000c18565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200028d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b3919062000c18565b600680546001600160a01b038086166001600160a01b03199283161790925560078054928416929091169190911790559050620002f362030d40620006ae565b62000301620f4240620006d2565b620003106207a120806200075a565b6200031d81600162000857565b60085460075460405163225b5ecf60e11b81526001600160a01b0391821660048201529116906344b6bd9e90602401600060405180830381600087803b1580156200036757600080fd5b505af11580156200037c573d6000803e3d6000fd5b505060085460405162241fbd60e51b81526001600160a01b0390911660048201819052600160248301529250630483f7a09150604401600060405180830381600087803b158015620003cd57600080fd5b505af1158015620003e2573d6000803e3d6000fd5b505060085460405162241fbd60e51b8152306004820152600160248201526001600160a01b039091169250630483f7a09150604401600060405180830381600087803b1580156200043257600080fd5b505af115801562000447573d6000803e3d6000fd5b50506008546001600160a01b03169150630483f7a09050620004716005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b158015620004ba57600080fd5b505af1158015620004cf573d6000803e3d6000fd5b505060085460405162241fbd60e51b815261dead6004820152600160248201526001600160a01b039091169250630483f7a09150604401600060405180830381600087803b1580156200052157600080fd5b505af115801562000536573d6000803e3d6000fd5b505060085460405162241fbd60e51b81526001600160a01b038681166004830152600160248301529091169250630483f7a09150604401600060405180830381600087803b1580156200058857600080fd5b505af11580156200059d573d6000803e3d6000fd5b50505050620005b4816001620009c160201b60201c565b620005c1306001620009c1565b620005ce826001620009c1565b620005ed620005e56005546001600160a01b031690565b6001620009f6565b620005fa306001620009f6565b62000623620006116005546001600160a01b031690565b6a52b7d2dcc80cd2e400000062000ae4565b50505062000e06565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200068c62000ba7565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b620006b862000ba7565b620006cc81670de0b6b3a764000062000dd0565b600a5550565b620006dc62000ba7565b620f4240811015620007405760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261312560f01b60648201526084015b60405180910390fd5b6200075481670de0b6b3a764000062000dd0565b600d5550565b6200076462000ba7565b6207a120821015620007c45760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d6178627579206c6f776572207468616e20302e35604482015261012960f51b606482015260840162000737565b6207a120811015620008255760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60448201526201a92960ed1b606482015260840162000737565b6200083982670de0b6b3a764000062000dd0565b600b556200085081670de0b6b3a764000062000dd0565b600c555050565b6001600160a01b03821660009081526016602052604090205481151560ff909116151503620008ef5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c75650000000000000000606482015260840162000737565b6001600160a01b0382166000908152601660205260409020805460ff19168215801591909117909155620009855760085460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b1580156200096b57600080fd5b505af115801562000980573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b620009cb62000ba7565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b62000a0062000ba7565b6001600160a01b03821660009081526015602052604090205481151560ff90911615150362000a855760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b606482015260840162000737565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b03821662000b3c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000737565b806002600082825462000b50919062000df0565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b0316331462000c035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000737565b565b505050565b611b8e8062003f7883390190565b60006020828403121562000c2b57600080fd5b81516001600160a01b038116811462000c4357600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000c7557607f821691505b60208210810362000c9657634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000c0557600081815260208120601f850160051c8101602086101562000cc55750805b601f850160051c820191505b8181101562000ce65782815560010162000cd1565b505050505050565b81516001600160401b0381111562000d0a5762000d0a62000c4a565b62000d228162000d1b845462000c60565b8462000c9c565b602080601f83116001811462000d5a576000841562000d415750858301515b600019600386901b1c1916600185901b17855562000ce6565b600085815260208120601f198616915b8281101562000d8b5788860151825594840194600190910190840162000d6a565b508582101562000daa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000dea5762000dea62000dba565b92915050565b8082018082111562000dea5762000dea62000dba565b6131628062000e166000396000f3fe6080604052600436106103855760003560e01c806388bdd9be116101d1578063abb8105211610102578063d2fcc001116100a0578063f2fde38b1161006f578063f2fde38b14610ac5578063f66895a314610ae5578063f887ea4014610b00578063f8b45b0514610b2057600080fd5b8063d2fcc00114610a29578063dd62ed3e14610a49578063e01af92c14610a8f578063e2f4560514610aaf57600080fd5b8063bdf1436d116100dc578063bdf1436d146109a9578063c0246668146109c9578063c18bc195146109e9578063c851cc3214610a0957600080fd5b8063abb8105214610929578063afa4f3b214610959578063b62496f51461097957600080fd5b80639a7a23d61161016f578063a8aa1b3111610149578063a8aa1b31146108a9578063a8b9d240146108c9578063a9059cbb146108e9578063aa35822c1461090957600080fd5b80639a7a23d614610849578063a11a168214610869578063a457c2d71461088957600080fd5b80638da5cb5b116101ab5780638da5cb5b146107d65780638ea5220f146107f457806392929a091461081457806395d89b411461083457600080fd5b806388bdd9be1461078057806388e765ff146107a05780638c9684f9146107b657600080fd5b8063313ce567116102b657806366d602ae11610254578063715018a611610223578063715018a6146106c957806379b447bd146106de5780637b510fe8146106fe578063864701a51461075057600080fd5b806366d602ae1461063c5780636843cd84146106525780636ddd17131461067257806370a082311461069357600080fd5b806346469afb1161029057806346469afb146105b75780634ada218b146105cd5780634e71d92d146105ee5780634fbee1931461060357600080fd5b8063313ce5671461055b578063342aa8b514610577578063395093511461059757600080fd5b80631bff7898116103235780632866ed21116102fd5780632866ed21146104cd5780632c1f5216146104ee5780632e1ab9041461052657806330bb4cff1461054657600080fd5b80631bff7898146104775780631f53ac021461048d57806323b872dd146104ad57600080fd5b80630a78097d1161035f5780630a78097d1461040e5780630bd05b691461042e57806312b77e8a1461044357806318160ddd1461045857600080fd5b80630483f7a01461039157806306fdde03146103b3578063095ea7b3146103de57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103b16103ac366004612d8e565b610b36565b005b3480156103bf57600080fd5b506103c8610ba9565b6040516103d59190612dc7565b60405180910390f35b3480156103ea57600080fd5b506103fe6103f9366004612e15565b610c3b565b60405190151581526020016103d5565b34801561041a57600080fd5b506103b1610429366004612e41565b610c55565b34801561043a57600080fd5b506103b1610d59565b34801561044f57600080fd5b506103b1610df0565b34801561046457600080fd5b506002545b6040519081526020016103d5565b34801561048357600080fd5b5061046960135481565b34801561049957600080fd5b506103b16104a8366004612e41565b610e5c565b3480156104b957600080fd5b506103fe6104c8366004612e65565b610e93565b3480156104d957600080fd5b506007546103fe90600160b01b900460ff1681565b3480156104fa57600080fd5b5060085461050e906001600160a01b031681565b6040516001600160a01b0390911681526020016103d5565b34801561053257600080fd5b506103b1610541366004612e41565b610eb7565b34801561055257600080fd5b50610469610f3b565b34801561056757600080fd5b50604051601281526020016103d5565b34801561058357600080fd5b506103b1610592366004612d8e565b610fc7565b3480156105a357600080fd5b506103fe6105b2366004612e15565b611027565b3480156105c357600080fd5b5061046960125481565b3480156105d957600080fd5b506007546103fe90600160b81b900460ff1681565b3480156105fa57600080fd5b506103b1611066565b34801561060f57600080fd5b506103fe61061e366004612e41565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561064857600080fd5b50610469600c5481565b34801561065e57600080fd5b5061046961066d366004612e41565b611149565b34801561067e57600080fd5b506007546103fe90600160a81b900460ff1681565b34801561069f57600080fd5b506104696106ae366004612e41565b6001600160a01b031660009081526020819052604090205490565b3480156106d557600080fd5b506103b16111b9565b3480156106ea57600080fd5b506103b16106f9366004612ea6565b6111cd565b34801561070a57600080fd5b5061071e610719366004612e41565b6112f5565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a0016103d5565b34801561075c57600080fd5b50600e54600f5461076b919082565b604080519283526020830191909152016103d5565b34801561078c57600080fd5b506103b161079b366004612e41565b611398565b3480156107ac57600080fd5b50610469600b5481565b3480156107c257600080fd5b506103b16107d1366004612e41565b611577565b3480156107e257600080fd5b506005546001600160a01b031661050e565b34801561080057600080fd5b5060095461050e906001600160a01b031681565b34801561082057600080fd5b506103b161082f366004612ec8565b6115d0565b34801561084057600080fd5b506103c8611611565b34801561085557600080fd5b506103b1610864366004612d8e565b611620565b34801561087557600080fd5b506103b1610884366004612ea6565b611632565b34801561089557600080fd5b506103fe6108a4366004612e15565b6116c2565b3480156108b557600080fd5b5060075461050e906001600160a01b031681565b3480156108d557600080fd5b506104696108e4366004612e41565b61176c565b3480156108f557600080fd5b506103fe610904366004612e15565b6117b8565b34801561091557600080fd5b506103b1610924366004612ea6565b6117c6565b34801561093557600080fd5b506103fe610944366004612e41565b60146020526000908152604090205460ff1681565b34801561096557600080fd5b506103b1610974366004612ee5565b611856565b34801561098557600080fd5b506103fe610994366004612e41565b60166020526000908152604090205460ff1681565b3480156109b557600080fd5b506103b16109c4366004612ee5565b611876565b3480156109d557600080fd5b506103b16109e4366004612d8e565b611954565b3480156109f557600080fd5b506103b1610a04366004612ee5565b611a51565b348015610a1557600080fd5b506103b1610a24366004612e41565b611aea565b348015610a3557600080fd5b506103b1610a44366004612d8e565b611b21565b348015610a5557600080fd5b50610469610a64366004612efe565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a9b57600080fd5b506103b1610aaa366004612ec8565b611b54565b348015610abb57600080fd5b50610469600a5481565b348015610ad157600080fd5b506103b1610ae0366004612e41565b611b95565b348015610af157600080fd5b5060105460115461076b919082565b348015610b0c57600080fd5b5060065461050e906001600160a01b031681565b348015610b2c57600080fd5b50610469600d5481565b610b3e611c22565b60085460405162241fbd60e51b81526001600160a01b038481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610b8d57600080fd5b505af1158015610ba1573d6000803e3d6000fd5b505050505050565b606060038054610bb890612f2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610be490612f2c565b8015610c315780601f10610c0657610100808354040283529160200191610c31565b820191906000526020600020905b815481529060010190602001808311610c1457829003601f168201915b5050505050905090565b600033610c49818585611c7c565b60019150505b92915050565b610c5d611c22565b806001600160a01b031663a9059cbb610c7e6005546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610cc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce69190612f66565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610d31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d559190612f7f565b5050565b610d61611c22565b600754600160b81b900460ff1615610dc05760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c726561647920656e61626c656400000000000000000060448201526064015b60405180910390fd5b600780547fffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff16600160b81b179055565b610df8611c22565b60095460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114610e49576040519150601f19603f3d011682016040523d82523d6000602084013e610e4e565b606091505b5050905080610d5557600080fd5b610e64611c22565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600033610ea1858285611dd4565b610eac858585611e66565b506001949350505050565b610ebf611c22565b6008546040517f44b6bd9e0000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152909116906344b6bd9e906024015b600060405180830381600087803b158015610f2057600080fd5b505af1158015610f34573d6000803e3d6000fd5b5050505050565b600854604080517f85a6b3ae00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc29190612f66565b905090565b610fcf611c22565b6001600160a01b03821660009081526014602052604090205481151560ff909116151503610ffc57600080fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610c499082908690611061908790612fb2565b611c7c565b600754600160b01b900460ff166110bf5760405162461bcd60e51b815260206004820152601160248201527f436c61696d206e6f7420656e61626c65640000000000000000000000000000006044820152606401610db7565b6008546040517f807ab4f70000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b039091169063807ab4f7906024016020604051808303816000875af1158015611122573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111469190612f7f565b50565b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa158015611195573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4f9190612f66565b6111c1611c22565b6111cb60006124ce565b565b6111d5611c22565b6207a12082101561124e5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d6178627579206c6f776572207468616e20302e3560448201527f25200000000000000000000000000000000000000000000000000000000000006064820152608401610db7565b6207a1208110156112c75760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60448201527f35252000000000000000000000000000000000000000000000000000000000006064820152608401610db7565b6112d982670de0b6b3a7640000612fc5565b600b556112ee81670de0b6b3a7640000612fc5565b600c555050565b6008546040517ffbcbc0f10000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152600092839283928392839291169063fbcbc0f19060240160a060405180830381865afa158015611362573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113869190612fdc565b939a9299509097509550909350915050565b6113a0611c22565b60405162241fbd60e51b81526001600160a01b03821660048201819052600160248301528291630483f7a090604401600060405180830381600087803b1580156113e957600080fd5b505af11580156113fd573d6000803e3d6000fd5b505060405162241fbd60e51b8152306004820152600160248201526001600160a01b0384169250630483f7a09150604401600060405180830381600087803b15801561144857600080fd5b505af115801561145c573d6000803e3d6000fd5b50505050806001600160a01b0316630483f7a06114816005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b1580156114c957600080fd5b505af11580156114dd573d6000803e3d6000fd5b505060065460405162241fbd60e51b81526001600160a01b039182166004820152600160248201529084169250630483f7a09150604401600060405180830381600087803b15801561152e57600080fd5b505af1158015611542573d6000803e3d6000fd5b50506008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039490941693909317909255505050565b61157f611c22565b6008546040517f497ec8230000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0383811660248301529091169063497ec82390604401610f06565b6115d8611c22565b60078054911515600160b01b027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b606060048054610bb890612f2c565b611628611c22565b610d55828261252d565b61163a611c22565b60146116468284612fb2565b11156116945760405162461bcd60e51b815260206004820152601260248201527f466565206d757374206265203c3d2032302500000000000000000000000000006044820152606401610db7565b60408051808201909152828152602001819052601082905560118190556116bb8183612fb2565b6013555050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561175f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610db7565b610eac8286868403611c7c565b6008546040517fa8b9d2400000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152600092169063a8b9d24090602401611178565b600033610c49818585611e66565b6117ce611c22565b60146117da8284612fb2565b11156118285760405162461bcd60e51b815260206004820152601260248201527f466565206d757374206265203c3d2032302500000000000000000000000000006044820152606401610db7565b60408051808201909152828152602001819052600e829055600f81905561184f8183612fb2565b6012555050565b61185e611c22565b61187081670de0b6b3a7640000612fc5565b600a5550565b61187e611c22565b6007546008546040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0391821660248201526044810184905260009291909116906323b872dd906064016020604051808303816000875af11580156118f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191b9190612f7f565b90508015610d5557600854604051633b79ab6760e21b8152600481018490526001600160a01b039091169063ede6ad9c90602401610b73565b61195c611c22565b6001600160a01b03821660009081526015602052604090205481151560ff9091161515036119f25760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f662060448201527f276578636c7564656427000000000000000000000000000000000000000000006064820152608401610db7565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611a59611c22565b620f4240811015611ad25760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f31250000000000000000000000000000000000000000000000000000000000006064820152608401610db7565b611ae481670de0b6b3a7640000612fc5565b600d5550565b611af2611c22565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b611b29611c22565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b611b5c611c22565b60078054911515600160a81b027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b611b9d611c22565b6001600160a01b038116611c195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610db7565b611146816124ce565b6005546001600160a01b031633146111cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610db7565b6001600160a01b038316611cf75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610db7565b6001600160a01b038216611d735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610db7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114611e605781811015611e535760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610db7565b611e608484848403611c7c565b50505050565b6001600160a01b038316611eca5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610db7565b6001600160a01b038216611f2c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610db7565b6001600160a01b03831660009081526015602052604090205460ff16158015611f6e57506001600160a01b03821660009081526015602052604090205460ff16155b8015611f845750600754600160a01b900460ff16155b1561216157600754600160b81b900460ff16611fe25760405162461bcd60e51b815260206004820152601260248201527f54726164696e67206e6f742061637469766500000000000000000000000000006044820152606401610db7565b6001600160a01b03821660009081526016602052604090205460ff161561205a57600c548111156120555760405162461bcd60e51b815260206004820152601f60248201527f596f752061726520657863656564696e67206d617853656c6c416d6f756e74006044820152606401610db7565b6120cd565b6001600160a01b03831660009081526016602052604090205460ff16156120cd57600b548111156120cd5760405162461bcd60e51b815260206004820152601e60248201527f596f752061726520657863656564696e67206d6178427579416d6f756e7400006044820152606401610db7565b6001600160a01b03821660009081526017602052604090205460ff1661216157600d546001600160a01b0383166000908152602081905260409020546121139083612fb2565b11156121615760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610db7565b8060000361217a5761217583836000612692565b505050565b30600090815260208190526040902054600a54811080159081906121a85750600754600160a01b900460ff16155b80156121bd5750600754600160a81b900460ff165b80156121e157506001600160a01b03841660009081526016602052604090205460ff165b801561220657506001600160a01b03851660009081526015602052604090205460ff16155b801561222b57506001600160a01b03841660009081526015602052604090205460ff16155b15612264576007805460ff60a01b1916600160a01b1790556013541561225657612256600a5461284d565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526015602052604090205460ff600160a01b9092048216159116806122b257506001600160a01b03851660009081526015602052604090205460ff165b156122bb575060005b6001600160a01b03851660009081526016602052604090205460ff161580156122fd57506001600160a01b03861660009081526016602052604090205460ff16155b15612306575060005b80156123a5576001600160a01b03851660009081526016602052604081205460ff161561234e5760646013548661233d9190612fc5565b6123479190613025565b905061238c565b6001600160a01b03871660009081526016602052604090205460ff161561238c5760646012548661237f9190612fc5565b6123899190613025565b90505b6123968186613047565b94506123a3873083612692565b505b6123b0868686612692565b6008546001600160a01b031663e30443bc876123e1816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561242757600080fd5b505af1925050508015612438575060015b506008546001600160a01b031663e30443bc8661246a816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156124b057600080fd5b505af19250505080156124c1575060015b15610ba157505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526016602052604090205481151560ff9091161515036125c35760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610db7565b6001600160a01b0382166000908152601660205260409020805460ff191682158015919091179091556126565760085460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b15801561263d57600080fd5b505af1158015612651573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166126f65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610db7565b6001600160a01b0382166127585760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610db7565b6001600160a01b038316600090815260208190526040902054818110156127e75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610db7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611e60565b6013546010546000916002916128639085612fc5565b61286d9190613025565b6128779190613025565b905060006002601354601060000154856128919190612fc5565b61289b9190613025565b6128a59190613025565b6013546011549192506000916128bb9086612fc5565b6128c59190613025565b90506128d083612b52565b4780156128e1576128e18382612ca8565b6128ea82612b52565b47808015612997576009546040516000916001600160a01b03169083908381818185875af1925050503d806000811461293f576040519150601f19603f3d011682016040523d82523d6000602084013e612944565b606091505b50509050806129955760405162461bcd60e51b815260206004820181905260248201527f4661696c656420746f2073656e642045544820746f206465762077616c6c65746044820152606401610db7565b505b6007546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156129e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a049190612f66565b9050808015612b47576007546008546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015260248101849052600092919091169063a9059cbb906044016020604051808303816000875af1158015612a80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aa49190612f7f565b90508015612b4557600854604051633b79ab6760e21b8152600481018490526001600160a01b039091169063ede6ad9c90602401600060405180830381600087803b158015612af257600080fd5b505af1158015612b06573d6000803e3d6000fd5b5050604080518d8152602081018690527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3935001905060405180910390a15b505b505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612b8757612b8761305a565b6001600160a01b03928316602091820292909201810191909152600654604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015612bf9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c1d9190613070565b81600181518110612c3057612c3061305a565b6001600160a01b039283166020918202929092010152600654612c569130911684611c7c565b6006546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063791ac94790610b7390859060009086903090429060040161308d565b600654612cc09030906001600160a01b031684611c7c565b6006546040517ff305d719000000000000000000000000000000000000000000000000000000008152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af1158015612d46573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f3491906130fe565b6001600160a01b038116811461114657600080fd5b801515811461114657600080fd5b60008060408385031215612da157600080fd5b8235612dac81612d6b565b91506020830135612dbc81612d80565b809150509250929050565b600060208083528351808285015260005b81811015612df457858101830151858201604001528201612dd8565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215612e2857600080fd5b8235612e3381612d6b565b946020939093013593505050565b600060208284031215612e5357600080fd5b8135612e5e81612d6b565b9392505050565b600080600060608486031215612e7a57600080fd5b8335612e8581612d6b565b92506020840135612e9581612d6b565b929592945050506040919091013590565b60008060408385031215612eb957600080fd5b50508035926020909101359150565b600060208284031215612eda57600080fd5b8135612e5e81612d80565b600060208284031215612ef757600080fd5b5035919050565b60008060408385031215612f1157600080fd5b8235612f1c81612d6b565b91506020830135612dbc81612d6b565b600181811c90821680612f4057607f821691505b602082108103612f6057634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612f7857600080fd5b5051919050565b600060208284031215612f9157600080fd5b8151612e5e81612d80565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c4f57610c4f612f9c565b8082028115828204841417610c4f57610c4f612f9c565b600080600080600060a08688031215612ff457600080fd5b8551612fff81612d6b565b602087015160408801516060890151608090990151929a91995097965090945092505050565b60008261304257634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610c4f57610c4f612f9c565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561308257600080fd5b8151612e5e81612d6b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130dd5784516001600160a01b0316835293830193918301916001016130b8565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561311357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220fe7446618970195711c02725e1d4b435cdfbef3f165808024173ea3ab326b99d64736f6c6343000812003360806040523480156200001157600080fd5b5060408051808201825260198082527f4f70656e506f6f6c5f4469766964656e645f547261636b6572000000000000006020808401829052845180860190955291845290830152908181600362000069838262000198565b50600462000078828262000198565b505050620000956200008f6200009d60201b60201c565b620000a1565b505062000264565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200011e57607f821691505b6020821081036200013f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019357600081815260208120601f850160051c810160208610156200016e5750805b601f850160051c820191505b818110156200018f578281556001016200017a565b5050505b505050565b81516001600160401b03811115620001b457620001b4620000f3565b620001cc81620001c5845462000109565b8462000145565b602080601f831160018114620002045760008415620001eb5750858301515b600019600386901b1c1916600185901b1785556200018f565b600085815260208120601f198616915b82811015620002355788860151825594840194600190910190840162000214565b5085821015620002545787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61191a80620002746000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063a8b9d240116100a2578063e30443bc11610071578063e30443bc14610453578063ede6ad9c14610466578063f2fde38b14610479578063fbcbc0f11461048c57600080fd5b8063a8b9d240146103cb578063a9059cbb146103de578063aafd847a146103f1578063dd62ed3e1461041a57600080fd5b806391b89fba116100de57806391b89fba1461039457806395d89b41146103a75780639e1e0661146103af578063a457c2d7146103b857600080fd5b8063715018a61461035f578063807ab4f71461036757806385a6b3ae1461037a5780638da5cb5b1461038357600080fd5b806327ce014711610187578063497ec82311610156578063497ec823146102f85780634e7b827f1461030b5780636a4740021461032e57806370a082311461033657600080fd5b806327ce0147146102b0578063313ce567146102c357806339509351146102d257806344b6bd9e146102e557600080fd5b80631162c4b6116101c35780631162c4b61461024057806318160ddd1461026b578063226cfa3d1461027d57806323b872dd1461029d57600080fd5b80630483f7a0146101ea57806306fdde03146101ff578063095ea7b31461021d575b600080fd5b6101fd6101f836600461165f565b6104d1565b005b6102076105b5565b6040516102149190611698565b60405180910390f35b61023061022b3660046116e6565b610647565b6040519015158152602001610214565b600654610253906001600160a01b031681565b6040516001600160a01b039091168152602001610214565b6002545b604051908152602001610214565b61026f61028b366004611712565b600d6020526000908152604090205481565b6102306102ab36600461172f565b610661565b61026f6102be366004611712565b610685565b60405160128152602001610214565b6102306102e03660046116e6565b6106ee565b6101fd6102f3366004611712565b61072d565b6101fd610306366004611770565b610764565b610230610319366004611712565b600c6020526000908152604090205460ff1681565b6101fd610883565b61026f610344366004611712565b6001600160a01b031660009081526020819052604090205490565b6101fd61088f565b610230610375366004611712565b6108a3565b61026f600a5481565b6005546001600160a01b0316610253565b61026f6103a2366004611712565b610927565b610207610932565b61026f600b5481565b6102306103c63660046116e6565b610941565b61026f6103d9366004611712565b6109f0565b6102306103ec3660046116e6565b610a1c565b61026f6103ff366004611712565b6001600160a01b031660009081526009602052604090205490565b61026f610428366004611770565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101fd6104613660046116e6565b610a2a565b6101fd61047436600461179e565b610a60565b6101fd610487366004611712565b610b08565b61049f61049a366004611712565b610b95565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a001610214565b6104d9610c3d565b6001600160a01b0382166000908152600c602052604090205481151560ff90911615150361050657600080fd5b6001600160a01b0382166000908152600c60205260409020805460ff19168215159081179091556001036105445761053f826000610c97565b61056c565b61056c82610567846001600160a01b031660009081526020819052604090205490565b610c97565b816001600160a01b03167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be826040516105a9911515815260200190565b60405180910390a25050565b6060600380546105c4906117b7565b80601f01602080910402602001604051908101604052809291908181526020018280546105f0906117b7565b801561063d5780601f106106125761010080835404028352916020019161063d565b820191906000526020600020905b81548152906001019060200180831161062057829003601f168201915b5050505050905090565b600033610655818585610cf6565b60019150505b92915050565b60003361066f858285610e4e565b61067a858585610eda565b506001949350505050565b6001600160a01b03811660009081526008602090815260408083205491839052822054600754700100000000000000000000000000000000926106e4926106df926106d9916106d49190610f48565b610fed565b90610ffd565b61103b565b61065b9190611807565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906106559082908690610728908790611829565b610cf6565b610735610c3d565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61076c610c3d565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b0382169063a9059cbb90849083906370a0823190602401602060405180830381865afa1580156107d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f7919061183c565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561085a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061087e9190611855565b505050565b61088c3361104e565b50565b610897610c3d565b6108a160006111f5565b565b60006108ad610c3d565b60006108b88361104e565b9050801561091e576001600160a01b0383166000818152600d602052604090819020429055517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d49061090d9084815260200190565b60405180910390a250600192915050565b50600092915050565b600061065b826109f0565b6060600480546105c4906117b7565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156109e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61067a8286868403610cf6565b6001600160a01b03811660009081526009602052604081205461065b90610a1684610685565b90611254565b600033610655818585610eda565b610a32610c3d565b6001600160a01b0382166000908152600c602052604090205460ff16610a5c57610a5c8282610c97565b5050565b610a68610c3d565b6000610a7360025490565b11610a7d57600080fd5b801561088c57610abd610a8f60025490565b610aaa83700100000000000000000000000000000000610f48565b610ab49190611807565b60075490611296565b60075560405181815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2600a54610b029082611296565b600a5550565b610b10610c3d565b6001600160a01b038116610b8c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016109da565b61088c816111f5565b6000806000806000610bd1604051806080016040528060006001600160a01b031681526020016000815260200160008152602001600081525090565b6001600160a01b0387168152610be6876109f0565b6020820152610bf487610685565b60408281019182526001600160a01b03989098166000908152600d60209081529890205460608301819052825198909201519051600b5498999198909750919550909350915050565b6005546001600160a01b031633146108a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109da565b6001600160a01b03821660009081526020819052604090205480821115610cd6576000610cc48383611254565b9050610cd084826112f5565b50505050565b8082101561087e576000610cea8284611254565b9050610cd08482611359565b6001600160a01b038316610d715760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109da565b6001600160a01b038216610ded5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109da565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610cd05781811015610ecd5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109da565b610cd08484848403610cf6565b60405162461bcd60e51b815260206004820152602f60248201527f4f70656e506f6f6c5f4469766964656e645f547261636b65723a204e6f20747260448201527f616e736665727320616c6c6f776564000000000000000000000000000000000060648201526084016109da565b600082600003610f5a5750600061065b565b6000610f668385611872565b905082610f738583611807565b14610fe65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60448201527f770000000000000000000000000000000000000000000000000000000000000060648201526084016109da565b9392505050565b6000818181121561065b57600080fd5b60008061100a8385611889565b90506000831215801561101d5750838112155b80611032575060008312801561103257508381125b610fe657600080fd5b60008082121561104a57600080fd5b5090565b60008061105a836109f0565b9050801561091e576001600160a01b0383166000908152600960205260409020546110859082611296565b6001600160a01b038416600090815260096020526040812091909155600b80548392906110b3908490611829565b90915550506040518181526001600160a01b038416907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a26006546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b03858116600483015260248201849052600092169063a9059cbb906044016020604051808303816000875af1158015611163573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111879190611855565b9050806111ee576001600160a01b0384166000908152600960205260409020546111b19083611254565b6001600160a01b038516600090815260096020526040812091909155600b80548492906111df9084906118b1565b90915550600095945050505050565b5092915050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610fe683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061139d565b6000806112a38385611829565b905083811015610fe65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016109da565b6112ff82826113d7565b61133961131a6106d483600754610f4890919063ffffffff16565b6001600160a01b03841660009081526008602052604090205490611496565b6001600160a01b0390921660009081526008602052604090209190915550565b61136382826114d3565b61133961137e6106d483600754610f4890919063ffffffff16565b6001600160a01b03841660009081526008602052604090205490610ffd565b600081848411156113c15760405162461bcd60e51b81526004016109da9190611698565b5060006113ce84866118b1565b95945050505050565b6001600160a01b03821661142d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016109da565b806002600082825461143f9190611829565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000806114a383856118c4565b9050600083121580156114b65750838113155b8061103257506000831280156110325750838113610fe657600080fd5b6001600160a01b03821661154f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016109da565b6001600160a01b038216600090815260208190526040902054818110156115de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016109da565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b038116811461088c57600080fd5b801515811461088c57600080fd5b6000806040838503121561167257600080fd5b823561167d8161163c565b9150602083013561168d81611651565b809150509250929050565b600060208083528351808285015260005b818110156116c5578581018301518582016040015282016116a9565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156116f957600080fd5b82356117048161163c565b946020939093013593505050565b60006020828403121561172457600080fd5b8135610fe68161163c565b60008060006060848603121561174457600080fd5b833561174f8161163c565b9250602084013561175f8161163c565b929592945050506040919091013590565b6000806040838503121561178357600080fd5b823561178e8161163c565b9150602083013561168d8161163c565b6000602082840312156117b057600080fd5b5035919050565b600181811c908216806117cb57607f821691505b6020821081036117eb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008261182457634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561065b5761065b6117f1565b60006020828403121561184e57600080fd5b5051919050565b60006020828403121561186757600080fd5b8151610fe681611651565b808202811582820484141761065b5761065b6117f1565b80820182811260008312801582168215821617156118a9576118a96117f1565b505092915050565b8181038181111561065b5761065b6117f1565b81810360008312801583831316838312821617156111ee576111ee6117f156fea264697066735822122003c40c1091a510cc5ae01f7f1dfa15d7e0279383b70b39e4586a7765f3083a8564736f6c634300081200330000000000000000000000004f3d625f78e6b8c4c6b34f201f6b2dae69240754

Deployed Bytecode

0x6080604052600436106103855760003560e01c806388bdd9be116101d1578063abb8105211610102578063d2fcc001116100a0578063f2fde38b1161006f578063f2fde38b14610ac5578063f66895a314610ae5578063f887ea4014610b00578063f8b45b0514610b2057600080fd5b8063d2fcc00114610a29578063dd62ed3e14610a49578063e01af92c14610a8f578063e2f4560514610aaf57600080fd5b8063bdf1436d116100dc578063bdf1436d146109a9578063c0246668146109c9578063c18bc195146109e9578063c851cc3214610a0957600080fd5b8063abb8105214610929578063afa4f3b214610959578063b62496f51461097957600080fd5b80639a7a23d61161016f578063a8aa1b3111610149578063a8aa1b31146108a9578063a8b9d240146108c9578063a9059cbb146108e9578063aa35822c1461090957600080fd5b80639a7a23d614610849578063a11a168214610869578063a457c2d71461088957600080fd5b80638da5cb5b116101ab5780638da5cb5b146107d65780638ea5220f146107f457806392929a091461081457806395d89b411461083457600080fd5b806388bdd9be1461078057806388e765ff146107a05780638c9684f9146107b657600080fd5b8063313ce567116102b657806366d602ae11610254578063715018a611610223578063715018a6146106c957806379b447bd146106de5780637b510fe8146106fe578063864701a51461075057600080fd5b806366d602ae1461063c5780636843cd84146106525780636ddd17131461067257806370a082311461069357600080fd5b806346469afb1161029057806346469afb146105b75780634ada218b146105cd5780634e71d92d146105ee5780634fbee1931461060357600080fd5b8063313ce5671461055b578063342aa8b514610577578063395093511461059757600080fd5b80631bff7898116103235780632866ed21116102fd5780632866ed21146104cd5780632c1f5216146104ee5780632e1ab9041461052657806330bb4cff1461054657600080fd5b80631bff7898146104775780631f53ac021461048d57806323b872dd146104ad57600080fd5b80630a78097d1161035f5780630a78097d1461040e5780630bd05b691461042e57806312b77e8a1461044357806318160ddd1461045857600080fd5b80630483f7a01461039157806306fdde03146103b3578063095ea7b3146103de57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103b16103ac366004612d8e565b610b36565b005b3480156103bf57600080fd5b506103c8610ba9565b6040516103d59190612dc7565b60405180910390f35b3480156103ea57600080fd5b506103fe6103f9366004612e15565b610c3b565b60405190151581526020016103d5565b34801561041a57600080fd5b506103b1610429366004612e41565b610c55565b34801561043a57600080fd5b506103b1610d59565b34801561044f57600080fd5b506103b1610df0565b34801561046457600080fd5b506002545b6040519081526020016103d5565b34801561048357600080fd5b5061046960135481565b34801561049957600080fd5b506103b16104a8366004612e41565b610e5c565b3480156104b957600080fd5b506103fe6104c8366004612e65565b610e93565b3480156104d957600080fd5b506007546103fe90600160b01b900460ff1681565b3480156104fa57600080fd5b5060085461050e906001600160a01b031681565b6040516001600160a01b0390911681526020016103d5565b34801561053257600080fd5b506103b1610541366004612e41565b610eb7565b34801561055257600080fd5b50610469610f3b565b34801561056757600080fd5b50604051601281526020016103d5565b34801561058357600080fd5b506103b1610592366004612d8e565b610fc7565b3480156105a357600080fd5b506103fe6105b2366004612e15565b611027565b3480156105c357600080fd5b5061046960125481565b3480156105d957600080fd5b506007546103fe90600160b81b900460ff1681565b3480156105fa57600080fd5b506103b1611066565b34801561060f57600080fd5b506103fe61061e366004612e41565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561064857600080fd5b50610469600c5481565b34801561065e57600080fd5b5061046961066d366004612e41565b611149565b34801561067e57600080fd5b506007546103fe90600160a81b900460ff1681565b34801561069f57600080fd5b506104696106ae366004612e41565b6001600160a01b031660009081526020819052604090205490565b3480156106d557600080fd5b506103b16111b9565b3480156106ea57600080fd5b506103b16106f9366004612ea6565b6111cd565b34801561070a57600080fd5b5061071e610719366004612e41565b6112f5565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a0016103d5565b34801561075c57600080fd5b50600e54600f5461076b919082565b604080519283526020830191909152016103d5565b34801561078c57600080fd5b506103b161079b366004612e41565b611398565b3480156107ac57600080fd5b50610469600b5481565b3480156107c257600080fd5b506103b16107d1366004612e41565b611577565b3480156107e257600080fd5b506005546001600160a01b031661050e565b34801561080057600080fd5b5060095461050e906001600160a01b031681565b34801561082057600080fd5b506103b161082f366004612ec8565b6115d0565b34801561084057600080fd5b506103c8611611565b34801561085557600080fd5b506103b1610864366004612d8e565b611620565b34801561087557600080fd5b506103b1610884366004612ea6565b611632565b34801561089557600080fd5b506103fe6108a4366004612e15565b6116c2565b3480156108b557600080fd5b5060075461050e906001600160a01b031681565b3480156108d557600080fd5b506104696108e4366004612e41565b61176c565b3480156108f557600080fd5b506103fe610904366004612e15565b6117b8565b34801561091557600080fd5b506103b1610924366004612ea6565b6117c6565b34801561093557600080fd5b506103fe610944366004612e41565b60146020526000908152604090205460ff1681565b34801561096557600080fd5b506103b1610974366004612ee5565b611856565b34801561098557600080fd5b506103fe610994366004612e41565b60166020526000908152604090205460ff1681565b3480156109b557600080fd5b506103b16109c4366004612ee5565b611876565b3480156109d557600080fd5b506103b16109e4366004612d8e565b611954565b3480156109f557600080fd5b506103b1610a04366004612ee5565b611a51565b348015610a1557600080fd5b506103b1610a24366004612e41565b611aea565b348015610a3557600080fd5b506103b1610a44366004612d8e565b611b21565b348015610a5557600080fd5b50610469610a64366004612efe565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a9b57600080fd5b506103b1610aaa366004612ec8565b611b54565b348015610abb57600080fd5b50610469600a5481565b348015610ad157600080fd5b506103b1610ae0366004612e41565b611b95565b348015610af157600080fd5b5060105460115461076b919082565b348015610b0c57600080fd5b5060065461050e906001600160a01b031681565b348015610b2c57600080fd5b50610469600d5481565b610b3e611c22565b60085460405162241fbd60e51b81526001600160a01b038481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610b8d57600080fd5b505af1158015610ba1573d6000803e3d6000fd5b505050505050565b606060038054610bb890612f2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610be490612f2c565b8015610c315780601f10610c0657610100808354040283529160200191610c31565b820191906000526020600020905b815481529060010190602001808311610c1457829003601f168201915b5050505050905090565b600033610c49818585611c7c565b60019150505b92915050565b610c5d611c22565b806001600160a01b031663a9059cbb610c7e6005546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610cc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce69190612f66565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610d31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d559190612f7f565b5050565b610d61611c22565b600754600160b81b900460ff1615610dc05760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c726561647920656e61626c656400000000000000000060448201526064015b60405180910390fd5b600780547fffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff16600160b81b179055565b610df8611c22565b60095460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114610e49576040519150601f19603f3d011682016040523d82523d6000602084013e610e4e565b606091505b5050905080610d5557600080fd5b610e64611c22565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600033610ea1858285611dd4565b610eac858585611e66565b506001949350505050565b610ebf611c22565b6008546040517f44b6bd9e0000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152909116906344b6bd9e906024015b600060405180830381600087803b158015610f2057600080fd5b505af1158015610f34573d6000803e3d6000fd5b5050505050565b600854604080517f85a6b3ae00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916385a6b3ae9160048083019260209291908290030181865afa158015610f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc29190612f66565b905090565b610fcf611c22565b6001600160a01b03821660009081526014602052604090205481151560ff909116151503610ffc57600080fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190610c499082908690611061908790612fb2565b611c7c565b600754600160b01b900460ff166110bf5760405162461bcd60e51b815260206004820152601160248201527f436c61696d206e6f7420656e61626c65640000000000000000000000000000006044820152606401610db7565b6008546040517f807ab4f70000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b039091169063807ab4f7906024016020604051808303816000875af1158015611122573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111469190612f7f565b50565b6008546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a08231906024015b602060405180830381865afa158015611195573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4f9190612f66565b6111c1611c22565b6111cb60006124ce565b565b6111d5611c22565b6207a12082101561124e5760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d6178627579206c6f776572207468616e20302e3560448201527f25200000000000000000000000000000000000000000000000000000000000006064820152608401610db7565b6207a1208110156112c75760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f7420736574206d617873656c6c206c6f776572207468616e20302e60448201527f35252000000000000000000000000000000000000000000000000000000000006064820152608401610db7565b6112d982670de0b6b3a7640000612fc5565b600b556112ee81670de0b6b3a7640000612fc5565b600c555050565b6008546040517ffbcbc0f10000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152600092839283928392839291169063fbcbc0f19060240160a060405180830381865afa158015611362573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113869190612fdc565b939a9299509097509550909350915050565b6113a0611c22565b60405162241fbd60e51b81526001600160a01b03821660048201819052600160248301528291630483f7a090604401600060405180830381600087803b1580156113e957600080fd5b505af11580156113fd573d6000803e3d6000fd5b505060405162241fbd60e51b8152306004820152600160248201526001600160a01b0384169250630483f7a09150604401600060405180830381600087803b15801561144857600080fd5b505af115801561145c573d6000803e3d6000fd5b50505050806001600160a01b0316630483f7a06114816005546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b1580156114c957600080fd5b505af11580156114dd573d6000803e3d6000fd5b505060065460405162241fbd60e51b81526001600160a01b039182166004820152600160248201529084169250630483f7a09150604401600060405180830381600087803b15801561152e57600080fd5b505af1158015611542573d6000803e3d6000fd5b50506008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039490941693909317909255505050565b61157f611c22565b6008546040517f497ec8230000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0383811660248301529091169063497ec82390604401610f06565b6115d8611c22565b60078054911515600160b01b027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b606060048054610bb890612f2c565b611628611c22565b610d55828261252d565b61163a611c22565b60146116468284612fb2565b11156116945760405162461bcd60e51b815260206004820152601260248201527f466565206d757374206265203c3d2032302500000000000000000000000000006044820152606401610db7565b60408051808201909152828152602001819052601082905560118190556116bb8183612fb2565b6013555050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561175f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610db7565b610eac8286868403611c7c565b6008546040517fa8b9d2400000000000000000000000000000000000000000000000000000000081526001600160a01b038381166004830152600092169063a8b9d24090602401611178565b600033610c49818585611e66565b6117ce611c22565b60146117da8284612fb2565b11156118285760405162461bcd60e51b815260206004820152601260248201527f466565206d757374206265203c3d2032302500000000000000000000000000006044820152606401610db7565b60408051808201909152828152602001819052600e829055600f81905561184f8183612fb2565b6012555050565b61185e611c22565b61187081670de0b6b3a7640000612fc5565b600a5550565b61187e611c22565b6007546008546040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b0391821660248201526044810184905260009291909116906323b872dd906064016020604051808303816000875af11580156118f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191b9190612f7f565b90508015610d5557600854604051633b79ab6760e21b8152600481018490526001600160a01b039091169063ede6ad9c90602401610b73565b61195c611c22565b6001600160a01b03821660009081526015602052604090205481151560ff9091161515036119f25760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f662060448201527f276578636c7564656427000000000000000000000000000000000000000000006064820152608401610db7565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611a59611c22565b620f4240811015611ad25760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f31250000000000000000000000000000000000000000000000000000000000006064820152608401610db7565b611ae481670de0b6b3a7640000612fc5565b600d5550565b611af2611c22565b6006805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b611b29611c22565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b611b5c611c22565b60078054911515600160a81b027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b611b9d611c22565b6001600160a01b038116611c195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610db7565b611146816124ce565b6005546001600160a01b031633146111cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610db7565b6001600160a01b038316611cf75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610db7565b6001600160a01b038216611d735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610db7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114611e605781811015611e535760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610db7565b611e608484848403611c7c565b50505050565b6001600160a01b038316611eca5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610db7565b6001600160a01b038216611f2c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610db7565b6001600160a01b03831660009081526015602052604090205460ff16158015611f6e57506001600160a01b03821660009081526015602052604090205460ff16155b8015611f845750600754600160a01b900460ff16155b1561216157600754600160b81b900460ff16611fe25760405162461bcd60e51b815260206004820152601260248201527f54726164696e67206e6f742061637469766500000000000000000000000000006044820152606401610db7565b6001600160a01b03821660009081526016602052604090205460ff161561205a57600c548111156120555760405162461bcd60e51b815260206004820152601f60248201527f596f752061726520657863656564696e67206d617853656c6c416d6f756e74006044820152606401610db7565b6120cd565b6001600160a01b03831660009081526016602052604090205460ff16156120cd57600b548111156120cd5760405162461bcd60e51b815260206004820152601e60248201527f596f752061726520657863656564696e67206d6178427579416d6f756e7400006044820152606401610db7565b6001600160a01b03821660009081526017602052604090205460ff1661216157600d546001600160a01b0383166000908152602081905260409020546121139083612fb2565b11156121615760405162461bcd60e51b815260206004820152601b60248201527f556e61626c6520746f20657863656564204d61782057616c6c657400000000006044820152606401610db7565b8060000361217a5761217583836000612692565b505050565b30600090815260208190526040902054600a54811080159081906121a85750600754600160a01b900460ff16155b80156121bd5750600754600160a81b900460ff165b80156121e157506001600160a01b03841660009081526016602052604090205460ff165b801561220657506001600160a01b03851660009081526015602052604090205460ff16155b801561222b57506001600160a01b03841660009081526015602052604090205460ff16155b15612264576007805460ff60a01b1916600160a01b1790556013541561225657612256600a5461284d565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526015602052604090205460ff600160a01b9092048216159116806122b257506001600160a01b03851660009081526015602052604090205460ff165b156122bb575060005b6001600160a01b03851660009081526016602052604090205460ff161580156122fd57506001600160a01b03861660009081526016602052604090205460ff16155b15612306575060005b80156123a5576001600160a01b03851660009081526016602052604081205460ff161561234e5760646013548661233d9190612fc5565b6123479190613025565b905061238c565b6001600160a01b03871660009081526016602052604090205460ff161561238c5760646012548661237f9190612fc5565b6123899190613025565b90505b6123968186613047565b94506123a3873083612692565b505b6123b0868686612692565b6008546001600160a01b031663e30443bc876123e1816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561242757600080fd5b505af1925050508015612438575060015b506008546001600160a01b031663e30443bc8661246a816001600160a01b031660009081526020819052604090205490565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156124b057600080fd5b505af19250505080156124c1575060015b15610ba157505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526016602052604090205481151560ff9091161515036125c35760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610db7565b6001600160a01b0382166000908152601660205260409020805460ff191682158015919091179091556126565760085460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b15801561263d57600080fd5b505af1158015612651573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166126f65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610db7565b6001600160a01b0382166127585760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610db7565b6001600160a01b038316600090815260208190526040902054818110156127e75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610db7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611e60565b6013546010546000916002916128639085612fc5565b61286d9190613025565b6128779190613025565b905060006002601354601060000154856128919190612fc5565b61289b9190613025565b6128a59190613025565b6013546011549192506000916128bb9086612fc5565b6128c59190613025565b90506128d083612b52565b4780156128e1576128e18382612ca8565b6128ea82612b52565b47808015612997576009546040516000916001600160a01b03169083908381818185875af1925050503d806000811461293f576040519150601f19603f3d011682016040523d82523d6000602084013e612944565b606091505b50509050806129955760405162461bcd60e51b815260206004820181905260248201527f4661696c656420746f2073656e642045544820746f206465762077616c6c65746044820152606401610db7565b505b6007546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156129e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a049190612f66565b9050808015612b47576007546008546040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015260248101849052600092919091169063a9059cbb906044016020604051808303816000875af1158015612a80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aa49190612f7f565b90508015612b4557600854604051633b79ab6760e21b8152600481018490526001600160a01b039091169063ede6ad9c90602401600060405180830381600087803b158015612af257600080fd5b505af1158015612b06573d6000803e3d6000fd5b5050604080518d8152602081018690527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3935001905060405180910390a15b505b505050505050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612b8757612b8761305a565b6001600160a01b03928316602091820292909201810191909152600654604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015612bf9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c1d9190613070565b81600181518110612c3057612c3061305a565b6001600160a01b039283166020918202929092010152600654612c569130911684611c7c565b6006546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063791ac94790610b7390859060009086903090429060040161308d565b600654612cc09030906001600160a01b031684611c7c565b6006546040517ff305d719000000000000000000000000000000000000000000000000000000008152306004820181905260248201859052600060448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af1158015612d46573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f3491906130fe565b6001600160a01b038116811461114657600080fd5b801515811461114657600080fd5b60008060408385031215612da157600080fd5b8235612dac81612d6b565b91506020830135612dbc81612d80565b809150509250929050565b600060208083528351808285015260005b81811015612df457858101830151858201604001528201612dd8565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215612e2857600080fd5b8235612e3381612d6b565b946020939093013593505050565b600060208284031215612e5357600080fd5b8135612e5e81612d6b565b9392505050565b600080600060608486031215612e7a57600080fd5b8335612e8581612d6b565b92506020840135612e9581612d6b565b929592945050506040919091013590565b60008060408385031215612eb957600080fd5b50508035926020909101359150565b600060208284031215612eda57600080fd5b8135612e5e81612d80565b600060208284031215612ef757600080fd5b5035919050565b60008060408385031215612f1157600080fd5b8235612f1c81612d6b565b91506020830135612dbc81612d6b565b600181811c90821680612f4057607f821691505b602082108103612f6057634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612f7857600080fd5b5051919050565b600060208284031215612f9157600080fd5b8151612e5e81612d80565b634e487b7160e01b600052601160045260246000fd5b80820180821115610c4f57610c4f612f9c565b8082028115828204841417610c4f57610c4f612f9c565b600080600080600060a08688031215612ff457600080fd5b8551612fff81612d6b565b602087015160408801516060890151608090990151929a91995097965090945092505050565b60008261304257634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610c4f57610c4f612f9c565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561308257600080fd5b8151612e5e81612d6b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156130dd5784516001600160a01b0316835293830193918301916001016130b8565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561311357600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220fe7446618970195711c02725e1d4b435cdfbef3f165808024173ea3ab326b99d64736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000004f3d625f78e6b8c4c6b34f201f6b2dae69240754

-----Decoded View---------------
Arg [0] : _developerwallet (address): 0x4f3D625F78e6b8c4C6B34F201f6B2Dae69240754

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000004f3d625f78e6b8c4c6b34f201f6b2dae69240754


Deployed Bytecode Sourcemap

37492:15100:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43579:170;;;;;;;;;;-1:-1:-1;43579:170:0;;;;;:::i;:::-;;:::i;:::-;;15525:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17885:201;;;;;;;;;;-1:-1:-1;17885:201:0;;;;;:::i;:::-;;:::i;:::-;;;1721:14:1;;1714:22;1696:41;;1684:2;1669:18;17885:201:0;1556:187:1;42270:209:0;;;;;;;;;;-1:-1:-1;42270:209:0;;;;;:::i;:::-;;:::i;44595:148::-;;;;;;;;;;;;;:::i;42572:204::-;;;;;;;;;;;;;:::i;16654:108::-;;;;;;;;;;-1:-1:-1;16742:12:0;;16654:108;;;2146:25:1;;;2134:2;2119:18;16654:108:0;2000:177:1;38167:32:0;;;;;;;;;;;;;;;;43757:98;;;;;;;;;;-1:-1:-1;43757:98:0;;;;;:::i;:::-;;:::i;18666:261::-;;;;;;;;;;-1:-1:-1;18666:261:0;;;;;:::i;:::-;;:::i;37663:24::-;;;;;;;;;;-1:-1:-1;37663:24:0;;;;-1:-1:-1;;;37663:24:0;;;;;;37729:46;;;;;;;;;;-1:-1:-1;37729:46:0;;;;-1:-1:-1;;;;;37729:46:0;;;;;;-1:-1:-1;;;;;2839:55:1;;;2821:74;;2809:2;2794:18;37729:46:0;2643:258:1;45102:117:0;;;;;;;;;;-1:-1:-1;45102:117:0;;;;;:::i;:::-;;:::i;46020:141::-;;;;;;;;;;;;;:::i;16496:93::-;;;;;;;;;;-1:-1:-1;16496:93:0;;16579:2;3048:36:1;;3036:2;3021:18;16496:93:0;2906:184:1;44956:138:0;;;;;;;;;;-1:-1:-1;44956:138:0;;;;;:::i;:::-;;:::i;19336:238::-;;;;;;;;;;-1:-1:-1;19336:238:0;;;;;:::i;:::-;;:::i;38129:31::-;;;;;;;;;;;;;;;;37694:26;;;;;;;;;;-1:-1:-1;37694:26:0;;;;-1:-1:-1;;;37694:26:0;;;;;;41155:149;;;;;;;;;;;;;:::i;46169:126::-;;;;;;;;;;-1:-1:-1;46169:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;46259:28:0;46235:4;46259:28;;;:19;:28;;;;;;;;;46169:126;37891:28;;;;;;;;;;;;;;;;46495:171;;;;;;;;;;-1:-1:-1;46495:171:0;;;;;:::i;:::-;;:::i;37626:30::-;;;;;;;;;;-1:-1:-1;37626:30:0;;;;-1:-1:-1;;;37626:30:0;;;;;;16825:127;;;;;;;;;;-1:-1:-1;16825:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;16926:18:0;16899:7;16926:18;;;;;;;;;;;;16825:127;12182:103;;;;;;;;;;;;;:::i;41505:341::-;;;;;;;;;;-1:-1:-1;41505:341:0;;;;;:::i;:::-;;:::i;46674:278::-;;;;;;;;;;-1:-1:-1;46674:278:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3625:55:1;;;3607:74;;3712:2;3697:18;;3690:34;;;;3740:18;;;3733:34;;;;3798:2;3783:18;;3776:34;3841:3;3826:19;;3819:35;3594:3;3579:19;46674:278:0;3348:512:1;38038:37:0;;;;;;;;;;-1:-1:-1;38038:37:0;;;;;;;;;;;;;4039:25:1;;;4095:2;4080:18;;4073:34;;;;4012:18;38038:37:0;3865:248:1;40525:578:0;;;;;;;;;;-1:-1:-1;40525:578:0;;;;;:::i;:::-;;:::i;37857:27::-;;;;;;;;;;;;;;;;42784:160;;;;;;;;;;-1:-1:-1;42784:160:0;;;;;:::i;:::-;;:::i;11541:87::-;;;;;;;;;;-1:-1:-1;11614:6:0;;-1:-1:-1;;;;;11614:6:0;11541:87;;37784:24;;;;;;;;;;-1:-1:-1;37784:24:0;;;;-1:-1:-1;;;;;37784:24:0;;;44751:95;;;;;;;;;;-1:-1:-1;44751:95:0;;;;;:::i;:::-;;:::i;15744:104::-;;;;;;;;;;;;;:::i;45289:171::-;;;;;;;;;;-1:-1:-1;45289:171:0;;;;;:::i;:::-;;:::i;44105:237::-;;;;;;;;;;-1:-1:-1;44105:237:0;;;;;:::i;:::-;;:::i;20077:436::-;;;;;;;;;;-1:-1:-1;20077:436:0;;;;;:::i;:::-;;:::i;37570:19::-;;;;;;;;;;-1:-1:-1;37570:19:0;;;;-1:-1:-1;;;;;37570:19:0;;;46303:184;;;;;;;;;;-1:-1:-1;46303:184:0;;;;;:::i;:::-;;:::i;17158:193::-;;;;;;;;;;-1:-1:-1;17158:193:0;;;;;:::i;:::-;;:::i;43863:234::-;;;;;;;;;;-1:-1:-1;43863:234:0;;;;;:::i;:::-;;:::i;38208:38::-;;;;;;;;;;-1:-1:-1;38208:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;41854:119;;;;;;;;;;-1:-1:-1;41854:119:0;;;;;:::i;:::-;;:::i;38314:57::-;;;;;;;;;;-1:-1:-1;38314:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;51250:320;;;;;;;;;;-1:-1:-1;51250:320:0;;;;;:::i;:::-;;:::i;43192:327::-;;;;;;;;;;-1:-1:-1;43192:327:0;;;;;:::i;:::-;;:::i;41312:185::-;;;;;;;;;;-1:-1:-1;41312:185:0;;;;;:::i;:::-;;:::i;42952:113::-;;;;;;;;;;-1:-1:-1;42952:113:0;;;;;:::i;:::-;;:::i;41981:165::-;;;;;;;;;;-1:-1:-1;41981:165:0;;;;;:::i;:::-;;:::i;17414:151::-;;;;;;;;;;-1:-1:-1;17414:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;17530:18:0;;;17503:7;17530:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17414:151;44488:99;;;;;;;;;;-1:-1:-1;44488:99:0;;;;;:::i;:::-;;:::i;37817:33::-;;;;;;;;;;;;;;;;12440:201;;;;;;;;;;-1:-1:-1;12440:201:0;;;;;:::i;:::-;;:::i;38082:38::-;;;;;;;;;;-1:-1:-1;38082:38:0;;;;;;;;;37535:28;;;;;;;;;;-1:-1:-1;37535:28:0;;;;-1:-1:-1;;;;;37535:28:0;;;37926:24;;;;;;;;;;;;;;;;43579:170;11427:13;:11;:13::i;:::-;43689:15:::1;::::0;:52:::1;::::0;-1:-1:-1;;;43689:52:0;;-1:-1:-1;;;;;5613:55:1;;;43689:52:0::1;::::0;::::1;5595:74:1::0;5712:14;;5705:22;5685:18;;;5678:50;43689:15:0;;::::1;::::0;:36:::1;::::0;5568:18:1;;43689:52:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;43579:170:::0;;:::o;15525:100::-;15579:13;15612:5;15605:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15525:100;:::o;17885:201::-;17968:4;7649:10;18024:32;7649:10;18040:7;18049:6;18024:8;:32::i;:::-;18074:4;18067:11;;;17885:201;;;;;:::o;42270:209::-;11427:13;:11;:13::i;:::-;42356:12:::1;-1:-1:-1::0;;;;;42349:29:0::1;;42393:7;11614:6:::0;;-1:-1:-1;;;;;11614:6:0;;11541:87;42393:7:::1;42415:45;::::0;-1:-1:-1;;;42415:45:0;;42454:4:::1;42415:45;::::0;::::1;2821:74:1::0;-1:-1:-1;;;;;42415:30:0;::::1;::::0;::::1;::::0;2794:18:1;;42415:45:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42349:122;::::0;-1:-1:-1;;;;;;42349:122:0::1;::::0;;;;;;-1:-1:-1;;;;;6562:55:1;;;42349:122:0::1;::::0;::::1;6544:74:1::0;6634:18;;;6627:34;6517:18;;42349:122:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42270:209:::0;:::o;44595:148::-;11427:13;:11;:13::i;:::-;44661:14:::1;::::0;-1:-1:-1;;;44661:14:0;::::1;;;44660:15;44652:51;;;::::0;-1:-1:-1;;;44652:51:0;;7124:2:1;44652:51:0::1;::::0;::::1;7106:21:1::0;7163:2;7143:18;;;7136:30;7202:25;7182:18;;;7175:53;7245:18;;44652:51:0::1;;;;;;;;;44714:14;:21:::0;;;::::1;-1:-1:-1::0;;;44714:21:0::1;::::0;;44595:148::o;42572:204::-;11427:13;:11;:13::i;:::-;42703:9:::1;::::0;42695:46:::1;::::0;42644:21:::1;::::0;42623:18:::1;::::0;-1:-1:-1;;;;;42703:9:0;;::::1;::::0;42644:21;;42623:18;42695:46;42623:18;42695:46;42644:21;42703:9;42695:46:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42676:65;;;42760:7;42752:16;;;::::0;::::1;43757:98:::0;11427:13;:11;:13::i;:::-;43826:9:::1;:21:::0;;-1:-1:-1;;43826:21:0::1;-1:-1:-1::0;;;;;43826:21:0;;;::::1;::::0;;;::::1;::::0;;43757:98::o;18666:261::-;18763:4;7649:10;18821:38;18837:4;7649:10;18852:6;18821:15;:38::i;:::-;18870:27;18880:4;18886:2;18890:6;18870:9;:27::i;:::-;-1:-1:-1;18915:4:0;;18666:261;-1:-1:-1;;;;18666:261:0:o;45102:117::-;11427:13;:11;:13::i;:::-;45171:15:::1;::::0;:40:::1;::::0;;;;-1:-1:-1;;;;;2839:55:1;;;45171:40:0::1;::::0;::::1;2821:74:1::0;45171:15:0;;::::1;::::0;:30:::1;::::0;2794:18:1;;45171:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;45102:117:::0;:::o;46020:141::-;46110:15;;:43;;;;;;;;46083:7;;-1:-1:-1;;;;;46110:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46103:50;;46020:141;:::o;44956:138::-;11427:13;:11;:13::i;:::-;-1:-1:-1;;;;;45035:11:0;::::1;;::::0;;;:6:::1;:11;::::0;;;;;:20;::::1;;:11;::::0;;::::1;:20;;::::0;45027:29:::1;;;::::0;::::1;;-1:-1:-1::0;;;;;45067:11:0;;;::::1;;::::0;;;:6:::1;:11;::::0;;;;:19;;-1:-1:-1;;45067:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44956:138::o;19336:238::-;7649:10;19424:4;17530:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;17530:27:0;;;;;;;;;;19424:4;;7649:10;19480:64;;7649:10;;17530:27;;19505:38;;19533:10;;19505:38;:::i;:::-;19480:8;:64::i;41155:149::-;41200:12;;-1:-1:-1;;;41200:12:0;;;;41192:42;;;;-1:-1:-1;;;41192:42:0;;8005:2:1;41192:42:0;;;7987:21:1;8044:2;8024:18;;;8017:30;8083:19;8063:18;;;8056:47;8120:18;;41192:42:0;7803:341:1;41192:42:0;41245:15;;:51;;;;;41284:10;41245:51;;;2821:74:1;-1:-1:-1;;;;;41245:15:0;;;;:30;;2794:18:1;;41245:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41155:149::o;46495:171::-;46624:15;;:34;;-1:-1:-1;;;46624:34:0;;-1:-1:-1;;;;;2839:55:1;;;46624:34:0;;;2821:74:1;46592:7:0;;46624:15;;:25;;2794:18:1;;46624:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;12182:103::-;11427:13;:11;:13::i;:::-;12247:30:::1;12274:1;12247:18;:30::i;:::-;12182:103::o:0;41505:341::-;11427:13;:11;:13::i;:::-;41633:6:::1;41623;:16;;41615:63;;;::::0;-1:-1:-1;;;41615:63:0;;8598:2:1;41615:63:0::1;::::0;::::1;8580:21:1::0;8637:2;8617:18;;;8610:30;8676:34;8656:18;;;8649:62;8747:4;8727:18;;;8720:32;8769:19;;41615:63:0::1;8396:398:1::0;41615:63:0::1;41708:6;41697:7;:17;;41689:65;;;::::0;-1:-1:-1;;;41689:65:0;;9001:2:1;41689:65:0::1;::::0;::::1;8983:21:1::0;9040:2;9020:18;;;9013:30;9079:34;9059:18;;;9052:62;9150:5;9130:18;;;9123:33;9173:19;;41689:65:0::1;8799:399:1::0;41689:65:0::1;41780:15;:6:::0;41789::::1;41780:15;:::i;:::-;41765:12;:30:::0;41822:16:::1;:7:::0;41832:6:::1;41822:16;:::i;:::-;41806:13;:32:::0;-1:-1:-1;;41505:341:0:o;46674:278::-;46909:15;;:35;;;;;-1:-1:-1;;;;;2839:55:1;;;46909:35:0;;;2821:74:1;46779:7:0;;;;;;;;;;46909:15;;;:26;;2794:18:1;;46909:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46902:42;;;;-1:-1:-1;46902:42:0;;-1:-1:-1;46902:42:0;-1:-1:-1;46902:42:0;;-1:-1:-1;46674:278:0;-1:-1:-1;;46674:278:0:o;40525:578::-;11427:13;:11;:13::i;:::-;40728:111:::1;::::0;-1:-1:-1;;;40728:111:0;;-1:-1:-1;;;;;40728:39:0;::::1;:111;::::0;::::1;5595:74:1::0;;;40824:4:0::1;5685:18:1::0;;;5678:50;40695:10:0;;40728:39:::1;::::0;5568:18:1;;40728:111:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;40850:60:0::1;::::0;-1:-1:-1;;;40850:60:0;;40898:4:::1;40850:60;::::0;::::1;5595:74:1::0;40905:4:0::1;5685:18:1::0;;;5678:50;-1:-1:-1;;;;;40850:39:0;::::1;::::0;-1:-1:-1;40850:39:0::1;::::0;-1:-1:-1;5568:18:1;;40850:60:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40921:18;-1:-1:-1::0;;;;;40921:39:0::1;;40961:7;11614:6:::0;;-1:-1:-1;;;;;11614:6:0;;11541:87;40961:7:::1;40921:54;::::0;-1:-1:-1;;;;;;40921:54:0::1;::::0;;;;;;-1:-1:-1;;;;;5613:55:1;;;40921:54:0::1;::::0;::::1;5595:74:1::0;40970:4:0::1;5685:18:1::0;;;5678:50;5568:18;;40921:54:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;41034:6:0::1;::::0;40986:62:::1;::::0;-1:-1:-1;;;40986:62:0;;-1:-1:-1;;;;;41034:6:0;;::::1;40986:62;::::0;::::1;5595:74:1::0;41034:6:0;5685:18:1;;;5678:50;40986:39:0;;::::1;::::0;-1:-1:-1;40986:39:0::1;::::0;-1:-1:-1;5568:18:1;;40986:62:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;41059:15:0::1;:36:::0;;-1:-1:-1;;41059:36:0::1;-1:-1:-1::0;;;;;41059:36:0;;;::::1;::::0;;;::::1;::::0;;;-1:-1:-1;;;40525:578:0:o;42784:160::-;11427:13;:11;:13::i;:::-;42870:15:::1;::::0;:66:::1;::::0;;;;42911:10:::1;42870:66;::::0;::::1;10113:34:1::0;-1:-1:-1;;;;;10183:15:1;;;10163:18;;;10156:43;42870:15:0;;::::1;::::0;:40:::1;::::0;10025:18:1;;42870:66:0::1;9878:327:1::0;44751:95:0;11427:13;:11;:13::i;:::-;44818:12:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;44818:20:0::1;::::0;;;::::1;::::0;;;::::1;::::0;;44751:95::o;15744:104::-;15800:13;15833:7;15826:14;;;;;:::i;45289:171::-;11427:13;:11;:13::i;:::-;45408:44:::1;45437:7;45446:5;45408:28;:44::i;44105:237::-:0;11427:13;:11;:13::i;:::-;44220:2:::1;44199:17;44212:4:::0;44199:10;:17:::1;:::i;:::-;:23;;44191:54;;;::::0;-1:-1:-1;;;44191:54:0;;10412:2:1;44191:54:0::1;::::0;::::1;10394:21:1::0;10451:2;10431:18;;;10424:30;10490:20;10470:18;;;10463:48;10528:18;;44191:54:0::1;10210:342:1::0;44191:54:0::1;44268:23;::::0;;;;::::1;::::0;;;;;;::::1;;::::0;;;44256:9:::1;:35:::0;;;;;;;44317:17:::1;44286:4:::0;44274:10;44317:17:::1;:::i;:::-;44302:12;:32:::0;-1:-1:-1;;44105:237:0:o;20077:436::-;7649:10;20170:4;17530:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;17530:27:0;;;;;;;;;;20170:4;;7649:10;20317:15;20297:16;:35;;20289:85;;;;-1:-1:-1;;;20289:85:0;;10759:2:1;20289:85:0;;;10741:21:1;10798:2;10778:18;;;10771:30;10837:34;10817:18;;;10810:62;10908:7;10888:18;;;10881:35;10933:19;;20289:85:0;10557:401:1;20289:85:0;20410:60;20419:5;20426:7;20454:15;20435:16;:34;20410:8;:60::i;46303:184::-;46432:15;;:47;;;;;-1:-1:-1;;;;;2839:55:1;;;46432:47:0;;;2821:74:1;46400:7:0;;46432:15;;:38;;2794:18:1;;46432:47:0;2643:258:1;17158:193:0;17237:4;7649:10;17293:28;7649:10;17310:2;17314:6;17293:9;:28::i;43863:234::-;11427:13;:11;:13::i;:::-;43977:2:::1;43956:17;43969:4:::0;43956:10;:17:::1;:::i;:::-;:23;;43948:54;;;::::0;-1:-1:-1;;;43948:54:0;;10412:2:1;43948:54:0::1;::::0;::::1;10394:21:1::0;10451:2;10431:18;;;10424:30;10490:20;10470:18;;;10463:48;10528:18;;43948:54:0::1;10210:342:1::0;43948:54:0::1;44024:23;::::0;;;;::::1;::::0;;;;;;::::1;;::::0;;;44013:8:::1;:34:::0;;;;;;;44072:17:::1;44042:4:::0;44030:10;44072:17:::1;:::i;:::-;44058:11;:31:::0;-1:-1:-1;;43863:234:0:o;41854:119::-;11427:13;:11;:13::i;:::-;41950:15:::1;:6:::0;41959::::1;41950:15;:::i;:::-;41929:18;:36:::0;-1:-1:-1;41854:119:0:o;51250:320::-;11427:13;:11;:13::i;:::-;51353:4:::1;::::0;51419:15:::1;::::0;51346:121:::1;::::0;;;;51386:10:::1;51346:121;::::0;::::1;11226:34:1::0;-1:-1:-1;;;;;51419:15:0;;::::1;11276:18:1::0;;;11269:43;11328:18;;;11321:34;;;51331:12:0::1;::::0;51353:4;;;::::1;::::0;51346:25:::1;::::0;11138:18:1;;51346:121:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51331:136;;51482:7;51478:85;;;51506:15;::::0;:45:::1;::::0;-1:-1:-1;;;51506:45:0;;::::1;::::0;::::1;2146:25:1::0;;;-1:-1:-1;;;;;51506:15:0;;::::1;::::0;:37:::1;::::0;2119:18:1;;51506:45:0::1;2000:177:1::0;43192:327:0;11427:13;:11;:13::i;:::-;-1:-1:-1;;;;;43299:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;43277:132:::1;;;::::0;-1:-1:-1;;;43277:132:0;;11568:2:1;43277:132:0::1;::::0;::::1;11550:21:1::0;11607:2;11587:18;;;11580:30;11646:34;11626:18;;;11619:62;11717:12;11697:18;;;11690:40;11747:19;;43277:132:0::1;11366:406:1::0;43277:132:0::1;-1:-1:-1::0;;;;;43420:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;43420:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;43477:34;;1696:41:1;;;43477:34:0::1;::::0;1669:18:1;43477:34:0::1;;;;;;;43192:327:::0;;:::o;41312:185::-;11427:13;:11;:13::i;:::-;41405:7:::1;41395:6;:17;;41387:64;;;::::0;-1:-1:-1;;;41387:64:0;;11979:2:1;41387:64:0::1;::::0;::::1;11961:21:1::0;12018:2;11998:18;;;11991:30;12057:34;12037:18;;;12030:62;12128:4;12108:18;;;12101:32;12150:19;;41387:64:0::1;11777:398:1::0;41387:64:0::1;41474:15;:6:::0;41483::::1;41474:15;:::i;:::-;41462:9;:27:::0;-1:-1:-1;41312:185:0:o;42952:113::-;11427:13;:11;:13::i;:::-;43023:6:::1;:34:::0;;-1:-1:-1;;43023:34:0::1;-1:-1:-1::0;;;;;43023:34:0;;;::::1;::::0;;;::::1;::::0;;42952:113::o;41981:165::-;11427:13;:11;:13::i;:::-;-1:-1:-1;;;;;42094:33:0;;;::::1;;::::0;;;:24:::1;:33;::::0;;;;:44;;-1:-1:-1;;42094:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41981:165::o;44488:99::-;11427:13;:11;:13::i;:::-;44557:11:::1;:22:::0;;;::::1;;-1:-1:-1::0;;;44557:22:0::1;::::0;;;::::1;::::0;;;::::1;::::0;;44488:99::o;12440:201::-;11427:13;:11;:13::i;:::-;-1:-1:-1;;;;;12529:22:0;::::1;12521:73;;;::::0;-1:-1:-1;;;12521:73:0;;12382:2:1;12521:73:0::1;::::0;::::1;12364:21:1::0;12421:2;12401:18;;;12394:30;12460:34;12440:18;;;12433:62;12531:8;12511:18;;;12504:36;12557:19;;12521:73:0::1;12180:402:1::0;12521:73:0::1;12605:28;12624:8;12605:18;:28::i;11706:132::-:0;11614:6;;-1:-1:-1;;;;;11614:6:0;7649:10;11770:23;11762:68;;;;-1:-1:-1;;;11762:68:0;;12789:2:1;11762:68:0;;;12771:21:1;;;12808:18;;;12801:30;12867:34;12847:18;;;12840:62;12919:18;;11762:68:0;12587:356:1;24070:346:0;-1:-1:-1;;;;;24172:19:0;;24164:68;;;;-1:-1:-1;;;24164:68:0;;13150:2:1;24164:68:0;;;13132:21:1;13189:2;13169:18;;;13162:30;13228:34;13208:18;;;13201:62;13299:6;13279:18;;;13272:34;13323:19;;24164:68:0;12948:400:1;24164:68:0;-1:-1:-1;;;;;24251:21:0;;24243:68;;;;-1:-1:-1;;;24243:68:0;;13555:2:1;24243:68:0;;;13537:21:1;13594:2;13574:18;;;13567:30;13633:34;13613:18;;;13606:62;13704:4;13684:18;;;13677:32;13726:19;;24243:68:0;13353:398:1;24243:68:0;-1:-1:-1;;;;;24324:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24376:32;;2146:25:1;;;24376:32:0;;2119:18:1;24376:32:0;;;;;;;24070:346;;;:::o;24707:419::-;-1:-1:-1;;;;;17530:18:0;;;24808:24;17530:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;24875:37:0;;24871:248;;24957:6;24937:16;:26;;24929:68;;;;-1:-1:-1;;;24929:68:0;;13958:2:1;24929:68:0;;;13940:21:1;13997:2;13977:18;;;13970:30;14036:31;14016:18;;;14009:59;14085:18;;24929:68:0;13756:353:1;24929:68:0;25041:51;25050:5;25057:7;25085:6;25066:16;:25;25041:8;:51::i;:::-;24797:329;24707:419;;;:::o;47052:2652::-;-1:-1:-1;;;;;47184:18:0;;47176:68;;;;-1:-1:-1;;;47176:68:0;;14316:2:1;47176:68:0;;;14298:21:1;14355:2;14335:18;;;14328:30;14394:34;14374:18;;;14367:62;-1:-1:-1;;;14445:18:1;;;14438:35;14490:19;;47176:68:0;14114:401:1;47176:68:0;-1:-1:-1;;;;;47263:16:0;;47255:64;;;;-1:-1:-1;;;47255:64:0;;14722:2:1;47255:64:0;;;14704:21:1;14761:2;14741:18;;;14734:30;14800:34;14780:18;;;14773:62;-1:-1:-1;;;14851:18:1;;;14844:33;14894:19;;47255:64:0;14520:399:1;47255:64:0;-1:-1:-1;;;;;47351:25:0;;;;;;:19;:25;;;;;;;;47350:26;:54;;;;-1:-1:-1;;;;;;47381:23:0;;;;;;:19;:23;;;;;;;;47380:24;47350:54;:67;;;;-1:-1:-1;47409:8:0;;-1:-1:-1;;;47409:8:0;;;;47408:9;47350:67;47332:788;;;47452:14;;-1:-1:-1;;;47452:14:0;;;;47444:45;;;;-1:-1:-1;;;47444:45:0;;15126:2:1;47444:45:0;;;15108:21:1;15165:2;15145:18;;;15138:30;15204:20;15184:18;;;15177:48;15242:18;;47444:45:0;14924:342:1;47444:45:0;-1:-1:-1;;;;;47508:29:0;;;;;;:25;:29;;;;;;;;47504:384;;;47598:13;;47588:6;:23;;47558:128;;;;-1:-1:-1;;;47558:128:0;;15473:2:1;47558:128:0;;;15455:21:1;15512:2;15492:18;;;15485:30;15551:33;15531:18;;;15524:61;15602:18;;47558:128:0;15271:355:1;47558:128:0;47504:384;;;-1:-1:-1;;;;;47712:31:0;;;;;;:25;:31;;;;;;;;47708:180;;;47802:12;;47792:6;:22;;47762:126;;;;-1:-1:-1;;;47762:126:0;;15833:2:1;47762:126:0;;;15815:21:1;15872:2;15852:18;;;15845:30;15911:32;15891:18;;;15884:60;15961:18;;47762:126:0;15631:354:1;47762:126:0;-1:-1:-1;;;;;47908:28:0;;;;;;:24;:28;;;;;;;;47903:206;;48013:9;;-1:-1:-1;;;;;16926:18:0;;16899:7;16926:18;;;;;;;;;;;47987:22;;:6;:22;:::i;:::-;:35;;47957:136;;;;-1:-1:-1;;;47957:136:0;;16192:2:1;47957:136:0;;;16174:21:1;16231:2;16211:18;;;16204:30;16270:29;16250:18;;;16243:57;16317:18;;47957:136:0;15990:351:1;47957:136:0;48136:6;48146:1;48136:11;48132:93;;48164:28;48180:4;48186:2;48190:1;48164:15;:28::i;:::-;47052:2652;;;:::o;48132:93::-;48286:4;48237:28;16926:18;;;;;;;;;;;48342;;48318:42;;;;;;;48391:33;;-1:-1:-1;48416:8:0;;-1:-1:-1;;;48416:8:0;;;;48415:9;48391:33;:61;;;;-1:-1:-1;48441:11:0;;-1:-1:-1;;;48441:11:0;;;;48391:61;:107;;;;-1:-1:-1;;;;;;48469:29:0;;;;;;:25;:29;;;;;;;;48391:107;:150;;;;-1:-1:-1;;;;;;48516:25:0;;;;;;:19;:25;;;;;;;;48515:26;48391:150;:191;;;;-1:-1:-1;;;;;;48559:23:0;;;;;;:19;:23;;;;;;;;48558:24;48391:191;48373:403;;;48609:8;:15;;-1:-1:-1;;;;48609:15:0;-1:-1:-1;;;48609:15:0;;;48645:12;;:16;48641:91;;48682:34;48697:18;;48682:14;:34::i;:::-;48748:8;:16;;-1:-1:-1;;;;48748:16:0;;;48373:403;48804:8;;-1:-1:-1;;;;;48914:25:0;;48788:12;48914:25;;;:19;:25;;;;;;48804:8;-1:-1:-1;;;48804:8:0;;;;;48803:9;;48914:25;;:52;;-1:-1:-1;;;;;;48943:23:0;;;;;;:19;:23;;;;;;;;48914:52;48910:100;;;-1:-1:-1;48993:5:0;48910:100;-1:-1:-1;;;;;49027:29:0;;;;;;:25;:29;;;;;;;;49026:30;:66;;;;-1:-1:-1;;;;;;49061:31:0;;;;;;:25;:31;;;;;;;;49060:32;49026:66;49022:100;;;-1:-1:-1;49117:5:0;49022:100;49139:7;49135:370;;;-1:-1:-1;;;;;49196:29:0;;49163:14;49196:29;;;:25;:29;;;;;;;;49192:201;;;49279:3;49263:12;;49254:6;:21;;;;:::i;:::-;49253:29;;;;:::i;:::-;49244:38;;49192:201;;;-1:-1:-1;;;;;49306:31:0;;;;;;:25;:31;;;;;;;;49302:91;;;49390:3;49375:11;;49366:6;:20;;;;:::i;:::-;49365:28;;;;:::i;:::-;49356:37;;49302:91;49419:15;49428:6;49419;:15;:::i;:::-;49410:24;;49449:44;49465:4;49479;49486:6;49449:15;:44::i;:::-;49148:357;49135:370;49515:33;49531:4;49537:2;49541:6;49515:15;:33::i;:::-;49565:15;;-1:-1:-1;;;;;49565:15:0;:26;49592:4;49598:15;49592:4;-1:-1:-1;;;;;16926:18:0;16899:7;16926:18;;;;;;;;;;;;16825:127;49598:15;49565:49;;-1:-1:-1;;;;;;49565:49:0;;;;;;;-1:-1:-1;;;;;6562:55:1;;;49565:49:0;;;6544:74:1;6634:18;;;6627:34;6517:18;;49565:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49561:65;49640:15;;-1:-1:-1;;;;;49640:15:0;:26;49667:2;49671:13;49667:2;-1:-1:-1;;;;;16926:18:0;16899:7;16926:18;;;;;;;;;;;;16825:127;49671:13;49640:45;;-1:-1:-1;;;;;;49640:45:0;;;;;;;-1:-1:-1;;;;;6562:55:1;;;49640:45:0;;;6544:74:1;6634:18;;;6627:34;6517:18;;49640:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49636:61;;;47165:2539;;;47052:2652;;;:::o;12801:191::-;12894:6;;;-1:-1:-1;;;;;12911:17:0;;;-1:-1:-1;;12911:17:0;;;;;;;12944:40;;12894:6;;;12911:17;12894:6;;12944:40;;12875:16;;12944:40;12864:128;12801:191;:::o;45468:458::-;-1:-1:-1;;;;;45576:34:0;;;;;;:25;:34;;;;;;:43;;;:34;;;;:43;;;45554:149;;;;-1:-1:-1;;;45554:149:0;;16960:2:1;45554:149:0;;;16942:21:1;16999:2;16979:18;;;16972:30;17038:34;17018:18;;;17011:62;17109:26;17089:18;;;17082:54;17153:19;;45554:149:0;16758:420:1;45554:149:0;-1:-1:-1;;;;;45714:34:0;;;;;;:25;:34;;;;;:42;;-1:-1:-1;;45714:42:0;;;;;;;;;;;;45769:89;;45795:15;;:51;;-1:-1:-1;;;45795:51:0;;-1:-1:-1;;;;;5613:55:1;;;45795:51:0;;;5595:74:1;45795:15:0;5685:18:1;;;5678:50;45795:15:0;;;;:36;;5568:18:1;;45795:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45769:89;45875:43;;;;;;-1:-1:-1;;;;;45875:43:0;;;;;;;;45468:458;;:::o;20983:806::-;-1:-1:-1;;;;;21080:18:0;;21072:68;;;;-1:-1:-1;;;21072:68:0;;14316:2:1;21072:68:0;;;14298:21:1;14355:2;14335:18;;;14328:30;14394:34;14374:18;;;14367:62;-1:-1:-1;;;14445:18:1;;;14438:35;14490:19;;21072:68:0;14114:401:1;21072:68:0;-1:-1:-1;;;;;21159:16:0;;21151:64;;;;-1:-1:-1;;;21151:64:0;;14722:2:1;21151:64:0;;;14704:21:1;14761:2;14741:18;;;14734:30;14800:34;14780:18;;;14773:62;-1:-1:-1;;;14851:18:1;;;14844:33;14894:19;;21151:64:0;14520:399:1;21151:64:0;-1:-1:-1;;;;;21301:15:0;;21279:19;21301:15;;;;;;;;;;;21335:21;;;;21327:72;;;;-1:-1:-1;;;21327:72:0;;17385:2:1;21327:72:0;;;17367:21:1;17424:2;17404:18;;;17397:30;17463:34;17443:18;;;17436:62;17534:8;17514:18;;;17507:36;17560:19;;21327:72:0;17183:402:1;21327:72:0;-1:-1:-1;;;;;21435:15:0;;;:9;:15;;;;;;;;;;;21453:20;;;21435:38;;21653:13;;;;;;;;;;:23;;;;;;21705:26;;2146:25:1;;;21653:13:0;;21705:26;;2119:18:1;21705:26:0;;;;;;;21744:37;47052:2652;49712:1412;49828:12;;49805:9;:19;49771:20;;49844:1;;49796:28;;:6;:28;:::i;:::-;49795:45;;;;:::i;:::-;49794:51;;;;:::i;:::-;49771:74;;49856:32;49941:1;49925:12;;49902:9;:19;;;49893:6;:28;;;;:::i;:::-;49892:45;;;;:::i;:::-;49891:51;;;;:::i;:::-;50003:12;;49986:13;;49856:86;;-1:-1:-1;49953:20:0;;49977:22;;:6;:22;:::i;:::-;49976:39;;;;:::i;:::-;49953:62;;50028:30;50045:12;50028:16;:30::i;:::-;50096:21;50134:18;;50130:142;;50206:54;50219:24;50245:14;50206:12;:54::i;:::-;50284:30;50301:12;50284:16;:30::i;:::-;50351:21;;50460:10;;50456:171;;50514:9;;50506:42;;50488:12;;-1:-1:-1;;;;;50514:9:0;;50537:6;;50488:12;50506:42;50488:12;50506:42;50537:6;50514:9;50506:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50487:61;;;50571:7;50563:52;;;;-1:-1:-1;;;50563:52:0;;17792:2:1;50563:52:0;;;17774:21:1;;;17811:18;;;17804:30;17870:34;17850:18;;;17843:62;17922:18;;50563:52:0;17590:356:1;50563:52:0;50472:155;50456:171;50666:4;;50659:37;;-1:-1:-1;;;50659:37:0;;50690:4;50659:37;;;2821:74:1;50639:17:0;;-1:-1:-1;;;;;50666:4:0;;50659:22;;2794:18:1;;50659:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50639:57;-1:-1:-1;50639:57:0;50787:13;;50783:334;;50839:4;;50880:15;;50832:107;;;;;-1:-1:-1;;;;;50880:15:0;;;50832:107;;;6544:74:1;6634:18;;;6627:34;;;50817:12:0;;50839:4;;;;;50832:21;;6517:18:1;;50832:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50817:122;;50958:7;50954:152;;;50986:15;;:48;;-1:-1:-1;;;50986:48:0;;;;;2146:25:1;;;-1:-1:-1;;;;;50986:15:0;;;;:37;;2119:18:1;;50986:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51058:32:0;;;4039:25:1;;;4095:2;4080:18;;4073:34;;;51058:32:0;;-1:-1:-1;4012:18:1;;-1:-1:-1;51058:32:0;;;;;;;50954:152;50802:315;50783:334;49760:1364;;;;;;;;49712:1412;:::o;51578:502::-;51668:16;;;51682:1;51668:16;;;;;;;;51644:21;;51668:16;;;;;;;;;;-1:-1:-1;51668:16:0;51644:40;;51713:4;51695;51700:1;51695:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51695:23:0;;;:7;;;;;;;;;;:23;;;;51739:6;;:13;;;;;;;;:6;;;;;:11;;:13;;;;;51695:7;;51739:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51729:4;51734:1;51729:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51729:23:0;;;:7;;;;;;;;;:23;51797:6;;51765:53;;51782:4;;51797:6;51806:11;51765:8;:53::i;:::-;51857:6;;:215;;;;;-1:-1:-1;;;;;51857:6:0;;;;:57;;:215;;51929:11;;51857:6;;51999:4;;52026;;52046:15;;51857:215;;;:::i;52088:501::-;52268:6;;52236:53;;52253:4;;-1:-1:-1;;;;;52268:6:0;52277:11;52236:8;:53::i;:::-;52332:6;;:249;;;;;52395:4;52332:249;;;19980:34:1;;;20030:18;;;20023:34;;;52332:6:0;20073:18:1;;;20066:34;;;20116:18;;;20109:34;20159:19;;;20152:44;52555:15:0;20212:19:1;;;20205:35;-1:-1:-1;;;;;52332:6:0;;;;:22;;52362:9;;19891:19:1;;52332:249:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14:154:1:-;-1:-1:-1;;;;;93:5:1;89:54;82:5;79:65;69:93;;158:1;155;148:12;173:118;259:5;252:13;245:21;238:5;235:32;225:60;;281:1;278;271:12;296:382;361:6;369;422:2;410:9;401:7;397:23;393:32;390:52;;;438:1;435;428:12;390:52;477:9;464:23;496:31;521:5;496:31;:::i;:::-;546:5;-1:-1:-1;603:2:1;588:18;;575:32;616:30;575:32;616:30;:::i;:::-;665:7;655:17;;;296:382;;;;;:::o;683:548::-;795:4;824:2;853;842:9;835:21;885:6;879:13;928:6;923:2;912:9;908:18;901:34;953:1;963:140;977:6;974:1;971:13;963:140;;;1072:14;;;1068:23;;1062:30;1038:17;;;1057:2;1034:26;1027:66;992:10;;963:140;;;967:3;1152:1;1147:2;1138:6;1127:9;1123:22;1119:31;1112:42;1222:2;1215;1211:7;1206:2;1198:6;1194:15;1190:29;1179:9;1175:45;1171:54;1163:62;;;;683:548;;;;:::o;1236:315::-;1304:6;1312;1365:2;1353:9;1344:7;1340:23;1336:32;1333:52;;;1381:1;1378;1371:12;1333:52;1420:9;1407:23;1439:31;1464:5;1439:31;:::i;:::-;1489:5;1541:2;1526:18;;;;1513:32;;-1:-1:-1;;;1236:315:1:o;1748:247::-;1807:6;1860:2;1848:9;1839:7;1835:23;1831:32;1828:52;;;1876:1;1873;1866:12;1828:52;1915:9;1902:23;1934:31;1959:5;1934:31;:::i;:::-;1984:5;1748:247;-1:-1:-1;;;1748:247:1:o;2182:456::-;2259:6;2267;2275;2328:2;2316:9;2307:7;2303:23;2299:32;2296:52;;;2344:1;2341;2334:12;2296:52;2383:9;2370:23;2402:31;2427:5;2402:31;:::i;:::-;2452:5;-1:-1:-1;2509:2:1;2494:18;;2481:32;2522:33;2481:32;2522:33;:::i;:::-;2182:456;;2574:7;;-1:-1:-1;;;2628:2:1;2613:18;;;;2600:32;;2182:456::o;3095:248::-;3163:6;3171;3224:2;3212:9;3203:7;3199:23;3195:32;3192:52;;;3240:1;3237;3230:12;3192:52;-1:-1:-1;;3263:23:1;;;3333:2;3318:18;;;3305:32;;-1:-1:-1;3095:248:1:o;4349:241::-;4405:6;4458:2;4446:9;4437:7;4433:23;4429:32;4426:52;;;4474:1;4471;4464:12;4426:52;4513:9;4500:23;4532:28;4554:5;4532:28;:::i;4595:180::-;4654:6;4707:2;4695:9;4686:7;4682:23;4678:32;4675:52;;;4723:1;4720;4713:12;4675:52;-1:-1:-1;4746:23:1;;4595:180;-1:-1:-1;4595:180:1:o;4780:388::-;4848:6;4856;4909:2;4897:9;4888:7;4884:23;4880:32;4877:52;;;4925:1;4922;4915:12;4877:52;4964:9;4951:23;4983:31;5008:5;4983:31;:::i;:::-;5033:5;-1:-1:-1;5090:2:1;5075:18;;5062:32;5103:33;5062:32;5103:33;:::i;5739:437::-;5818:1;5814:12;;;;5861;;;5882:61;;5936:4;5928:6;5924:17;5914:27;;5882:61;5989:2;5981:6;5978:14;5958:18;5955:38;5952:218;;-1:-1:-1;;;6023:1:1;6016:88;6127:4;6124:1;6117:15;6155:4;6152:1;6145:15;5952:218;;5739:437;;;:::o;6181:184::-;6251:6;6304:2;6292:9;6283:7;6279:23;6275:32;6272:52;;;6320:1;6317;6310:12;6272:52;-1:-1:-1;6343:16:1;;6181:184;-1:-1:-1;6181:184:1:o;6672:245::-;6739:6;6792:2;6780:9;6771:7;6767:23;6763:32;6760:52;;;6808:1;6805;6798:12;6760:52;6840:9;6834:16;6859:28;6881:5;6859:28;:::i;7484:184::-;-1:-1:-1;;;7533:1:1;7526:88;7633:4;7630:1;7623:15;7657:4;7654:1;7647:15;7673:125;7738:9;;;7759:10;;;7756:36;;;7772:18;;:::i;9203:168::-;9276:9;;;9307;;9324:15;;;9318:22;;9304:37;9294:71;;9345:18;;:::i;9376:497::-;9482:6;9490;9498;9506;9514;9567:3;9555:9;9546:7;9542:23;9538:33;9535:53;;;9584:1;9581;9574:12;9535:53;9616:9;9610:16;9635:31;9660:5;9635:31;:::i;:::-;9730:2;9715:18;;9709:25;9774:2;9759:18;;9753:25;9818:2;9803:18;;9797:25;9862:3;9847:19;;;9841:26;9685:5;;9709:25;;-1:-1:-1;9753:25:1;9797;-1:-1:-1;9841:26:1;;-1:-1:-1;9376:497:1;-1:-1:-1;;;9376:497:1:o;16346:274::-;16386:1;16412;16402:189;;-1:-1:-1;;;16444:1:1;16437:88;16548:4;16545:1;16538:15;16576:4;16573:1;16566:15;16402:189;-1:-1:-1;16605:9:1;;16346:274::o;16625:128::-;16692:9;;;16713:11;;;16710:37;;;16727:18;;:::i;18140:184::-;-1:-1:-1;;;18189:1:1;18182:88;18289:4;18286:1;18279:15;18313:4;18310:1;18303:15;18329:251;18399:6;18452:2;18440:9;18431:7;18427:23;18423:32;18420:52;;;18468:1;18465;18458:12;18420:52;18500:9;18494:16;18519:31;18544:5;18519:31;:::i;18585:1026::-;18847:4;18895:3;18884:9;18880:19;18926:6;18915:9;18908:25;18952:2;18990:6;18985:2;18974:9;18970:18;18963:34;19033:3;19028:2;19017:9;19013:18;19006:31;19057:6;19092;19086:13;19123:6;19115;19108:22;19161:3;19150:9;19146:19;19139:26;;19200:2;19192:6;19188:15;19174:29;;19221:1;19231:218;19245:6;19242:1;19239:13;19231:218;;;19310:13;;-1:-1:-1;;;;;19306:62:1;19294:75;;19424:15;;;;19389:12;;;;19267:1;19260:9;19231:218;;;-1:-1:-1;;;;;;;19505:55:1;;;;19500:2;19485:18;;19478:83;-1:-1:-1;;;19592:3:1;19577:19;19570:35;19466:3;18585:1026;-1:-1:-1;;;18585:1026:1:o;20251:306::-;20339:6;20347;20355;20408:2;20396:9;20387:7;20383:23;20379:32;20376:52;;;20424:1;20421;20414:12;20376:52;20453:9;20447:16;20437:26;;20503:2;20492:9;20488:18;20482:25;20472:35;;20547:2;20536:9;20532:18;20526:25;20516:35;;20251:306;;;;;:::o

Swarm Source

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