ETH Price: $3,333.75 (-0.09%)
 

Overview

Max Total Supply

1,000,000 MARATHON

Holders

23

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
MARATHON

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/*
To life better, marathon. 
To blockchain, marathon. 
To happiness and weal, marathon. 
To wealth and freedom, marathon.
All is marathon
https://twitter.com/pheidippideseth
https://t.me/PheidippidesETH
*/

pragma solidity ^0.8.13;

interface IERC20 {
  function totalSupply() external view returns (uint256);
  function decimals() external view returns (uint8);
  function symbol() external view returns (string memory);
  function name() external view returns (string memory);
  function getOwner() external view returns (address);
  function balanceOf(address account) external view returns (uint256);
  function transfer(address recipient, uint256 amount) external returns (bool);
  function allowance(address _owner, address spender) external view returns (uint256);
  function approve(address spender, uint256 amount) external returns (bool);
  function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}


interface IUniswapV2ERC20 {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);
    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);
    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);
    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

interface IUniswapV2Router01 {
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getamountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getamountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getamountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getamountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}



/**
 * @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 {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = msg.sender;
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

////////// Contract /////////////

contract MARATHON is IERC20, Ownable
{
    using Address for address;
    using EnumerableSet for EnumerableSet.AddressSet;
    
    event antiBotBan(address indexed value);

    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => uint256) private _sellLock;
    mapping (address => uint256) private _buyLock;

    EnumerableSet.AddressSet private _excluded;
    EnumerableSet.AddressSet private _excludedFromSellLock;
    EnumerableSet.AddressSet private _excludedFromBuyLock;
    EnumerableSet.AddressSet private _excludedFromStaking;

    EnumerableSet.AddressSet private _isBlacklisted;

    //Token Info
    string private constant _name = 'Pheidippides';
    string private constant _symbol = 'MARATHON';
    uint8 private constant _decimals = 9;
    uint256 public constant InitialSupply= 1000000 * 10**_decimals;//equals 1 000 000 tokens

    //Used for anti-bot autoblacklist
    uint256 private tradingEnabledAt; //DO NOT CHANGE, THIS IS FOR HOLDING A TIMESTAMP
    uint256 public autoBanTime = 30; // Set to the amount of time in seconds after enable trading you want addresses to be auto blacklisted if they buy/sell/transfer in this time.
    uint256 public enableAutoBlacklist = 0; //Leave 1 if using, set to 0 if not using.
    //Divider for the MaxBalance based on circulating Supply (2%)
    uint8 public constant BalanceLimitDivider=50;
    //Divider for sellLimit based on circulating Supply (1%))
    uint16 public constant SellLimitDivider=100;
    //Sellers get locked for MaxSellLockTime (put in seconds, works better especially if changing later) so they can't dump repeatedly
    uint16 public constant MaxSellLockTime= 0 seconds;
    //Buyers get locked for MaxBuyLockTime (put in seconds, works better especially if changing later) so they can't buy repeatedly
    uint16 public constant MaxBuyLockTime= 0 seconds;
    //The time Liquidity gets locked at start and prolonged once it gets released
    uint256 private constant DefaultLiquidityLockTime= 1800;
    //DevWallets
    address public Development=payable(0x948d96c5750FE8400c88CEaC4c194a6A9c62b5b7);
    address public Marketing=payable(0x487c08A50941A16175195cbceb11460A7099028A);
    //MainNet
    address private constant UniswapV2Router=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

    //variables that track balanceLimit and sellLimit,
    //can be updated based on circulating supply and Sell- and BalanceLimitDividers
    uint256 private _circulatingSupply =InitialSupply;
    uint256 public  balanceLimit = _circulatingSupply;
    uint256 public  sellLimit = _circulatingSupply;
    uint256 private MaxBuy = 20000 * 10**_decimals; // 20,000 tokens
    
    //Tracks the current Taxes, different Taxes can be applied for buy/sell/transfer
    uint8 private _buyTax;
    uint8 private _sellTax;
    uint8 private _transferTax;

    uint8 private _burnTax;
    uint8 private _liquidityTax;
    uint8 private _stakingTax;

       
    address private _uniswapv2PairAddress; 
    IUniswapV2Router02 private  _uniswapv2Router;
    
    //Checks if address is in Team, is needed to give Team access even if contract is renounced
    //Team doesn't have access to critical Functions that could turn this into a Rugpull(Exept liquidity unlocks)
    function _isTeam(address addr) private view returns (bool){
        return addr==owner()||addr==Development||addr==Marketing;
    }

    //Constructor///////////

    constructor () {
        //contract creator gets 90% of the token to create LP-Pair
        uint256 deployerBalance=_circulatingSupply;
        _balances[msg.sender] = deployerBalance;
        emit Transfer(address(0), msg.sender, deployerBalance);
        // UniswapV2 Router
        _uniswapv2Router = IUniswapV2Router02(UniswapV2Router);
        //Creates a UniswapV2 Pair
        _uniswapv2PairAddress = IUniswapV2Factory(_uniswapv2Router.factory()).createPair(address(this), _uniswapv2Router.WETH());
        
        //Sets Buy/Sell limits
        balanceLimit=InitialSupply/BalanceLimitDivider;
        sellLimit=InitialSupply/SellLimitDivider;

        //Sets sellLockTime
        sellLockTime=0;
        
        //Sets buyLockTime
        buyLockTime=0;

        //Set Starting Tax 
        
        _buyTax=8;
        _sellTax=8;
        _transferTax=8;

        _burnTax=0;
        _liquidityTax=30;
        _stakingTax=70;

        //Team wallets and deployer are excluded from Taxes
        _excluded.add(Development);
        _excluded.add(Marketing);
        _excluded.add(msg.sender);
        //excludes UniswapV2 Router, pair, contract and burn address from staking
        _excludedFromStaking.add(address(_uniswapv2Router));
        _excludedFromStaking.add(_uniswapv2PairAddress);
        _excludedFromStaking.add(address(this));
        _excludedFromStaking.add(0x000000000000000000000000000000000000dEaD);
    
    }

    //Transfer functionality///

    //transfer function, every transfer runs through this function
    function _transfer(address sender, address recipient, uint256 amount) private{
        require(sender != address(0), "Transfer from zero");
        require(recipient != address(0), "Transfer to zero");
        
        //Manually Excluded adresses are transfering tax and lock free
        bool isExcluded = (_excluded.contains(sender) || _excluded.contains(recipient));
        
        //Transactions from and to the contract are always tax and lock free
        bool isContractTransfer=(sender==address(this) || recipient==address(this));
        
        //transfers between UniswapV2Router and UniswapV2Pair are tax and lock free
        address uniswapv2Router=address(_uniswapv2Router);
        bool isLiquidityTransfer = ((sender == _uniswapv2PairAddress && recipient == uniswapv2Router) 
        || (recipient == _uniswapv2PairAddress && sender == uniswapv2Router));

        //differentiate between buy/sell/transfer to apply different taxes/restrictions
        bool isBuy=sender==_uniswapv2PairAddress|| sender == uniswapv2Router;
        bool isSell=recipient==_uniswapv2PairAddress|| recipient == uniswapv2Router;

        //Pick transfer
        if(isContractTransfer || isLiquidityTransfer || isExcluded){
            _feelessTransfer(sender, recipient, amount);
        }
        else{ 
            //once trading is enabled, it can't be turned off again
            require(tradingEnabled,"trading not yet enabled");
            _taxedTransfer(sender,recipient,amount,isBuy,isSell);
        }
    }
    //applies taxes, checks for limits, locks generates autoLP and stakingETH, and autostakes
    function _taxedTransfer(address sender, address recipient, uint256 amount,bool isBuy,bool isSell) private{
        uint256 recipientBalance = _balances[recipient];
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "Transfer exceeds balance");

        uint8 tax;
        if(isSell){
            if(!_excludedFromSellLock.contains(sender)){
                 //If seller sold less than sellLockTime(2h 50m) ago, sell is declined, can be disabled by Team         
                require(_sellLock[sender]<=block.timestamp||sellLockDisabled,"Seller in sellLock");
                //Sets the time sellers get locked(2 hours 50 mins by default)
                _sellLock[sender]=block.timestamp+sellLockTime;
            }
            //Sells can't exceed the sell limit(21,000 Tokens at start, can be updated to circulating supply)
            require(amount<=sellLimit,"Dump protection");
            require(_isBlacklisted.contains(sender) == false, "Address blacklisted!");

            if (block.timestamp <= tradingEnabledAt + autoBanTime && enableAutoBlacklist == 1) {
                _isBlacklisted.add(sender);
                emit antiBotBan(sender);
            }

            tax=_sellTax;


        } else if(isBuy){
            if(!_excludedFromBuyLock.contains(recipient)){
                 //If buyer bought less than buyLockTime(2h 50m) ago, buy is declined, can be disabled by Team         
                require(_buyLock[recipient]<=block.timestamp||buyLockDisabled,"Buyer in buyLock");
                //Sets the time buyers get locked(2 hours 50 mins by default)
                _buyLock[recipient]=block.timestamp+buyLockTime;
            }
            //Checks If the recipient balance(excluding Taxes) would exceed Balance Limit
            require(recipientBalance+amount<=balanceLimit,"whale protection");
            require(amount <= MaxBuy,"Tx amount exceeding max buy amount");
            require(_isBlacklisted.contains(recipient) == false, "Address blacklisted!");

            if (block.timestamp <= tradingEnabledAt + autoBanTime && enableAutoBlacklist == 1) {
                _isBlacklisted.add(recipient);
                emit antiBotBan(recipient);
            }

            tax=_buyTax;

        } else {//Transfer
            //withdraws ETH when sending less or equal to 1 Token
            //that way you can withdraw without connecting to any dApp.
            //might needs higher gas limit
            if(amount<=10**(_decimals)) claimETH(sender);
            //Checks If the recipient balance(excluding Taxes) would exceed Balance Limit
            require(recipientBalance+amount<=balanceLimit,"whale protection");
            //Transfers are disabled in sell lock, this doesn't stop someone from transfering before
            //selling, but there is no satisfying solution for that, and you would need to pax additional tax
            if(!_excludedFromSellLock.contains(sender))
                require(_sellLock[sender]<=block.timestamp||sellLockDisabled,"Sender in Lock");
            
            require(_isBlacklisted.contains(sender) == false, "Sender address blacklisted!");
            require(_isBlacklisted.contains(recipient) == false, "Recipient address blacklisted!");

            if (block.timestamp <= tradingEnabledAt + autoBanTime && enableAutoBlacklist == 1) {
                _isBlacklisted.add(sender);
                emit antiBotBan(sender);
            }

            tax=_transferTax;

        }     
        //Swapping AutoLP and MarketingETH is only possible if sender is not uniswapv2 pair, 
        //if its not manually disabled, if its not already swapping and if its a Sell to avoid
        // people from causing a large price impact from repeatedly transfering when theres a large backlog of Tokens
        if((sender!=_uniswapv2PairAddress)&&(!manualConversion)&&(!_isSwappingContractModifier)&&isSell)
            _swapContractToken();
        //Calculates the exact token amount for each tax
        uint256 tokensToBeBurnt=_calculateFee(amount, tax, _burnTax);
        //staking and liquidity Tax get treated the same, only during conversion they get split
        uint256 contractToken=_calculateFee(amount, tax, _stakingTax+_liquidityTax);
        //Subtract the Taxed Tokens from the amount
        uint256 taxedAmount=amount-(tokensToBeBurnt + contractToken);

        //Removes token and handles staking
        _removeToken(sender,amount);
        
        //Adds the taxed tokens to the contract wallet
        _balances[address(this)] += contractToken;
        //Burns tokens
        _circulatingSupply-=tokensToBeBurnt;

        //Adds token and handles staking
        _addToken(recipient, taxedAmount);
        
        emit Transfer(sender,recipient,taxedAmount);

    }

    //Feeless transfer only transfers and autostakes
    function _feelessTransfer(address sender, address recipient, uint256 amount) private{
        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "Transfer exceeds balance");
        //Removes token and handles staking
        _removeToken(sender,amount);
        //Adds token and handles staking
        _addToken(recipient, amount);
        
        emit Transfer(sender,recipient,amount);

    }
    //Calculates the token that should be taxed
    function _calculateFee(uint256 amount, uint8 tax, uint8 taxPercent) private pure returns (uint256) {
        return (amount*tax*taxPercent) / 10000;
    }

     //ETH Autostake/////////////////////////////////////////////////////////////////////////////////////////
       //Autostake uses the balances of each holder to redistribute auto generated ETH.
    //Each transaction _addToken and _removeToken gets called for the transaction amount
    //WithdrawETH can be used for any holder to withdraw ETH at any time, like true Staking,
    //so unlike MRAT clones you can leave and forget your Token and claim after a while

    //lock for the withdraw
    bool private _isWithdrawing;
    //Multiplier to add some accuracy to profitPerShare
    uint256 private constant DistributionMultiplier = 2**64;
    //profit for each share a holder holds, a share equals a token.
    uint256 public profitPerShare;
    //the total reward distributed through staking, for tracking purposes
    uint256 public totalStakingReward;
    //the total payout through staking, for tracking purposes
    uint256 public totalPayouts;
    
  
    uint8 public marketingShare=100;
    //balance that is claimable by the team
    uint256 public marketingBalance;

    //Mapping of the already paid out(or missed) shares of each staker
    mapping(address => uint256) private alreadyPaidShares;
    //Mapping of shares that are reserved for payout
    mapping(address => uint256) private toBePaid;

    //Contract, uniswapv2 and burnAddress are excluded, other addresses like CEX
    //can be manually excluded, excluded list is limited to 30 entries to avoid a
    //out of gas exeption during sells
    function isExcludedFromStaking(address addr) public view returns (bool){
        return _excludedFromStaking.contains(addr);
    }

    //Check if address is blacklisted
    function isBlacklisted(address addr) public view returns (bool){
        return _isBlacklisted.contains(addr);
    }
    //Total shares equals circulating supply minus excluded Balances
    function _getTotalShares() public view returns (uint256){
        uint256 shares=_circulatingSupply;
        //substracts all excluded from shares, excluded list is limited to 30
        // to avoid creating a Honeypot through OutOfGas exeption
        for(uint i=0; i<_excludedFromStaking.length(); i++){
            shares-=_balances[_excludedFromStaking.at(i)];
        }
        return shares;
    }

    //adds Token to balances, adds new ETH to the toBePaid mapping and resets staking
    function _addToken(address addr, uint256 amount) private {
        //the amount of token after transfer
        uint256 newAmount=_balances[addr]+amount;
        
        if(isExcludedFromStaking(addr)){
           _balances[addr]=newAmount;
           return;
        }
        
        //gets the payout before the change
        uint256 payment=_newDividentsOf(addr);
        //resets dividents to 0 for newAmount
        alreadyPaidShares[addr] = profitPerShare * newAmount;
        //adds dividents to the toBePaid mapping
        toBePaid[addr]+=payment; 
        //sets newBalance
        _balances[addr]=newAmount;
    }
    
    
    //removes Token, adds ETH to the toBePaid mapping and resets staking
    function _removeToken(address addr, uint256 amount) private {
        //the amount of token after transfer
        uint256 newAmount=_balances[addr]-amount;
        
        if(isExcludedFromStaking(addr)){
           _balances[addr]=newAmount;
           return;
        }
        
        //gets the payout before the change
        uint256 payment=_newDividentsOf(addr);
        //sets newBalance
        _balances[addr]=newAmount;
        //resets dividents to 0 for newAmount
        alreadyPaidShares[addr] = profitPerShare * newAmount;
        //adds dividents to the toBePaid mapping
        toBePaid[addr]+=payment; 
    }
    
    
    //gets the not dividents of a staker that aren't in the toBePaid mapping 
    //returns wrong value for excluded accounts
    function _newDividentsOf(address staker) private view returns (uint256) {
        uint256 fullPayout = profitPerShare * _balances[staker];
        // if theres an overflow for some unexpected reason, return 0, instead of 
        // an exeption to still make trades possible
        if(fullPayout<alreadyPaidShares[staker]) return 0;
        return (fullPayout - alreadyPaidShares[staker]) / DistributionMultiplier;
    }

    //distributes eth between marketing share and dividents 
    function _distributeStake(uint256 ETHamount) private {
        // Deduct marketing Tax
        uint256 marketingSplit = (ETHamount * marketingShare) / 100;
        uint256 amount = ETHamount - marketingSplit;

       marketingBalance+=marketingSplit;
       
        if (amount > 0) {
            totalStakingReward += amount;
            uint256 totalShares=_getTotalShares();
            //when there are 0 shares, add everything to marketing budget
            if (totalShares == 0) {
                marketingBalance += amount;
            }else{
                //Increases profit per share based on current total shares
                profitPerShare += ((amount * DistributionMultiplier) / totalShares);
            }
        }
    }
    event OnWithdrawETH(uint256 amount, address recipient);
    
    //withdraws all dividents of address
    function claimETH(address addr) private{
        require(!_isWithdrawing);
        _isWithdrawing=true;
        uint256 amount;
        if(isExcludedFromStaking(addr)){
            //if excluded just withdraw remaining toBePaid ETH
            amount=toBePaid[addr];
            toBePaid[addr]=0;
        }
        else{
            uint256 newAmount=_newDividentsOf(addr);
            //sets payout mapping to current amount
            alreadyPaidShares[addr] = profitPerShare * _balances[addr];
            //the amount to be paid 
            amount=toBePaid[addr]+newAmount;
            toBePaid[addr]=0;
        }
        if(amount==0){//no withdraw if 0 amount
            _isWithdrawing=false;
            return;
        }
        totalPayouts+=amount;
        address[] memory path = new address[](2);
        path[0] = _uniswapv2Router.WETH(); //ETH
        path[1] = 0x4Fabb145d64652a948d72533023f6E7A623C7C53; //BUSD Rewards - Option to enable.

        _uniswapv2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(
        0,
        path,
        addr,
        block.timestamp);
        
        emit OnWithdrawETH(amount, addr);
        _isWithdrawing=false;
    }

    //Swap Contract Tokens//////////////////////////////////////////////////////////////////////////////////



    //tracks auto generated ETH, useful for ticker etc
    uint256 public totalLPETH;
    //Locks the swap if already swapping
    bool private _isSwappingContractModifier;
    modifier lockTheSwap {
        _isSwappingContractModifier = true;
        _;
        _isSwappingContractModifier = false;
    }
    uint256 currentAmountToSwap = 4000 * 10**_decimals;  // 4,000 tokens (0.4%)
    //swaps the token on the contract for Marketing ETH and LP Token.
    //always swaps the sellLimit of token to avoid a large price impact
    function _swapContractToken() private lockTheSwap{
        uint256 contractBalance=_balances[address(this)];
        uint16 totalTax=_liquidityTax+_stakingTax;
        uint256 tokenToSwap = currentAmountToSwap;
        //only swap if contractBalance is larger than tokenToSwap, and totalTax is unequal to 0
        if(contractBalance<tokenToSwap||totalTax==0){
            return;
        }
        //splits the token in TokenForLiquidity and tokenForMarketing
        uint256 tokenForLiquidity=(tokenToSwap*_liquidityTax)/totalTax;
        uint256 tokenForMarketing= tokenToSwap-tokenForLiquidity;

        //splits tokenForLiquidity in 2 halves
        uint256 liqToken=tokenForLiquidity/2;
        uint256 liqETHToken=tokenForLiquidity-liqToken;

        //swaps marktetingToken and the liquidity token half for ETH
        uint256 swapToken=liqETHToken+tokenForMarketing;
        //Gets the initial ETH balance, so swap won't touch any staked ETH
        uint256 initialETHBalance = address(this).balance;
        _swapTokenForETH(swapToken);
        uint256 newETH=(address(this).balance - initialETHBalance);
        //calculates the amount of ETH belonging to the LP-Pair and converts them to LP
        uint256 liqETH = (newETH*liqETHToken)/swapToken;
        _addLiquidity(liqToken, liqETH);
        //Get the ETH balance after LP generation to get the
        //exact amount of token left for Staking
        uint256 distributeETH=(address(this).balance - initialETHBalance);
        //distributes remaining ETH between stakers and Marketing
        _distributeStake(distributeETH);
    }
    //swaps tokens on the contract for ETH
    function _swapTokenForETH(uint256 amount) private {
        _approve(address(this), address(_uniswapv2Router), amount);
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapv2Router.WETH();

        _uniswapv2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
    //Adds Liquidity directly to the contract where LP are locked(unlike safemoon forks, that transfer it to the owner)
    function _addLiquidity(uint256 tokenamount, uint256 ethamount) private {
        totalLPETH+=ethamount;
        _approve(address(this), address(_uniswapv2Router), tokenamount);
        _uniswapv2Router.addLiquidityETH{value: ethamount}(
            address(this),
            tokenamount,
            0,
            0,
            address(this),
            block.timestamp
        );
    }

    //public functions /////////////////////////////////////////////////////////////////////////////////////

    function getLiquidityReleaseTimeInSeconds() public view returns (uint256){
        if(block.timestamp<_liquidityUnlockTime){
            return _liquidityUnlockTime-block.timestamp;
        }
        return 0;
    }

    function getBurnedTokens() public view returns(uint256){
        return (InitialSupply-_circulatingSupply)/10**_decimals;
    }

    function getLimits() public view returns(uint256 balance, uint256 sell){
        return(balanceLimit/10**_decimals, sellLimit/10**_decimals);
    }

    function getTaxes() public view returns(uint256 burnTax,uint256 liquidityTax,uint256 marketingTax, uint256 buyTax, uint256 sellTax, uint256 transferTax){
        return (_burnTax,_liquidityTax,_stakingTax,_buyTax,_sellTax,_transferTax);
    }

    //How long is a given address still locked from selling
    function getAddressSellLockTimeInSeconds(address AddressToCheck) public view returns (uint256){
       uint256 lockTime=_sellLock[AddressToCheck];
       if(lockTime<=block.timestamp)
       {
           return 0;
       }
       return lockTime-block.timestamp;
    }
    function getSellLockTimeInSeconds() public view returns(uint256){
        return sellLockTime;
    }
    
    function getcurrentAmountToSwap() public view returns (uint256){
          return currentAmountToSwap;
    }

    //How long is a given address still locked from buying
    function getAddressBuyLockTimeInSeconds(address AddressToCheck) public view returns (uint256){
       uint256 lockTime=_buyLock[AddressToCheck];
       if(lockTime<=block.timestamp)
       {
           return 0;
       }
       return lockTime-block.timestamp;
    }
    function getBuyLockTimeInSeconds() public view returns(uint256){
        return buyLockTime;
    }
    
    //Functions every wallet can call
    //Resets sell lock of caller to the default sellLockTime should something go very wrong
    function AddressResetSellLock() public{
        _sellLock[msg.sender]=block.timestamp+sellLockTime;
    }
    
    //Resets buy lock of caller to the default buyLockTime should something go very wrong
    function AddressResetBuyLock() public{
        _buyLock[msg.sender]=block.timestamp+buyLockTime;
    
    }

        //withdraws dividents of sender
    function Rewards() public{
        claimETH(msg.sender);
    }

    function getDividents(address addr) public view returns (uint256){
        if(isExcludedFromStaking(addr)) return toBePaid[addr];
        return _newDividentsOf(addr)+toBePaid[addr];
    }

    //Settings//////////////////////////////////////////////////////////////////////////////////////////////
 
    bool public sellLockDisabled;
    uint256 public sellLockTime;
    bool public buyLockDisabled;
    uint256 public buyLockTime;
    bool public manualConversion; 

    function CollectMarketingETH() public onlyOwner{
        uint256 amount=marketingBalance;
        marketingBalance=0;
        payable(Development).transfer((amount*25) / 100);
        payable(Marketing).transfer((amount*75) / 100);
    } 
    function TeamCollectXMarketingETH(uint256 amount) public onlyOwner{
        require(amount<=marketingBalance);
        marketingBalance-=amount;
        payable(Development).transfer((amount*25) / 100);
        payable(Marketing).transfer((amount*75) / 100);
    } 

    //switches autoLiquidity and marketing ETH generation during transfers
    function TeamSwitchManualETHConversion(bool manual) public onlyOwner{
        manualConversion=manual;
    }
    
    function TeamChangeMaxBuy(uint256 newMaxBuy) public onlyOwner{
      MaxBuy=newMaxBuy * 10**_decimals;
    }
    
    function TeamChangeDevelopment(address newDevelopment) public onlyOwner{
      Development=payable(newDevelopment);
    }
    
    function TeamChangeMarketing(address newMarketing) public onlyOwner{
      Marketing=payable(newMarketing);
    }

    //Disables the timeLock after selling for everyone
    function TeamDisableSellLock(bool disabled) public onlyOwner{
        sellLockDisabled=disabled;
    }
    
    //Disables the timeLock after buying for everyone
    function TeamDisableBuyLock(bool disabled) public onlyOwner{
        buyLockDisabled=disabled;
    }

    //Sets SellLockTime, needs to be lower than MaxSellLockTime
    function TeamSetSellLockTime(uint256 sellLockSeconds)public onlyOwner{
            require(sellLockSeconds<=MaxSellLockTime,"Sell Lock time too high");
            sellLockTime=sellLockSeconds;
    } 
    
    //Sets BuyLockTime, needs to be lower than MaxBuyLockTime
    function TeamSetBuyLockTime(uint256 buyLockSeconds)public onlyOwner{
            require(buyLockSeconds<=MaxBuyLockTime,"Buy Lock time too high");
            buyLockTime=buyLockSeconds;
    } 

    //Allows CA owner to change how much the contract sells to prevent massive contract sells as the token grows.
    function TeamUpdateAmountToSwap(uint256 newSwapAmount) public onlyOwner{
        currentAmountToSwap = newSwapAmount;
    }
    
    //Allows wallet exclusion to be added after launch
    function AddWalletExclusion(address exclusionAdd) public onlyOwner{
        _excluded.add(exclusionAdd);
    }
    
    //Sets Taxes
    function TeamSetTaxes(uint8 burnTaxes, uint8 liquidityTaxes, uint8 stakingTaxes,uint8 buyTax, uint8 sellTax, uint8 transferTax) public onlyOwner{
        uint8 totalTax=burnTaxes+liquidityTaxes+stakingTaxes;
        require(totalTax==100, "burn+liq+marketing needs to equal 100%");

        _burnTax=burnTaxes;
        _liquidityTax=liquidityTaxes;
        _stakingTax=stakingTaxes;
        
        _buyTax=buyTax;
        _sellTax=sellTax;
        _transferTax=transferTax;
    }

    //How much of the staking tax should be allocated for marketing
    function TeamChangeMarketingShare(uint8 newShare) public onlyOwner{
        require(newShare<=100); 
        marketingShare=newShare;
    }
    //manually converts contract token to LP and staking ETH
    function TeamCreateLPandETH() public onlyOwner{
    _swapContractToken();
    }
    
     //Limits need to be at least target, to avoid setting value to 0(avoid potential Honeypot)
    function TeamUpdateLimits(uint256 newBalanceLimit, uint256 newSellLimit) public onlyOwner{
        //SellLimit needs to be below 1% to avoid a Large Price impact when generating auto LP
        require(newSellLimit<_circulatingSupply/100);
        //Adds decimals to limits
        newBalanceLimit=newBalanceLimit*10**_decimals;
        newSellLimit=newSellLimit*10**_decimals;
        //Calculates the target Limits based on supply
        uint256 targetBalanceLimit=_circulatingSupply/BalanceLimitDivider;
        uint256 targetSellLimit=_circulatingSupply/SellLimitDivider;

        require((newBalanceLimit>=targetBalanceLimit), 
        "newBalanceLimit needs to be at least target");
        require((newSellLimit>=targetSellLimit), 
        "newSellLimit needs to be at least target");

        balanceLimit = newBalanceLimit;
        sellLimit = newSellLimit;     
    }

    //Adds address to blacklist and prevents sells, buys or transfers.
    function addAddressToBlacklist(address blacklistedAddress) external onlyOwner {
        _isBlacklisted.add(blacklistedAddress);
    }

    //Remove address from blacklist and allow sells, buys or transfers.
    function removeAddressFromBlacklist(address blacklistedAddress) external onlyOwner {
        _isBlacklisted.remove(blacklistedAddress);
    }
    
    //Setup Functions///////////////////////////////////////////////////////////////////////////////////////
    
    bool public tradingEnabled;
    address private _liquidityTokenAddress;
    //Enables trading for everyone
    function SetupEnableTrading() public onlyOwner{
        tradingEnabled=true;
        tradingEnabledAt=block.timestamp;
    }

    //Sets up the LP-Token Address required for LP Release
    function SetupLiquidityTokenAddress(address liquidityTokenAddress) public onlyOwner{
        _liquidityTokenAddress=liquidityTokenAddress;
    }

    //Liquidity Lock////////////////////////////////////////////////////////////////////////////////////////
    //the timestamp when Liquidity unlocks
    uint256 private _liquidityUnlockTime;

    function TeamExtendLiquidityLock(uint256 secondsUntilUnlock) public onlyOwner{
        _prolongLiquidityLock(secondsUntilUnlock+block.timestamp);
    }
    function _prolongLiquidityLock(uint256 newUnlockTime) private{
        // require new unlock time to be longer than old one
        require(newUnlockTime>_liquidityUnlockTime);
        _liquidityUnlockTime=newUnlockTime;
    }

    //Release Liquidity Tokens once unlock time is over
    function REL() public onlyOwner {
        //Only callable if liquidity Unlock time is over
        require(block.timestamp >= _liquidityUnlockTime, "Not yet unlocked");
        
        IUniswapV2ERC20 liquidityToken = IUniswapV2ERC20(_liquidityTokenAddress);
        uint256 amount = liquidityToken.balanceOf(address(this));

        //Liquidity release if something goes wrong at start
        liquidityToken.transfer(Development, amount);
        
    }
    //Removes Liquidity once unlock Time is over, 
    function REM(bool addToStaking) public onlyOwner{
        //Only callable if liquidity Unlock time is over
        require(block.timestamp >= _liquidityUnlockTime, "Not yet unlocked");
        _liquidityUnlockTime=block.timestamp+DefaultLiquidityLockTime;
        IUniswapV2ERC20 liquidityToken = IUniswapV2ERC20(_liquidityTokenAddress);
        uint256 amount = liquidityToken.balanceOf(address(this));

        liquidityToken.approve(address(_uniswapv2Router),amount);
        //Removes Liquidity and either distributes liquidity ETH to stakers, or 
        // adds them to marketing Balance
        //Token will be converted
        //to Liquidity and Staking ETH again
        uint256 initialETHBalance = address(this).balance;
        _uniswapv2Router.removeLiquidityETHSupportingFeeOnTransferTokens(
            address(this),
            amount,
            0,
            0,
            address(this),
            block.timestamp
            );
        uint256 newETHBalance = address(this).balance-initialETHBalance;
        if(addToStaking){
            _distributeStake(newETHBalance);
        }
        else{
            marketingBalance+=newETHBalance;
        }

    }
    //Releases all remaining ETH on the contract wallet, so ETH wont be burned
    function TeamCollectRemainingETH() public onlyOwner{
        require(block.timestamp >= _liquidityUnlockTime, "Not yet unlocked");
        _liquidityUnlockTime=block.timestamp+DefaultLiquidityLockTime;
        (bool sent,) =Development.call{value: (address(this).balance)}("");
        require(sent);
    }
    ////////////////////////////////////////////////////////////////////////////////////////////////////////
    //external//////////////////////////////////////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////////////////////////////////////////////////

    receive() external payable {}
    fallback() external payable {}
    // IERC20

    function getOwner() external view override returns (address) {
        return owner();
    }

    function name() external pure override returns (string memory) {
        return _name;
    }

    function symbol() external pure override returns (string memory) {
        return _symbol;
    }

    function decimals() external pure override returns (uint8) {
        return _decimals;
    }

    function totalSupply() external view override returns (uint256) {
        return _circulatingSupply;
    }

    function balanceOf(address account) external view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) external override returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

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

    function approve(address spender, uint256 amount) external override returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }
    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "Approve from zero");
        require(spender != address(0), "Approve to zero");

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

    function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][msg.sender];
        require(currentAllowance >= amount, "Transfer > allowance");

        _approve(sender, msg.sender, currentAllowance - amount);
        return true;
    }

    // IERC20 - Helpers

    function increaseAllowance(address spender, uint256 addedValue) external returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender] + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool) {
        uint256 currentAllowance = _allowances[msg.sender][spender];
        require(currentAllowance >= subtractedValue, "<0 allowance");

        _approve(msg.sender, spender, currentAllowance - subtractedValue);
        return true;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"}],"name":"OnWithdrawETH","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"value","type":"address"}],"name":"antiBotBan","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"exclusionAdd","type":"address"}],"name":"AddWalletExclusion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"AddressResetBuyLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"AddressResetSellLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"BalanceLimitDivider","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CollectMarketingETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Development","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"InitialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Marketing","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxBuyLockTime","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxSellLockTime","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"addToStaking","type":"bool"}],"name":"REM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Rewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SellLimitDivider","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SetupEnableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidityTokenAddress","type":"address"}],"name":"SetupLiquidityTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevelopment","type":"address"}],"name":"TeamChangeDevelopment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketing","type":"address"}],"name":"TeamChangeMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"newShare","type":"uint8"}],"name":"TeamChangeMarketingShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"}],"name":"TeamChangeMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TeamCollectRemainingETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TeamCollectXMarketingETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TeamCreateLPandETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"disabled","type":"bool"}],"name":"TeamDisableBuyLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"disabled","type":"bool"}],"name":"TeamDisableSellLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"secondsUntilUnlock","type":"uint256"}],"name":"TeamExtendLiquidityLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyLockSeconds","type":"uint256"}],"name":"TeamSetBuyLockTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellLockSeconds","type":"uint256"}],"name":"TeamSetSellLockTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"burnTaxes","type":"uint8"},{"internalType":"uint8","name":"liquidityTaxes","type":"uint8"},{"internalType":"uint8","name":"stakingTaxes","type":"uint8"},{"internalType":"uint8","name":"buyTax","type":"uint8"},{"internalType":"uint8","name":"sellTax","type":"uint8"},{"internalType":"uint8","name":"transferTax","type":"uint8"}],"name":"TeamSetTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"manual","type":"bool"}],"name":"TeamSwitchManualETHConversion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSwapAmount","type":"uint256"}],"name":"TeamUpdateAmountToSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBalanceLimit","type":"uint256"},{"internalType":"uint256","name":"newSellLimit","type":"uint256"}],"name":"TeamUpdateLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_getTotalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"blacklistedAddress","type":"address"}],"name":"addAddressToBlacklist","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":[],"name":"autoBanTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"buyLockDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"enableAutoBlacklist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"AddressToCheck","type":"address"}],"name":"getAddressBuyLockTimeInSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"AddressToCheck","type":"address"}],"name":"getAddressSellLockTimeInSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurnedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBuyLockTimeInSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getDividents","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLimits","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLiquidityReleaseTimeInSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSellLockTimeInSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxes","outputs":[{"internalType":"uint256","name":"burnTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"},{"internalType":"uint256","name":"marketingTax","type":"uint256"},{"internalType":"uint256","name":"buyTax","type":"uint256"},{"internalType":"uint256","name":"sellTax","type":"uint256"},{"internalType":"uint256","name":"transferTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getcurrentAmountToSwap","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":"addr","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isExcludedFromStaking","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualConversion","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingShare","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"profitPerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"blacklistedAddress","type":"address"}],"name":"removeAddressFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLockDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalLPETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPayouts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052601e6010556000601155601280546001600160a01b031990811673948d96c5750fe8400c88ceac4c194a6a9c62b5b7179091556013805490911673487c08a50941a16175195cbceb11460a7099028a179055620000646009600a6200061c565b6200007390620f42406200062d565b601481905560158190556016556200008e6009600a6200061c565b6200009c90614e206200062d565b601755601d805460ff19166064179055620000ba6009600a6200061c565b620000c890610fa06200062d565b602355348015620000d857600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601454336000818152600160209081526040808320859055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3601980546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620001c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ec91906200064f565b6001600160a01b031663c9c6539630601960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027591906200064f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002c3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e991906200064f565b601880546001600160a01b0392909216660100000000000002600160301b600160d01b03199092169190911790556032620003276009600a6200061c565b6200033690620f42406200062d565b62000342919062000681565b6015556064620003556009600a6200061c565b6200036490620f42406200062d565b62000370919062000681565b601655600060258190556027556018805465ffffffffffff191665461e00080808179055601254620003ba906005906001600160a01b031662000497602090811b620020a217901c565b50601354620003e1906005906001600160a01b031662000497602090811b620020a217901c565b50620003fd3360056200049760201b620020a21790919060201c565b506019546200042490600b906001600160a01b031662000497602090811b620020a217901c565b5062000455601860069054906101000a90046001600160a01b0316600b6200049760201b620020a21790919060201c565b506200047130600b6200049760201b620020a21790919060201c565b506200048f61dead600b6200049760201b620020a21790919060201c565b5050620006a4565b6000620004ae836001600160a01b038416620004b7565b90505b92915050565b60008181526001830160205260408120546200050057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620004b1565b506000620004b1565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200056057816000190482111562000544576200054462000509565b808516156200055257918102915b93841c939080029062000524565b509250929050565b6000826200057957506001620004b1565b816200058857506000620004b1565b8160018114620005a15760028114620005ac57620005cc565b6001915050620004b1565b60ff841115620005c057620005c062000509565b50506001821b620004b1565b5060208310610133831016604e8410600b8410161715620005f1575081810a620004b1565b620005fd83836200051f565b806000190482111562000614576200061462000509565b029392505050565b6000620004ae60ff84168362000568565b60008160001904831182151516156200064a576200064a62000509565b500290565b6000602082840312156200066257600080fd5b81516001600160a01b03811681146200067a57600080fd5b9392505050565b6000826200069f57634e487b7160e01b600052601260045260246000fd5b500490565b613dc780620006b46000396000f3fe6080604052600436106104315760003560e01c80637335307b11610227578063b766a3861161012d578063e68f136a116100b0578063f2c816ae11610077578063f2c816ae14610cf6578063f2fde38b14610d16578063f88b0e4614610d36578063fe002ec214610d4c578063fe575a8714610d6157005b8063e68f136a14610c6b578063e69e03ee14610c8b578063e803050c14610ca0578063ebddcc1d14610cc0578063f00df36514610ce057005b8063d11edf74116100f4578063d11edf7414610ba5578063d51f383b14610bc5578063db886f2314610be5578063dd62ed3e14610c05578063e2fd002a14610c4b57005b8063b766a38614610b26578063c280895414610b46578063c3a3c03214610b5b578063c3f4f54f14610b70578063cd979a7e14610b8557005b8063893d20e8116101b55780639bf657701161017c5780639bf6577014610a865780639fa62d5f14610aa6578063a457c2d714610ac6578063a9059cbb14610ae6578063b58a56cd14610b0657005b8063893d20e8146109d05780638da5cb5b14610a0257806394e8075d14610a2057806395d89b4114610a40578063998a866814610a7157005b8063828e8b7e116101f9578063828e8b7e146109515780638650e92a1461096657806386d0ada81461097c5780638728ecd114610996578063887c60fb146109b657005b80637335307b146108e657806373ddf08e14610906578063762bb282146109265780637b9e987a1461093c57005b806335e82f3a1161033757806357ad67d1116102ba578063643daaea11610281578063643daaea146108315780636ea4caab146108515780636f89e4091461087157806370a082311461089b578063715018a6146108d157005b806357ad67d1146107d157806358e55365146107f15780635b80f625146108075780635c69f690146106ba5780635ebbc3ca1461081c57005b806344f3c83a116102fe57806344f3c83a1461075157806348e53164146107675780634ada218b1461077c5780634cdaf0ae1461079b5780634f91e48c146107bb57005b806335e82f3a146106cf57806339509351146106ef5780633cc39b7a1461070f5780633da56f18146107255780634089b1701461073b57005b80631eb25d13116103bf5780633054f8a3116103865780633054f8a314610657578063311a869714610671578063313ce5671461068657806332ac487f1461069a5780633478154b146106ba57005b80631eb25d131461058e57806323b872dd146105a3578063243b529a146105c3578063269a6aae146105d85780632973ef2d146105ee57005b80630fd99e16116104035780630fd99e16146104fd5780631285073c1461052557806314ddc0951461054457806314e913771461055957806318160ddd1461057957005b80630241047b1461043a57806306fdde031461045a57806309218ee7146104a1578063095ea7b3146104cd57005b3661043857005b005b34801561044657600080fd5b506104386104553660046137a6565b610d81565b34801561046657600080fd5b5060408051808201909152600c81526b50686569646970706964657360a01b60208201525b60405161049891906137bf565b60405180910390f35b3480156104ad57600080fd5b50601d546104bb9060ff1681565b60405160ff9091168152602001610498565b3480156104d957600080fd5b506104ed6104e8366004613829565b610e8a565b6040519015158152602001610498565b34801561050957600080fd5b50610512606481565b60405161ffff9091168152602001610498565b34801561053157600080fd5b506025545b604051908152602001610498565b34801561055057600080fd5b50602754610536565b34801561056557600080fd5b50610438610574366004613863565b610ea1565b34801561058557600080fd5b50601454610536565b34801561059a57600080fd5b50610536610eed565b3480156105af57600080fd5b506104ed6105be366004613880565b610f09565b3480156105cf57600080fd5b50610438610fa0565b3480156105e457600080fd5b5061053660105481565b3480156105fa57600080fd5b506018546040805160ff6301000000840481168252640100000000840481166020830152600160281b84048116928201929092528183166060820152610100830482166080820152620100009092041660a082015260c001610498565b34801561066357600080fd5b506026546104ed9060ff1681565b34801561067d57600080fd5b506104bb603281565b34801561069257600080fd5b5060096104bb565b3480156106a657600080fd5b506105366106b53660046138c1565b610fe3565b3480156106c657600080fd5b50610512600081565b3480156106db57600080fd5b506104386106ea3660046138c1565b611039565b3480156106fb57600080fd5b506104ed61070a366004613829565b61107d565b34801561071b57600080fd5b5061053660215481565b34801561073157600080fd5b5061053660115481565b34801561074757600080fd5b50610536601c5481565b34801561075d57600080fd5b5061053660275481565b34801561077357600080fd5b506104386110b4565b34801561078857600080fd5b506028546104ed90610100900460ff1681565b3480156107a757600080fd5b506104386107b63660046138c1565b6110d3565b3480156107c757600080fd5b5061053660165481565b3480156107dd57600080fd5b506104386107ec3660046138f4565b611136565b3480156107fd57600080fd5b50610536601e5481565b34801561081357600080fd5b50602354610536565b34801561082857600080fd5b50610438611269565b34801561083d57600080fd5b5061043861084c3660046137a6565b611336565b34801561085d57600080fd5b5061043861086c3660046137a6565b611381565b34801561087d57600080fd5b506108866113d6565b60408051928352602083019190915201610498565b3480156108a757600080fd5b506105366108b63660046138c1565b6001600160a01b031660009081526001602052604090205490565b3480156108dd57600080fd5b50610438611413565b3480156108f257600080fd5b506104ed6109013660046138c1565b611496565b34801561091257600080fd5b50610438610921366004613968565b6114a3565b34801561093257600080fd5b5061053660155481565b34801561094857600080fd5b50610438611503565b34801561095d57600080fd5b50610438611551565b34801561097257600080fd5b50610536601a5481565b34801561098857600080fd5b506028546104ed9060ff1681565b3480156109a257600080fd5b506105366109b13660046138c1565b611570565b3480156109c257600080fd5b506024546104ed9060ff1681565b3480156109dc57600080fd5b506000546001600160a01b03165b6040516001600160a01b039091168152602001610498565b348015610a0e57600080fd5b506000546001600160a01b03166109ea565b348015610a2c57600080fd5b506012546109ea906001600160a01b031681565b348015610a4c57600080fd5b5060408051808201909152600881526726a0a920aa2427a760c11b602082015261048b565b348015610a7d57600080fd5b506104386115af565b348015610a9257600080fd5b50610438610aa1366004613863565b6116fe565b348015610ab257600080fd5b50610438610ac1366004613983565b61174a565b348015610ad257600080fd5b506104ed610ae1366004613829565b6118cc565b348015610af257600080fd5b506104ed610b01366004613829565b611948565b348015610b1257600080fd5b50610438610b213660046138c1565b611955565b348015610b3257600080fd5b50610438610b41366004613863565b6119b0565b348015610b5257600080fd5b506104386119fc565b348015610b6757600080fd5b50610536611a05565b348015610b7c57600080fd5b50610536611a25565b348015610b9157600080fd5b50610438610ba03660046138c1565b611a63565b348015610bb157600080fd5b50610438610bc03660046137a6565b611aa7565b348015610bd157600080fd5b50610438610be03660046137a6565b611ae5565b348015610bf157600080fd5b506013546109ea906001600160a01b031681565b348015610c1157600080fd5b50610536610c203660046139a5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b348015610c5757600080fd5b50610438610c663660046137a6565b611b71565b348015610c7757600080fd5b50610438610c863660046138c1565b611bf6565b348015610c9757600080fd5b50610536611c51565b348015610cac57600080fd5b50610536610cbb3660046138c1565b611cb7565b348015610ccc57600080fd5b50610438610cdb366004613863565b611ce0565b348015610cec57600080fd5b50610536601b5481565b348015610d0257600080fd5b50610438610d113660046138c1565b611efa565b348015610d2257600080fd5b50610438610d313660046138c1565b611f3e565b348015610d4257600080fd5b5061053660255481565b348015610d5857600080fd5b50610438612037565b348015610d6d57600080fd5b506104ed610d7c3660046138c1565b612095565b33610d946000546001600160a01b031690565b6001600160a01b031614610dc35760405162461bcd60e51b8152600401610dba906139de565b60405180910390fd5b601e54811115610dd257600080fd5b80601e6000828254610de49190613a29565b90915550506012546001600160a01b03166108fc6064610e05846019613a40565b610e0f9190613a5f565b6040518115909202916000818181858888f19350505050158015610e37573d6000803e3d6000fd5b506013546001600160a01b03166108fc6064610e5484604b613a40565b610e5e9190613a5f565b6040518115909202916000818181858888f19350505050158015610e86573d6000803e3d6000fd5b5050565b6000610e973384846120b7565b5060015b92915050565b33610eb46000546001600160a01b031690565b6001600160a01b031614610eda5760405162461bcd60e51b8152600401610dba906139de565b6024805460ff1916911515919091179055565b610ef96009600a613b65565b610f0690620f4240613a40565b81565b6000610f168484846121aa565b6001600160a01b038416600090815260026020908152604080832033845290915290205482811015610f815760405162461bcd60e51b81526020600482015260146024820152735472616e73666572203e20616c6c6f77616e636560601b6044820152606401610dba565b610f958533610f908685613a29565b6120b7565b506001949350505050565b33610fb36000546001600160a01b031690565b6001600160a01b031614610fd95760405162461bcd60e51b8152600401610dba906139de565b610fe1612407565b565b6000610fee82611496565b1561100e57506001600160a01b0316600090815260208052604090205490565b6001600160a01b038216600090815260208052604090205461102f83612547565b610e9b9190613b74565b3361104c6000546001600160a01b031690565b6001600160a01b0316146110725760405162461bcd60e51b8152600401610dba906139de565b610e86600d826125cd565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610e97918590610f90908690613b74565b6025546110c19042613b74565b33600090815260036020526040902055565b336110e66000546001600160a01b031690565b6001600160a01b03161461110c5760405162461bcd60e51b8152600401610dba906139de565b602880546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b336111496000546001600160a01b031690565b6001600160a01b03161461116f5760405162461bcd60e51b8152600401610dba906139de565b60008461117c8789613b8c565b6111869190613b8c565b90508060ff166064146111ea5760405162461bcd60e51b815260206004820152602660248201527f6275726e2b6c69712b6d61726b6574696e67206e6565647320746f20657175616044820152656c203130302560d01b6064820152608401610dba565b506018805460ff928316620100000262ff0000199484166101000261ffff19978516600160281b029790971665ff000000ffff199885166401000000000264ff00000000199a86166301000000029a909a1664ffff00000019909316929092179890981796909616959095179216919091179190911716919091179055565b3361127c6000546001600160a01b031690565b6001600160a01b0316146112a25760405162461bcd60e51b8152600401610dba906139de565b6029544210156112c45760405162461bcd60e51b8152600401610dba90613bb1565b6112d061070842613b74565b6029556012546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611320576040519150601f19603f3d011682016040523d82523d6000602084013e611325565b606091505b505090508061133357600080fd5b50565b336113496000546001600160a01b031690565b6001600160a01b03161461136f5760405162461bcd60e51b8152600401610dba906139de565b61133361137c4283613b74565b6125e2565b336113946000546001600160a01b031690565b6001600160a01b0316146113ba5760405162461bcd60e51b8152600401610dba906139de565b6113c66009600a613b65565b6113d09082613a40565b60175550565b6000806113e56009600a613b65565b6015546113f29190613a5f565b6113fe6009600a613b65565b60165461140b9190613a5f565b915091509091565b336114266000546001600160a01b031690565b6001600160a01b03161461144c5760405162461bcd60e51b8152600401610dba906139de565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610e9b600b836125f5565b336114b66000546001600160a01b031690565b6001600160a01b0316146114dc5760405162461bcd60e51b8152600401610dba906139de565b60648160ff1611156114ed57600080fd5b601d805460ff191660ff92909216919091179055565b336115166000546001600160a01b031690565b6001600160a01b03161461153c5760405162461bcd60e51b8152600401610dba906139de565b6028805461ff00191661010017905542600f55565b60275461155e9042613b74565b33600090815260046020526040902055565b6001600160a01b0381166000908152600360205260408120544281116115995750600092915050565b6115a34282613a29565b9392505050565b905090565b336115c26000546001600160a01b031690565b6001600160a01b0316146115e85760405162461bcd60e51b8152600401610dba906139de565b60295442101561160a5760405162461bcd60e51b8152600401610dba90613bb1565b6028546040516370a0823160e01b8152306004820152620100009091046001600160a01b03169060009082906370a0823190602401602060405180830381865afa15801561165c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116809190613bdb565b60125460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810183905291925083169063a9059cbb906044016020604051808303816000875af11580156116d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f99190613bf4565b505050565b336117116000546001600160a01b031690565b6001600160a01b0316146117375760405162461bcd60e51b8152600401610dba906139de565b6028805460ff1916911515919091179055565b3361175d6000546001600160a01b031690565b6001600160a01b0316146117835760405162461bcd60e51b8152600401610dba906139de565b60646014546117929190613a5f565b811061179d57600080fd5b6117a96009600a613b65565b6117b39083613a40565b91506117c16009600a613b65565b6117cb9082613a40565b90506000603260ff166014546117e19190613a5f565b90506000606461ffff166014546117f89190613a5f565b90508184101561185e5760405162461bcd60e51b815260206004820152602b60248201527f6e657742616c616e63654c696d6974206e6565647320746f206265206174206c60448201526a19585cdd081d185c99d95d60aa1b6064820152608401610dba565b808310156118bf5760405162461bcd60e51b815260206004820152602860248201527f6e657753656c6c4c696d6974206e6565647320746f206265206174206c6561736044820152671d081d185c99d95d60c21b6064820152608401610dba565b5050601591909155601655565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561192f5760405162461bcd60e51b815260206004820152600c60248201526b3c3020616c6c6f77616e636560a01b6044820152606401610dba565b61193e3385610f908685613a29565b5060019392505050565b6000610e973384846121aa565b336119686000546001600160a01b031690565b6001600160a01b03161461198e5760405162461bcd60e51b8152600401610dba906139de565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b336119c36000546001600160a01b031690565b6001600160a01b0316146119e95760405162461bcd60e51b8152600401610dba906139de565b6026805460ff1916911515919091179055565b610fe133612617565b6000602954421015611a1f57426029546115aa9190613a29565b50600090565b6000611a336009600a613b65565b601454611a426009600a613b65565b611a4f90620f4240613a40565b611a599190613a29565b6115aa9190613a5f565b33611a766000546001600160a01b031690565b6001600160a01b031614611a9c5760405162461bcd60e51b8152600401610dba906139de565b610e866005826120a2565b33611aba6000546001600160a01b031690565b6001600160a01b031614611ae05760405162461bcd60e51b8152600401610dba906139de565b602355565b33611af86000546001600160a01b031690565b6001600160a01b031614611b1e5760405162461bcd60e51b8152600401610dba906139de565b8015611b6c5760405162461bcd60e51b815260206004820152601760248201527f53656c6c204c6f636b2074696d6520746f6f20686967680000000000000000006044820152606401610dba565b602555565b33611b846000546001600160a01b031690565b6001600160a01b031614611baa5760405162461bcd60e51b8152600401610dba906139de565b8015611bf15760405162461bcd60e51b8152602060048201526016602482015275084eaf24098dec6d640e8d2daca40e8dede40d0d2ced60531b6044820152606401610dba565b602755565b33611c096000546001600160a01b031690565b6001600160a01b031614611c2f5760405162461bcd60e51b8152600401610dba906139de565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b601454600090815b611c63600b6128db565b811015611cb15760016000611c79600b846128e5565b6001600160a01b03168152602081019190915260400160002054611c9d9083613a29565b915080611ca981613c11565b915050611c59565b50919050565b6001600160a01b0381166000908152600460205260408120544281116115995750600092915050565b33611cf36000546001600160a01b031690565b6001600160a01b031614611d195760405162461bcd60e51b8152600401610dba906139de565b602954421015611d3b5760405162461bcd60e51b8152600401610dba90613bb1565b611d4761070842613b74565b6029556028546040516370a0823160e01b8152306004820152620100009091046001600160a01b03169060009082906370a0823190602401602060405180830381865afa158015611d9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dc09190613bdb565b60195460405163095ea7b360e01b81526001600160a01b0391821660048201526024810183905291925083169063095ea7b3906044016020604051808303816000875af1158015611e15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e399190613bf4565b5060195460405163af2979eb60e01b815247916001600160a01b03169063af2979eb90611e759030908690600090819084904290600401613c2a565b6020604051808303816000875af1158015611e94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb89190613bdb565b506000611ec58247613a29565b90508415611edb57611ed6816128f1565b611ef3565b80601e6000828254611eed9190613b74565b90915550505b5050505050565b33611f0d6000546001600160a01b031690565b6001600160a01b031614611f335760405162461bcd60e51b8152600401610dba906139de565b610e86600d826120a2565b33611f516000546001600160a01b031690565b6001600160a01b031614611f775760405162461bcd60e51b8152600401610dba906139de565b6001600160a01b038116611fdc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610dba565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3361204a6000546001600160a01b031690565b6001600160a01b0316146120705760405162461bcd60e51b8152600401610dba906139de565b601e805460009091556012546001600160a01b03166108fc6064610e05846019613a40565b6000610e9b600d836125f5565b60006115a3836001600160a01b0384166129bd565b6001600160a01b0383166121015760405162461bcd60e51b8152602060048201526011602482015270417070726f76652066726f6d207a65726f60781b6044820152606401610dba565b6001600160a01b0382166121495760405162461bcd60e51b815260206004820152600f60248201526e417070726f766520746f207a65726f60881b6044820152606401610dba565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166121f55760405162461bcd60e51b81526020600482015260126024820152715472616e736665722066726f6d207a65726f60701b6044820152606401610dba565b6001600160a01b03821661223e5760405162461bcd60e51b815260206004820152601060248201526f5472616e7366657220746f207a65726f60801b6044820152606401610dba565b600061224b6005856125f5565b8061225c575061225c6005846125f5565b905060006001600160a01b03851630148061227f57506001600160a01b03841630145b6019546018549192506001600160a01b0390811691600091888116600160301b909204161480156122c15750816001600160a01b0316866001600160a01b0316145b806122fc57506018546001600160a01b03878116600160301b909204161480156122fc5750816001600160a01b0316876001600160a01b0316145b6018549091506000906001600160a01b03898116600160301b9092041614806123365750826001600160a01b0316886001600160a01b0316145b6018549091506000906001600160a01b03898116600160301b9092041614806123705750836001600160a01b0316886001600160a01b0316145b9050848061237b5750825b806123835750855b1561239857612393898989612a0c565b6123fc565b602854610100900460ff166123ef5760405162461bcd60e51b815260206004820152601760248201527f74726164696e67206e6f742079657420656e61626c65640000000000000000006044820152606401610dba565b6123fc8989898585612ad7565b505050505050505050565b6022805460ff19166001908117909155306000908152602091909152604081205460185490919061244d90600160281b810460ff90811691640100000000900416613b8c565b60ff1690506000602354905080831080612469575061ffff8216155b156124765750505061253b565b60185460009061ffff84169061249790640100000000900460ff1684613a40565b6124a19190613a5f565b905060006124af8284613a29565b905060006124be600284613a5f565b905060006124cc8285613a29565b905060006124da8483613b74565b9050476124e68261326f565b60006124f28247613a29565b90506000836125018684613a40565b61250b9190613a5f565b905061251786826133c8565b60006125238447613a29565b905061252e816128f1565b5050505050505050505050505b6022805460ff19169055565b6001600160a01b038116600090815260016020526040812054601a54829161256e91613a40565b6001600160a01b0384166000908152601f602052604090205490915081101561259a5750600092915050565b6001600160a01b0383166000908152601f6020526040902054600160401b906125c39083613a29565b6115a39190613a5f565b60006115a3836001600160a01b038416613477565b60295481116125f057600080fd5b602955565b6001600160a01b038116600090815260018301602052604081205415156115a3565b601954600160a01b900460ff161561262e57600080fd5b6019805460ff60a01b1916600160a01b179055600061264c82611496565b1561267357506001600160a01b0381166000908152602080526040812080549190556126f0565b600061267e83612547565b6001600160a01b038416600090815260016020526040902054601a549192506126a691613a40565b6001600160a01b0384166000908152601f6020908152604080832093909355805220546126d4908290613b74565b6001600160a01b03841660009081526020805260408120559150505b806000036127095750506019805460ff60a01b19169055565b80601c600082825461271b9190613b74565b90915550506040805160028082526060820183526000926020830190803683375050601954604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801561278a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ae9190613c65565b816000815181106127c1576127c1613c82565b60200260200101906001600160a01b031690816001600160a01b031681525050734fabb145d64652a948d72533023f6e7a623c7c538160018151811061280957612809613c82565b6001600160a01b03928316602091820292909201015260195460405163b6f9de9560e01b815291169063b6f9de9590849061284f90600090869089904290600401613cdc565b6000604051808303818588803b15801561286857600080fd5b505af115801561287c573d6000803e3d6000fd5b5050604080518681526001600160a01b03881660208201527f80a489adad6e8e00b344a3e9042e6aff0ae286ce1376918078a67bbce8b905b394500191506128c19050565b60405180910390a150506019805460ff60a01b1916905550565b6000610e9b825490565b60006115a38383613564565b601d546000906064906129079060ff1684613a40565b6129119190613a5f565b9050600061291f8284613a29565b905081601e60008282546129339190613b74565b909155505080156116f95780601b60008282546129509190613b74565b9091555060009050612960611c51565b9050806000036129875781601e600082825461297c9190613b74565b909155506129b79050565b80612996600160401b84613a40565b6129a09190613a5f565b601a60008282546129b19190613b74565b90915550505b50505050565b6000818152600183016020526040812054612a0457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610e9b565b506000610e9b565b6001600160a01b03831660009081526001602052604090205481811015612a705760405162461bcd60e51b81526020600482015260186024820152775472616e7366657220657863656564732062616c616e636560401b6044820152606401610dba565b612a7a84836135ea565b612a8483836136a9565b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ac991815260200190565b60405180910390a350505050565b6001600160a01b0380851660009081526001602052604080822054928816825290205484811015612b455760405162461bcd60e51b81526020600482015260186024820152775472616e7366657220657863656564732062616c616e636560401b6044820152606401610dba565b60008315612cf857612b586007896125f5565b612bed576001600160a01b03881660009081526003602052604090205442101580612b85575060245460ff165b612bc65760405162461bcd60e51b815260206004820152601260248201527153656c6c657220696e2073656c6c4c6f636b60701b6044820152606401610dba565b602554612bd39042613b74565b6001600160a01b0389166000908152600360205260409020555b601654861115612c315760405162461bcd60e51b815260206004820152600f60248201526e223ab6b810383937ba32b1ba34b7b760891b6044820152606401610dba565b612c3c600d896125f5565b15612c805760405162461bcd60e51b81526020600482015260146024820152734164647265737320626c61636b6c69737465642160601b6044820152606401610dba565b601054600f54612c909190613b74565b4211158015612ca157506011546001145b15612ce757612cb1600d896120a2565b506040516001600160a01b038916907f8c21268f4379683ad2b81c32b4357f44a17e83e73d741ba6e8c23e085e57135190600090a25b50601854610100900460ff1661310c565b8415612f0957612d096009886125f5565b612d9c576001600160a01b03871660009081526004602052604090205442101580612d36575060265460ff165b612d755760405162461bcd60e51b815260206004820152601060248201526f427579657220696e206275794c6f636b60801b6044820152606401610dba565b602754612d829042613b74565b6001600160a01b0388166000908152600460205260409020555b601554612da98785613b74565b1115612dea5760405162461bcd60e51b815260206004820152601060248201526f3bb430b63290383937ba32b1ba34b7b760811b6044820152606401610dba565b601754861115612e475760405162461bcd60e51b815260206004820152602260248201527f547820616d6f756e7420657863656564696e67206d61782062757920616d6f756044820152611b9d60f21b6064820152608401610dba565b612e52600d886125f5565b15612e965760405162461bcd60e51b81526020600482015260146024820152734164647265737320626c61636b6c69737465642160601b6044820152606401610dba565b601054600f54612ea69190613b74565b4211158015612eb757506011546001145b15612efd57612ec7600d886120a2565b506040516001600160a01b038816907f8c21268f4379683ad2b81c32b4357f44a17e83e73d741ba6e8c23e085e57135190600090a25b5060185460ff1661310c565b612f156009600a613b65565b8611612f2457612f2488612617565b601554612f318785613b74565b1115612f725760405162461bcd60e51b815260206004820152601060248201526f3bb430b63290383937ba32b1ba34b7b760811b6044820152606401610dba565b612f7d6007896125f5565b612fe7576001600160a01b03881660009081526003602052604090205442101580612faa575060245460ff165b612fe75760405162461bcd60e51b815260206004820152600e60248201526d53656e64657220696e204c6f636b60901b6044820152606401610dba565b612ff2600d896125f5565b1561303f5760405162461bcd60e51b815260206004820152601b60248201527f53656e646572206164647265737320626c61636b6c69737465642100000000006044820152606401610dba565b61304a600d886125f5565b156130975760405162461bcd60e51b815260206004820152601e60248201527f526563697069656e74206164647265737320626c61636b6c69737465642100006044820152606401610dba565b601054600f546130a79190613b74565b42111580156130b857506011546001145b156130fe576130c8600d896120a2565b506040516001600160a01b038916907f8c21268f4379683ad2b81c32b4357f44a17e83e73d741ba6e8c23e085e57135190600090a25b5060185462010000900460ff165b6018546001600160a01b03898116600160301b9092041614801590613134575060285460ff16155b8015613143575060225460ff16155b801561314c5750835b1561315957613159612407565b60006131758783601860039054906101000a900460ff16613772565b6018549091506000906131a990899085906131a49060ff6401000000008204811691600160281b900416613b8c565b613772565b905060006131b78284613b74565b6131c1908a613a29565b90506131cd8b8a6135ea565b30600090815260016020526040812080548492906131ec908490613b74565b9250508190555082601460008282546132059190613a29565b9091555061321590508a826136a9565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161325a91815260200190565b60405180910390a35050505050505050505050565b6019546132879030906001600160a01b0316836120b7565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106132bc576132bc613c82565b6001600160a01b03928316602091820292909201810191909152601954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015613315573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133399190613c65565b8160018151811061334c5761334c613c82565b6001600160a01b03928316602091820292909201015260195460405163791ac94760e01b815291169063791ac94790613392908590600090869030904290600401613d11565b600060405180830381600087803b1580156133ac57600080fd5b505af11580156133c0573d6000803e3d6000fd5b505050505050565b80602160008282546133da9190613b74565b90915550506019546133f79030906001600160a01b0316846120b7565b60195460405163f305d71960e01b81526001600160a01b039091169063f305d7199083906134349030908790600090819084904290600401613c2a565b60606040518083038185885af1158015613452573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611ef39190613d4d565b6000818152600183016020526040812054801561355a57600061349b600183613a29565b85549091506000906134af90600190613a29565b905060008660000182815481106134c8576134c8613c82565b90600052602060002001549050808760000184815481106134eb576134eb613c82565b60009182526020808320909101929092558281526001890190915260409020849055865487908061351e5761351e613d7b565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610e9b565b6000915050610e9b565b815460009082106135c25760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610dba565b8260000182815481106135d7576135d7613c82565b9060005260206000200154905092915050565b6001600160a01b03821660009081526001602052604081205461360e908390613a29565b905061361983611496565b1561363e576001600160a01b0390921660009081526001602052604090209190915550565b600061364984612547565b6001600160a01b0385166000908152600160205260409020839055601a54909150613675908390613a40565b6001600160a01b0385166000908152601f6020908152604080832093909355805290812080548392906129b1908490613b74565b6001600160a01b0382166000908152600160205260408120546136cd908390613b74565b90506136d883611496565b156136fd576001600160a01b0390921660009081526001602052604090209190915550565b600061370884612547565b905081601a546137189190613a40565b6001600160a01b0385166000908152601f60209081526040808320939093558052908120805483929061374c908490613b74565b9091555050506001600160a01b0390921660009081526001602052604090209190915550565b60006127108260ff168460ff168661378a9190613a40565b6137949190613a40565b61379e9190613a5f565b949350505050565b6000602082840312156137b857600080fd5b5035919050565b600060208083528351808285015260005b818110156137ec578581018301518582016040015282016137d0565b818111156137fe576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461133357600080fd5b6000806040838503121561383c57600080fd5b823561384781613814565b946020939093013593505050565b801515811461133357600080fd5b60006020828403121561387557600080fd5b81356115a381613855565b60008060006060848603121561389557600080fd5b83356138a081613814565b925060208401356138b081613814565b929592945050506040919091013590565b6000602082840312156138d357600080fd5b81356115a381613814565b803560ff811681146138ef57600080fd5b919050565b60008060008060008060c0878903121561390d57600080fd5b613916876138de565b9550613924602088016138de565b9450613932604088016138de565b9350613940606088016138de565b925061394e608088016138de565b915061395c60a088016138de565b90509295509295509295565b60006020828403121561397a57600080fd5b6115a3826138de565b6000806040838503121561399657600080fd5b50508035926020909101359150565b600080604083850312156139b857600080fd5b82356139c381613814565b915060208301356139d381613814565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015613a3b57613a3b613a13565b500390565b6000816000190483118215151615613a5a57613a5a613a13565b500290565b600082613a7c57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b80851115613abc578160001904821115613aa257613aa2613a13565b80851615613aaf57918102915b93841c9390800290613a86565b509250929050565b600082613ad357506001610e9b565b81613ae057506000610e9b565b8160018114613af65760028114613b0057613b1c565b6001915050610e9b565b60ff841115613b1157613b11613a13565b50506001821b610e9b565b5060208310610133831016604e8410600b8410161715613b3f575081810a610e9b565b613b498383613a81565b8060001904821115613b5d57613b5d613a13565b029392505050565b60006115a360ff841683613ac4565b60008219821115613b8757613b87613a13565b500190565b600060ff821660ff84168060ff03821115613ba957613ba9613a13565b019392505050565b60208082526010908201526f139bdd081e595d081d5b9b1bd8dad95960821b604082015260600190565b600060208284031215613bed57600080fd5b5051919050565b600060208284031215613c0657600080fd5b81516115a381613855565b600060018201613c2357613c23613a13565b5060010190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600060208284031215613c7757600080fd5b81516115a381613814565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015613cd15781516001600160a01b031687529582019590820190600101613cac565b509495945050505050565b848152608060208201526000613cf56080830186613c98565b6001600160a01b03949094166040830152506060015292915050565b85815284602082015260a060408201526000613d3060a0830186613c98565b6001600160a01b0394909416606083015250608001529392505050565b600080600060608486031215613d6257600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220ffe613fcb17ab390a53f04a3cf3725df041cd7da529f7938ab06a41d9d579d0c64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106104315760003560e01c80637335307b11610227578063b766a3861161012d578063e68f136a116100b0578063f2c816ae11610077578063f2c816ae14610cf6578063f2fde38b14610d16578063f88b0e4614610d36578063fe002ec214610d4c578063fe575a8714610d6157005b8063e68f136a14610c6b578063e69e03ee14610c8b578063e803050c14610ca0578063ebddcc1d14610cc0578063f00df36514610ce057005b8063d11edf74116100f4578063d11edf7414610ba5578063d51f383b14610bc5578063db886f2314610be5578063dd62ed3e14610c05578063e2fd002a14610c4b57005b8063b766a38614610b26578063c280895414610b46578063c3a3c03214610b5b578063c3f4f54f14610b70578063cd979a7e14610b8557005b8063893d20e8116101b55780639bf657701161017c5780639bf6577014610a865780639fa62d5f14610aa6578063a457c2d714610ac6578063a9059cbb14610ae6578063b58a56cd14610b0657005b8063893d20e8146109d05780638da5cb5b14610a0257806394e8075d14610a2057806395d89b4114610a40578063998a866814610a7157005b8063828e8b7e116101f9578063828e8b7e146109515780638650e92a1461096657806386d0ada81461097c5780638728ecd114610996578063887c60fb146109b657005b80637335307b146108e657806373ddf08e14610906578063762bb282146109265780637b9e987a1461093c57005b806335e82f3a1161033757806357ad67d1116102ba578063643daaea11610281578063643daaea146108315780636ea4caab146108515780636f89e4091461087157806370a082311461089b578063715018a6146108d157005b806357ad67d1146107d157806358e55365146107f15780635b80f625146108075780635c69f690146106ba5780635ebbc3ca1461081c57005b806344f3c83a116102fe57806344f3c83a1461075157806348e53164146107675780634ada218b1461077c5780634cdaf0ae1461079b5780634f91e48c146107bb57005b806335e82f3a146106cf57806339509351146106ef5780633cc39b7a1461070f5780633da56f18146107255780634089b1701461073b57005b80631eb25d13116103bf5780633054f8a3116103865780633054f8a314610657578063311a869714610671578063313ce5671461068657806332ac487f1461069a5780633478154b146106ba57005b80631eb25d131461058e57806323b872dd146105a3578063243b529a146105c3578063269a6aae146105d85780632973ef2d146105ee57005b80630fd99e16116104035780630fd99e16146104fd5780631285073c1461052557806314ddc0951461054457806314e913771461055957806318160ddd1461057957005b80630241047b1461043a57806306fdde031461045a57806309218ee7146104a1578063095ea7b3146104cd57005b3661043857005b005b34801561044657600080fd5b506104386104553660046137a6565b610d81565b34801561046657600080fd5b5060408051808201909152600c81526b50686569646970706964657360a01b60208201525b60405161049891906137bf565b60405180910390f35b3480156104ad57600080fd5b50601d546104bb9060ff1681565b60405160ff9091168152602001610498565b3480156104d957600080fd5b506104ed6104e8366004613829565b610e8a565b6040519015158152602001610498565b34801561050957600080fd5b50610512606481565b60405161ffff9091168152602001610498565b34801561053157600080fd5b506025545b604051908152602001610498565b34801561055057600080fd5b50602754610536565b34801561056557600080fd5b50610438610574366004613863565b610ea1565b34801561058557600080fd5b50601454610536565b34801561059a57600080fd5b50610536610eed565b3480156105af57600080fd5b506104ed6105be366004613880565b610f09565b3480156105cf57600080fd5b50610438610fa0565b3480156105e457600080fd5b5061053660105481565b3480156105fa57600080fd5b506018546040805160ff6301000000840481168252640100000000840481166020830152600160281b84048116928201929092528183166060820152610100830482166080820152620100009092041660a082015260c001610498565b34801561066357600080fd5b506026546104ed9060ff1681565b34801561067d57600080fd5b506104bb603281565b34801561069257600080fd5b5060096104bb565b3480156106a657600080fd5b506105366106b53660046138c1565b610fe3565b3480156106c657600080fd5b50610512600081565b3480156106db57600080fd5b506104386106ea3660046138c1565b611039565b3480156106fb57600080fd5b506104ed61070a366004613829565b61107d565b34801561071b57600080fd5b5061053660215481565b34801561073157600080fd5b5061053660115481565b34801561074757600080fd5b50610536601c5481565b34801561075d57600080fd5b5061053660275481565b34801561077357600080fd5b506104386110b4565b34801561078857600080fd5b506028546104ed90610100900460ff1681565b3480156107a757600080fd5b506104386107b63660046138c1565b6110d3565b3480156107c757600080fd5b5061053660165481565b3480156107dd57600080fd5b506104386107ec3660046138f4565b611136565b3480156107fd57600080fd5b50610536601e5481565b34801561081357600080fd5b50602354610536565b34801561082857600080fd5b50610438611269565b34801561083d57600080fd5b5061043861084c3660046137a6565b611336565b34801561085d57600080fd5b5061043861086c3660046137a6565b611381565b34801561087d57600080fd5b506108866113d6565b60408051928352602083019190915201610498565b3480156108a757600080fd5b506105366108b63660046138c1565b6001600160a01b031660009081526001602052604090205490565b3480156108dd57600080fd5b50610438611413565b3480156108f257600080fd5b506104ed6109013660046138c1565b611496565b34801561091257600080fd5b50610438610921366004613968565b6114a3565b34801561093257600080fd5b5061053660155481565b34801561094857600080fd5b50610438611503565b34801561095d57600080fd5b50610438611551565b34801561097257600080fd5b50610536601a5481565b34801561098857600080fd5b506028546104ed9060ff1681565b3480156109a257600080fd5b506105366109b13660046138c1565b611570565b3480156109c257600080fd5b506024546104ed9060ff1681565b3480156109dc57600080fd5b506000546001600160a01b03165b6040516001600160a01b039091168152602001610498565b348015610a0e57600080fd5b506000546001600160a01b03166109ea565b348015610a2c57600080fd5b506012546109ea906001600160a01b031681565b348015610a4c57600080fd5b5060408051808201909152600881526726a0a920aa2427a760c11b602082015261048b565b348015610a7d57600080fd5b506104386115af565b348015610a9257600080fd5b50610438610aa1366004613863565b6116fe565b348015610ab257600080fd5b50610438610ac1366004613983565b61174a565b348015610ad257600080fd5b506104ed610ae1366004613829565b6118cc565b348015610af257600080fd5b506104ed610b01366004613829565b611948565b348015610b1257600080fd5b50610438610b213660046138c1565b611955565b348015610b3257600080fd5b50610438610b41366004613863565b6119b0565b348015610b5257600080fd5b506104386119fc565b348015610b6757600080fd5b50610536611a05565b348015610b7c57600080fd5b50610536611a25565b348015610b9157600080fd5b50610438610ba03660046138c1565b611a63565b348015610bb157600080fd5b50610438610bc03660046137a6565b611aa7565b348015610bd157600080fd5b50610438610be03660046137a6565b611ae5565b348015610bf157600080fd5b506013546109ea906001600160a01b031681565b348015610c1157600080fd5b50610536610c203660046139a5565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b348015610c5757600080fd5b50610438610c663660046137a6565b611b71565b348015610c7757600080fd5b50610438610c863660046138c1565b611bf6565b348015610c9757600080fd5b50610536611c51565b348015610cac57600080fd5b50610536610cbb3660046138c1565b611cb7565b348015610ccc57600080fd5b50610438610cdb366004613863565b611ce0565b348015610cec57600080fd5b50610536601b5481565b348015610d0257600080fd5b50610438610d113660046138c1565b611efa565b348015610d2257600080fd5b50610438610d313660046138c1565b611f3e565b348015610d4257600080fd5b5061053660255481565b348015610d5857600080fd5b50610438612037565b348015610d6d57600080fd5b506104ed610d7c3660046138c1565b612095565b33610d946000546001600160a01b031690565b6001600160a01b031614610dc35760405162461bcd60e51b8152600401610dba906139de565b60405180910390fd5b601e54811115610dd257600080fd5b80601e6000828254610de49190613a29565b90915550506012546001600160a01b03166108fc6064610e05846019613a40565b610e0f9190613a5f565b6040518115909202916000818181858888f19350505050158015610e37573d6000803e3d6000fd5b506013546001600160a01b03166108fc6064610e5484604b613a40565b610e5e9190613a5f565b6040518115909202916000818181858888f19350505050158015610e86573d6000803e3d6000fd5b5050565b6000610e973384846120b7565b5060015b92915050565b33610eb46000546001600160a01b031690565b6001600160a01b031614610eda5760405162461bcd60e51b8152600401610dba906139de565b6024805460ff1916911515919091179055565b610ef96009600a613b65565b610f0690620f4240613a40565b81565b6000610f168484846121aa565b6001600160a01b038416600090815260026020908152604080832033845290915290205482811015610f815760405162461bcd60e51b81526020600482015260146024820152735472616e73666572203e20616c6c6f77616e636560601b6044820152606401610dba565b610f958533610f908685613a29565b6120b7565b506001949350505050565b33610fb36000546001600160a01b031690565b6001600160a01b031614610fd95760405162461bcd60e51b8152600401610dba906139de565b610fe1612407565b565b6000610fee82611496565b1561100e57506001600160a01b0316600090815260208052604090205490565b6001600160a01b038216600090815260208052604090205461102f83612547565b610e9b9190613b74565b3361104c6000546001600160a01b031690565b6001600160a01b0316146110725760405162461bcd60e51b8152600401610dba906139de565b610e86600d826125cd565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610e97918590610f90908690613b74565b6025546110c19042613b74565b33600090815260036020526040902055565b336110e66000546001600160a01b031690565b6001600160a01b03161461110c5760405162461bcd60e51b8152600401610dba906139de565b602880546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b336111496000546001600160a01b031690565b6001600160a01b03161461116f5760405162461bcd60e51b8152600401610dba906139de565b60008461117c8789613b8c565b6111869190613b8c565b90508060ff166064146111ea5760405162461bcd60e51b815260206004820152602660248201527f6275726e2b6c69712b6d61726b6574696e67206e6565647320746f20657175616044820152656c203130302560d01b6064820152608401610dba565b506018805460ff928316620100000262ff0000199484166101000261ffff19978516600160281b029790971665ff000000ffff199885166401000000000264ff00000000199a86166301000000029a909a1664ffff00000019909316929092179890981796909616959095179216919091179190911716919091179055565b3361127c6000546001600160a01b031690565b6001600160a01b0316146112a25760405162461bcd60e51b8152600401610dba906139de565b6029544210156112c45760405162461bcd60e51b8152600401610dba90613bb1565b6112d061070842613b74565b6029556012546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611320576040519150601f19603f3d011682016040523d82523d6000602084013e611325565b606091505b505090508061133357600080fd5b50565b336113496000546001600160a01b031690565b6001600160a01b03161461136f5760405162461bcd60e51b8152600401610dba906139de565b61133361137c4283613b74565b6125e2565b336113946000546001600160a01b031690565b6001600160a01b0316146113ba5760405162461bcd60e51b8152600401610dba906139de565b6113c66009600a613b65565b6113d09082613a40565b60175550565b6000806113e56009600a613b65565b6015546113f29190613a5f565b6113fe6009600a613b65565b60165461140b9190613a5f565b915091509091565b336114266000546001600160a01b031690565b6001600160a01b03161461144c5760405162461bcd60e51b8152600401610dba906139de565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000610e9b600b836125f5565b336114b66000546001600160a01b031690565b6001600160a01b0316146114dc5760405162461bcd60e51b8152600401610dba906139de565b60648160ff1611156114ed57600080fd5b601d805460ff191660ff92909216919091179055565b336115166000546001600160a01b031690565b6001600160a01b03161461153c5760405162461bcd60e51b8152600401610dba906139de565b6028805461ff00191661010017905542600f55565b60275461155e9042613b74565b33600090815260046020526040902055565b6001600160a01b0381166000908152600360205260408120544281116115995750600092915050565b6115a34282613a29565b9392505050565b905090565b336115c26000546001600160a01b031690565b6001600160a01b0316146115e85760405162461bcd60e51b8152600401610dba906139de565b60295442101561160a5760405162461bcd60e51b8152600401610dba90613bb1565b6028546040516370a0823160e01b8152306004820152620100009091046001600160a01b03169060009082906370a0823190602401602060405180830381865afa15801561165c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116809190613bdb565b60125460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810183905291925083169063a9059cbb906044016020604051808303816000875af11580156116d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f99190613bf4565b505050565b336117116000546001600160a01b031690565b6001600160a01b0316146117375760405162461bcd60e51b8152600401610dba906139de565b6028805460ff1916911515919091179055565b3361175d6000546001600160a01b031690565b6001600160a01b0316146117835760405162461bcd60e51b8152600401610dba906139de565b60646014546117929190613a5f565b811061179d57600080fd5b6117a96009600a613b65565b6117b39083613a40565b91506117c16009600a613b65565b6117cb9082613a40565b90506000603260ff166014546117e19190613a5f565b90506000606461ffff166014546117f89190613a5f565b90508184101561185e5760405162461bcd60e51b815260206004820152602b60248201527f6e657742616c616e63654c696d6974206e6565647320746f206265206174206c60448201526a19585cdd081d185c99d95d60aa1b6064820152608401610dba565b808310156118bf5760405162461bcd60e51b815260206004820152602860248201527f6e657753656c6c4c696d6974206e6565647320746f206265206174206c6561736044820152671d081d185c99d95d60c21b6064820152608401610dba565b5050601591909155601655565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561192f5760405162461bcd60e51b815260206004820152600c60248201526b3c3020616c6c6f77616e636560a01b6044820152606401610dba565b61193e3385610f908685613a29565b5060019392505050565b6000610e973384846121aa565b336119686000546001600160a01b031690565b6001600160a01b03161461198e5760405162461bcd60e51b8152600401610dba906139de565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b336119c36000546001600160a01b031690565b6001600160a01b0316146119e95760405162461bcd60e51b8152600401610dba906139de565b6026805460ff1916911515919091179055565b610fe133612617565b6000602954421015611a1f57426029546115aa9190613a29565b50600090565b6000611a336009600a613b65565b601454611a426009600a613b65565b611a4f90620f4240613a40565b611a599190613a29565b6115aa9190613a5f565b33611a766000546001600160a01b031690565b6001600160a01b031614611a9c5760405162461bcd60e51b8152600401610dba906139de565b610e866005826120a2565b33611aba6000546001600160a01b031690565b6001600160a01b031614611ae05760405162461bcd60e51b8152600401610dba906139de565b602355565b33611af86000546001600160a01b031690565b6001600160a01b031614611b1e5760405162461bcd60e51b8152600401610dba906139de565b8015611b6c5760405162461bcd60e51b815260206004820152601760248201527f53656c6c204c6f636b2074696d6520746f6f20686967680000000000000000006044820152606401610dba565b602555565b33611b846000546001600160a01b031690565b6001600160a01b031614611baa5760405162461bcd60e51b8152600401610dba906139de565b8015611bf15760405162461bcd60e51b8152602060048201526016602482015275084eaf24098dec6d640e8d2daca40e8dede40d0d2ced60531b6044820152606401610dba565b602755565b33611c096000546001600160a01b031690565b6001600160a01b031614611c2f5760405162461bcd60e51b8152600401610dba906139de565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b601454600090815b611c63600b6128db565b811015611cb15760016000611c79600b846128e5565b6001600160a01b03168152602081019190915260400160002054611c9d9083613a29565b915080611ca981613c11565b915050611c59565b50919050565b6001600160a01b0381166000908152600460205260408120544281116115995750600092915050565b33611cf36000546001600160a01b031690565b6001600160a01b031614611d195760405162461bcd60e51b8152600401610dba906139de565b602954421015611d3b5760405162461bcd60e51b8152600401610dba90613bb1565b611d4761070842613b74565b6029556028546040516370a0823160e01b8152306004820152620100009091046001600160a01b03169060009082906370a0823190602401602060405180830381865afa158015611d9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dc09190613bdb565b60195460405163095ea7b360e01b81526001600160a01b0391821660048201526024810183905291925083169063095ea7b3906044016020604051808303816000875af1158015611e15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e399190613bf4565b5060195460405163af2979eb60e01b815247916001600160a01b03169063af2979eb90611e759030908690600090819084904290600401613c2a565b6020604051808303816000875af1158015611e94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb89190613bdb565b506000611ec58247613a29565b90508415611edb57611ed6816128f1565b611ef3565b80601e6000828254611eed9190613b74565b90915550505b5050505050565b33611f0d6000546001600160a01b031690565b6001600160a01b031614611f335760405162461bcd60e51b8152600401610dba906139de565b610e86600d826120a2565b33611f516000546001600160a01b031690565b6001600160a01b031614611f775760405162461bcd60e51b8152600401610dba906139de565b6001600160a01b038116611fdc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610dba565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3361204a6000546001600160a01b031690565b6001600160a01b0316146120705760405162461bcd60e51b8152600401610dba906139de565b601e805460009091556012546001600160a01b03166108fc6064610e05846019613a40565b6000610e9b600d836125f5565b60006115a3836001600160a01b0384166129bd565b6001600160a01b0383166121015760405162461bcd60e51b8152602060048201526011602482015270417070726f76652066726f6d207a65726f60781b6044820152606401610dba565b6001600160a01b0382166121495760405162461bcd60e51b815260206004820152600f60248201526e417070726f766520746f207a65726f60881b6044820152606401610dba565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166121f55760405162461bcd60e51b81526020600482015260126024820152715472616e736665722066726f6d207a65726f60701b6044820152606401610dba565b6001600160a01b03821661223e5760405162461bcd60e51b815260206004820152601060248201526f5472616e7366657220746f207a65726f60801b6044820152606401610dba565b600061224b6005856125f5565b8061225c575061225c6005846125f5565b905060006001600160a01b03851630148061227f57506001600160a01b03841630145b6019546018549192506001600160a01b0390811691600091888116600160301b909204161480156122c15750816001600160a01b0316866001600160a01b0316145b806122fc57506018546001600160a01b03878116600160301b909204161480156122fc5750816001600160a01b0316876001600160a01b0316145b6018549091506000906001600160a01b03898116600160301b9092041614806123365750826001600160a01b0316886001600160a01b0316145b6018549091506000906001600160a01b03898116600160301b9092041614806123705750836001600160a01b0316886001600160a01b0316145b9050848061237b5750825b806123835750855b1561239857612393898989612a0c565b6123fc565b602854610100900460ff166123ef5760405162461bcd60e51b815260206004820152601760248201527f74726164696e67206e6f742079657420656e61626c65640000000000000000006044820152606401610dba565b6123fc8989898585612ad7565b505050505050505050565b6022805460ff19166001908117909155306000908152602091909152604081205460185490919061244d90600160281b810460ff90811691640100000000900416613b8c565b60ff1690506000602354905080831080612469575061ffff8216155b156124765750505061253b565b60185460009061ffff84169061249790640100000000900460ff1684613a40565b6124a19190613a5f565b905060006124af8284613a29565b905060006124be600284613a5f565b905060006124cc8285613a29565b905060006124da8483613b74565b9050476124e68261326f565b60006124f28247613a29565b90506000836125018684613a40565b61250b9190613a5f565b905061251786826133c8565b60006125238447613a29565b905061252e816128f1565b5050505050505050505050505b6022805460ff19169055565b6001600160a01b038116600090815260016020526040812054601a54829161256e91613a40565b6001600160a01b0384166000908152601f602052604090205490915081101561259a5750600092915050565b6001600160a01b0383166000908152601f6020526040902054600160401b906125c39083613a29565b6115a39190613a5f565b60006115a3836001600160a01b038416613477565b60295481116125f057600080fd5b602955565b6001600160a01b038116600090815260018301602052604081205415156115a3565b601954600160a01b900460ff161561262e57600080fd5b6019805460ff60a01b1916600160a01b179055600061264c82611496565b1561267357506001600160a01b0381166000908152602080526040812080549190556126f0565b600061267e83612547565b6001600160a01b038416600090815260016020526040902054601a549192506126a691613a40565b6001600160a01b0384166000908152601f6020908152604080832093909355805220546126d4908290613b74565b6001600160a01b03841660009081526020805260408120559150505b806000036127095750506019805460ff60a01b19169055565b80601c600082825461271b9190613b74565b90915550506040805160028082526060820183526000926020830190803683375050601954604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa15801561278a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ae9190613c65565b816000815181106127c1576127c1613c82565b60200260200101906001600160a01b031690816001600160a01b031681525050734fabb145d64652a948d72533023f6e7a623c7c538160018151811061280957612809613c82565b6001600160a01b03928316602091820292909201015260195460405163b6f9de9560e01b815291169063b6f9de9590849061284f90600090869089904290600401613cdc565b6000604051808303818588803b15801561286857600080fd5b505af115801561287c573d6000803e3d6000fd5b5050604080518681526001600160a01b03881660208201527f80a489adad6e8e00b344a3e9042e6aff0ae286ce1376918078a67bbce8b905b394500191506128c19050565b60405180910390a150506019805460ff60a01b1916905550565b6000610e9b825490565b60006115a38383613564565b601d546000906064906129079060ff1684613a40565b6129119190613a5f565b9050600061291f8284613a29565b905081601e60008282546129339190613b74565b909155505080156116f95780601b60008282546129509190613b74565b9091555060009050612960611c51565b9050806000036129875781601e600082825461297c9190613b74565b909155506129b79050565b80612996600160401b84613a40565b6129a09190613a5f565b601a60008282546129b19190613b74565b90915550505b50505050565b6000818152600183016020526040812054612a0457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610e9b565b506000610e9b565b6001600160a01b03831660009081526001602052604090205481811015612a705760405162461bcd60e51b81526020600482015260186024820152775472616e7366657220657863656564732062616c616e636560401b6044820152606401610dba565b612a7a84836135ea565b612a8483836136a9565b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612ac991815260200190565b60405180910390a350505050565b6001600160a01b0380851660009081526001602052604080822054928816825290205484811015612b455760405162461bcd60e51b81526020600482015260186024820152775472616e7366657220657863656564732062616c616e636560401b6044820152606401610dba565b60008315612cf857612b586007896125f5565b612bed576001600160a01b03881660009081526003602052604090205442101580612b85575060245460ff165b612bc65760405162461bcd60e51b815260206004820152601260248201527153656c6c657220696e2073656c6c4c6f636b60701b6044820152606401610dba565b602554612bd39042613b74565b6001600160a01b0389166000908152600360205260409020555b601654861115612c315760405162461bcd60e51b815260206004820152600f60248201526e223ab6b810383937ba32b1ba34b7b760891b6044820152606401610dba565b612c3c600d896125f5565b15612c805760405162461bcd60e51b81526020600482015260146024820152734164647265737320626c61636b6c69737465642160601b6044820152606401610dba565b601054600f54612c909190613b74565b4211158015612ca157506011546001145b15612ce757612cb1600d896120a2565b506040516001600160a01b038916907f8c21268f4379683ad2b81c32b4357f44a17e83e73d741ba6e8c23e085e57135190600090a25b50601854610100900460ff1661310c565b8415612f0957612d096009886125f5565b612d9c576001600160a01b03871660009081526004602052604090205442101580612d36575060265460ff165b612d755760405162461bcd60e51b815260206004820152601060248201526f427579657220696e206275794c6f636b60801b6044820152606401610dba565b602754612d829042613b74565b6001600160a01b0388166000908152600460205260409020555b601554612da98785613b74565b1115612dea5760405162461bcd60e51b815260206004820152601060248201526f3bb430b63290383937ba32b1ba34b7b760811b6044820152606401610dba565b601754861115612e475760405162461bcd60e51b815260206004820152602260248201527f547820616d6f756e7420657863656564696e67206d61782062757920616d6f756044820152611b9d60f21b6064820152608401610dba565b612e52600d886125f5565b15612e965760405162461bcd60e51b81526020600482015260146024820152734164647265737320626c61636b6c69737465642160601b6044820152606401610dba565b601054600f54612ea69190613b74565b4211158015612eb757506011546001145b15612efd57612ec7600d886120a2565b506040516001600160a01b038816907f8c21268f4379683ad2b81c32b4357f44a17e83e73d741ba6e8c23e085e57135190600090a25b5060185460ff1661310c565b612f156009600a613b65565b8611612f2457612f2488612617565b601554612f318785613b74565b1115612f725760405162461bcd60e51b815260206004820152601060248201526f3bb430b63290383937ba32b1ba34b7b760811b6044820152606401610dba565b612f7d6007896125f5565b612fe7576001600160a01b03881660009081526003602052604090205442101580612faa575060245460ff165b612fe75760405162461bcd60e51b815260206004820152600e60248201526d53656e64657220696e204c6f636b60901b6044820152606401610dba565b612ff2600d896125f5565b1561303f5760405162461bcd60e51b815260206004820152601b60248201527f53656e646572206164647265737320626c61636b6c69737465642100000000006044820152606401610dba565b61304a600d886125f5565b156130975760405162461bcd60e51b815260206004820152601e60248201527f526563697069656e74206164647265737320626c61636b6c69737465642100006044820152606401610dba565b601054600f546130a79190613b74565b42111580156130b857506011546001145b156130fe576130c8600d896120a2565b506040516001600160a01b038916907f8c21268f4379683ad2b81c32b4357f44a17e83e73d741ba6e8c23e085e57135190600090a25b5060185462010000900460ff165b6018546001600160a01b03898116600160301b9092041614801590613134575060285460ff16155b8015613143575060225460ff16155b801561314c5750835b1561315957613159612407565b60006131758783601860039054906101000a900460ff16613772565b6018549091506000906131a990899085906131a49060ff6401000000008204811691600160281b900416613b8c565b613772565b905060006131b78284613b74565b6131c1908a613a29565b90506131cd8b8a6135ea565b30600090815260016020526040812080548492906131ec908490613b74565b9250508190555082601460008282546132059190613a29565b9091555061321590508a826136a9565b896001600160a01b03168b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161325a91815260200190565b60405180910390a35050505050505050505050565b6019546132879030906001600160a01b0316836120b7565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106132bc576132bc613c82565b6001600160a01b03928316602091820292909201810191909152601954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015613315573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133399190613c65565b8160018151811061334c5761334c613c82565b6001600160a01b03928316602091820292909201015260195460405163791ac94760e01b815291169063791ac94790613392908590600090869030904290600401613d11565b600060405180830381600087803b1580156133ac57600080fd5b505af11580156133c0573d6000803e3d6000fd5b505050505050565b80602160008282546133da9190613b74565b90915550506019546133f79030906001600160a01b0316846120b7565b60195460405163f305d71960e01b81526001600160a01b039091169063f305d7199083906134349030908790600090819084904290600401613c2a565b60606040518083038185885af1158015613452573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611ef39190613d4d565b6000818152600183016020526040812054801561355a57600061349b600183613a29565b85549091506000906134af90600190613a29565b905060008660000182815481106134c8576134c8613c82565b90600052602060002001549050808760000184815481106134eb576134eb613c82565b60009182526020808320909101929092558281526001890190915260409020849055865487908061351e5761351e613d7b565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610e9b565b6000915050610e9b565b815460009082106135c25760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610dba565b8260000182815481106135d7576135d7613c82565b9060005260206000200154905092915050565b6001600160a01b03821660009081526001602052604081205461360e908390613a29565b905061361983611496565b1561363e576001600160a01b0390921660009081526001602052604090209190915550565b600061364984612547565b6001600160a01b0385166000908152600160205260409020839055601a54909150613675908390613a40565b6001600160a01b0385166000908152601f6020908152604080832093909355805290812080548392906129b1908490613b74565b6001600160a01b0382166000908152600160205260408120546136cd908390613b74565b90506136d883611496565b156136fd576001600160a01b0390921660009081526001602052604090209190915550565b600061370884612547565b905081601a546137189190613a40565b6001600160a01b0385166000908152601f60209081526040808320939093558052908120805483929061374c908490613b74565b9091555050506001600160a01b0390921660009081526001602052604090209190915550565b60006127108260ff168460ff168661378a9190613a40565b6137949190613a40565b61379e9190613a5f565b949350505050565b6000602082840312156137b857600080fd5b5035919050565b600060208083528351808285015260005b818110156137ec578581018301518582016040015282016137d0565b818111156137fe576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461133357600080fd5b6000806040838503121561383c57600080fd5b823561384781613814565b946020939093013593505050565b801515811461133357600080fd5b60006020828403121561387557600080fd5b81356115a381613855565b60008060006060848603121561389557600080fd5b83356138a081613814565b925060208401356138b081613814565b929592945050506040919091013590565b6000602082840312156138d357600080fd5b81356115a381613814565b803560ff811681146138ef57600080fd5b919050565b60008060008060008060c0878903121561390d57600080fd5b613916876138de565b9550613924602088016138de565b9450613932604088016138de565b9350613940606088016138de565b925061394e608088016138de565b915061395c60a088016138de565b90509295509295509295565b60006020828403121561397a57600080fd5b6115a3826138de565b6000806040838503121561399657600080fd5b50508035926020909101359150565b600080604083850312156139b857600080fd5b82356139c381613814565b915060208301356139d381613814565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015613a3b57613a3b613a13565b500390565b6000816000190483118215151615613a5a57613a5a613a13565b500290565b600082613a7c57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b80851115613abc578160001904821115613aa257613aa2613a13565b80851615613aaf57918102915b93841c9390800290613a86565b509250929050565b600082613ad357506001610e9b565b81613ae057506000610e9b565b8160018114613af65760028114613b0057613b1c565b6001915050610e9b565b60ff841115613b1157613b11613a13565b50506001821b610e9b565b5060208310610133831016604e8410600b8410161715613b3f575081810a610e9b565b613b498383613a81565b8060001904821115613b5d57613b5d613a13565b029392505050565b60006115a360ff841683613ac4565b60008219821115613b8757613b87613a13565b500190565b600060ff821660ff84168060ff03821115613ba957613ba9613a13565b019392505050565b60208082526010908201526f139bdd081e595d081d5b9b1bd8dad95960821b604082015260600190565b600060208284031215613bed57600080fd5b5051919050565b600060208284031215613c0657600080fd5b81516115a381613855565b600060018201613c2357613c23613a13565b5060010190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600060208284031215613c7757600080fd5b81516115a381613814565b634e487b7160e01b600052603260045260246000fd5b600081518084526020808501945080840160005b83811015613cd15781516001600160a01b031687529582019590820190600101613cac565b509495945050505050565b848152608060208201526000613cf56080830186613c98565b6001600160a01b03949094166040830152506060015292915050565b85815284602082015260a060408201526000613d3060a0830186613c98565b6001600160a01b0394909416606083015250608001529392505050565b600080600060608486031215613d6257600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220ffe613fcb17ab390a53f04a3cf3725df041cd7da529f7938ab06a41d9d579d0c64736f6c634300080d0033

Deployed Bytecode Sourcemap

27594:36295:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53146:269;;;;;;;;;;-1:-1:-1;53146:269:0;;;;;:::i;:::-;;:::i;61543:94::-;;;;;;;;;;-1:-1:-1;61624:5:0;;;;;;;;;;;;-1:-1:-1;;;61624:5:0;;;;61543:94;;;;;;;:::i;:::-;;;;;;;;41005:31;;;;;;;;;;-1:-1:-1;41005:31:0;;;;;;;;;;;973:4:1;961:17;;;943:36;;931:2;916:18;41005:31:0;801:184:1;62428:161:0;;;;;;;;;;-1:-1:-1;62428:161:0;;;;;:::i;:::-;;:::i;:::-;;;1611:14:1;;1604:22;1586:41;;1574:2;1559:18;62428:161:0;1446:187:1;29142:43:0;;;;;;;;;;;;29182:3;29142:43;;;;;1812:6:1;1800:19;;;1782:38;;1770:2;1755:18;29142:43:0;1638:188:1;51155:102:0;;;;;;;;;;-1:-1:-1;51237:12:0;;51155:102;;;1977:25:1;;;1965:2;1950:18;51155:102:0;1831:177:1;51726:100:0;;;;;;;;;;-1:-1:-1;51807:11:0;;51726:100;;54058:104;;;;;;;;;;-1:-1:-1;54058:104:0;;;;;:::i;:::-;;:::i;61853:108::-;;;;;;;;;;-1:-1:-1;61935:18:0;;61853:108;;28469:62;;;;;;;;;;;;;:::i;62902:392::-;;;;;;;;;;-1:-1:-1;62902:392:0;;;;;:::i;:::-;;:::i;56115:81::-;;;;;;;;;;;;;:::i;28692:31::-;;;;;;;;;;;;;;;;50561:244;;;;;;;;;;-1:-1:-1;50732:8:0;;50561:244;;;50732:8;;;;;;3130:25:1;;50741:13:0;;;;;3186:2:1;3171:18;;3164:34;-1:-1:-1;;;50755:11:0;;;;3214:18:1;;;3207:34;;;;50767:7:0;;;3272:2:1;3257:18;;3250:34;50732:8:0;50775;;;;3315:3:1;3300:19;;3293:35;50784:12:0;;;;;3359:3:1;3344:19;;3337:35;3117:3;3102:19;50561:244:0;2843:535:1;52792:27:0;;;;;;;;;;-1:-1:-1;52792:27:0;;;;;;;;29028:44;;;;;;;;;;;;29070:2;29028:44;;61751:94;;;;;;;;;;-1:-1:-1;28461:1:0;61751:94;;52411:191;;;;;;;;;;-1:-1:-1;52411:191:0;;;;;:::i;:::-;;:::i;29328:49::-;;;;;;;;;;;;29368:9;29328:49;;57496:143;;;;;;;;;;-1:-1:-1;57496:143:0;;;;;:::i;:::-;;:::i;63329:205::-;;;;;;;;;;-1:-1:-1;63329:205:0;;;;;:::i;:::-;;:::i;46768:25::-;;;;;;;;;;;;;;;;28873:38;;;;;;;;;;;;;;;;40961:27;;;;;;;;;;;;;;;;52826:26;;;;;;;;;;;;;;;;51970:107;;;;;;;;;;;;;:::i;57767:26::-;;;;;;;;;;-1:-1:-1;57767:26:0;;;;;;;;;;;58076:146;;;;;;;;;;-1:-1:-1;58076:146:0;;;;;:::i;:::-;;:::i;30263:46::-;;;;;;;;;;;;;;;;55336:492;;;;;;;;;;-1:-1:-1;55336:492:0;;;;;:::i;:::-;;:::i;41088:31::-;;;;;;;;;;;;;;;;51269:110;;;;;;;;;;-1:-1:-1;51352:19:0;;51269:110;;60704:311;;;;;;;;;;;;;:::i;58429:153::-;;;;;;;;;;-1:-1:-1;58429:153:0;;;;;:::i;:::-;;:::i;53622:110::-;;;;;;;;;;-1:-1:-1;53622:110:0;;;;;:::i;:::-;;:::i;50404:149::-;;;;;;;;;;;;;:::i;:::-;;;;4510:25:1;;;4566:2;4551:18;;4544:34;;;;4483:18;50404:149:0;4336:248:1;61969:121:0;;;;;;;;;;-1:-1:-1;61969:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;62064:18:0;62037:7;62064:18;;;:9;:18;;;;;;;61969:121;9455:140;;;;;;;;;;;;;:::i;41572:132::-;;;;;;;;;;-1:-1:-1;41572:132:0;;;;;:::i;:::-;;:::i;55905:142::-;;;;;;;;;;-1:-1:-1;55905:142:0;;;;;:::i;:::-;;:::i;30207:49::-;;;;;;;;;;;;;;;;57881:127;;;;;;;;;;;;;:::i;52180:110::-;;;;;;;;;;;;;:::i;40747:29::-;;;;;;;;;;;;;;;;52859:28;;;;;;;;;;-1:-1:-1;52859:28:0;;;;;;;;50874:275;;;;;;;;;;-1:-1:-1;50874:275:0;;;;;:::i;:::-;;:::i;52723:28::-;;;;;;;;;;-1:-1:-1;52723:28:0;;;;;;;;61441:94;;;;;;;;;;-1:-1:-1;61493:7:0;8879:6;-1:-1:-1;;;;;8879:6:0;61441:94;;;-1:-1:-1;;;;;4940:32:1;;;4922:51;;4910:2;4895:18;61441:94:0;4776:203:1;8814:79:0;;;;;;;;;;-1:-1:-1;8852:7:0;8879:6;-1:-1:-1;;;;;8879:6:0;8814:79;;29735:78;;;;;;;;;;-1:-1:-1;29735:78:0;;;;-1:-1:-1;;;;;29735:78:0;;;61645:98;;;;;;;;;;-1:-1:-1;61728:7:0;;;;;;;;;;;;-1:-1:-1;;;61728:7:0;;;;61645:98;;58883:466;;;;;;;;;;;;;:::i;53500:110::-;;;;;;;;;;-1:-1:-1;53500:110:0;;;;;:::i;:::-;;:::i;56305:895::-;;;;;;;;;;-1:-1:-1;56305:895:0;;;;;:::i;:::-;;:::i;63542:342::-;;;;;;;;;;-1:-1:-1;63542:342:0;;;;;:::i;:::-;;:::i;62098:167::-;;;;;;;;;;-1:-1:-1;62098:167:0;;;;;:::i;:::-;;:::i;53879:115::-;;;;;;;;;;-1:-1:-1;53879:115:0;;;;;:::i;:::-;;:::i;54229:102::-;;;;;;;;;;-1:-1:-1;54229:102:0;;;;;:::i;:::-;;:::i;52339:64::-;;;;;;;;;;;;;:::i;50039:220::-;;;;;;;;;;;;;:::i;50267:129::-;;;;;;;;;;;;;:::i;55194:112::-;;;;;;;;;;-1:-1:-1;55194:112:0;;;;;:::i;:::-;;:::i;55001:125::-;;;;;;;;;;-1:-1:-1;55001:125:0;;;;;:::i;:::-;;:::i;54404:202::-;;;;;;;;;;-1:-1:-1;54404:202:0;;;;;:::i;:::-;;:::i;29820:76::-;;;;;;;;;;-1:-1:-1;29820:76:0;;;;-1:-1:-1;;;;;29820:76:0;;;62273:147;;;;;;;;;;-1:-1:-1;62273:147:0;;;;;:::i;:::-;-1:-1:-1;;;;;62384:19:0;;;62357:7;62384:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;62273:147;54682:195;;;;;;;;;;-1:-1:-1;54682:195:0;;;;;:::i;:::-;;:::i;53744:123::-;;;;;;;;;;-1:-1:-1;53744:123:0;;;;;:::i;:::-;;:::i;41945:411::-;;;;;;;;;;;;;:::i;51447:273::-;;;;;;;;;;-1:-1:-1;51447:273:0;;;;;:::i;:::-;;:::i;59407:1211::-;;;;;;;;;;-1:-1:-1;59407:1211:0;;;;;:::i;:::-;;:::i;40858:33::-;;;;;;;;;;;;;;;;57280:135;;;;;;;;;;-1:-1:-1;57280:135:0;;;;;:::i;:::-;;:::i;9750:236::-;;;;;;;;;;-1:-1:-1;9750:236:0;;;;;:::i;:::-;;:::i;52758:27::-;;;;;;;;;;;;;;;;52897:242;;;;;;;;;;;;;:::i;41751:118::-;;;;;;;;;;-1:-1:-1;41751:118:0;;;;;:::i;:::-;;:::i;53146:269::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;;;;;;;;;53239:16:::1;;53231:6;:24;;53223:33;;;::::0;::::1;;53285:6;53267:16;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;53310:11:0::1;::::0;-1:-1:-1;;;;;53310:11:0::1;53302:48;53346:3;53333:9;:6:::0;53340:2:::1;53333:9;:::i;:::-;53332:17;;;;:::i;:::-;53302:48;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;53369:9:0::1;::::0;-1:-1:-1;;;;;53369:9:0::1;53361:46;53403:3;53390:9;:6:::0;53397:2:::1;53390:9;:::i;:::-;53389:17;;;;:::i;:::-;53361:46;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53146:269:::0;:::o;62428:161::-;62505:4;62522:37;62531:10;62543:7;62552:6;62522:8;:37::i;:::-;-1:-1:-1;62577:4:0;62428:161;;;;;:::o;54058:104::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;54129:16:::1;:25:::0;;-1:-1:-1;;54129:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54058:104::o;28469:62::-;28518:13;28461:1;28518:2;:13;:::i;:::-;28508:23;;:7;:23;:::i;:::-;28469:62;:::o;62902:392::-;63002:4;63019:36;63029:6;63037:9;63048:6;63019:9;:36::i;:::-;-1:-1:-1;;;;;63095:19:0;;63068:24;63095:19;;;:11;:19;;;;;;;;63115:10;63095:31;;;;;;;;63145:26;;;;63137:59;;;;-1:-1:-1;;;63137:59:0;;8233:2:1;63137:59:0;;;8215:21:1;8272:2;8252:18;;;8245:30;-1:-1:-1;;;8291:18:1;;;8284:50;8351:18;;63137:59:0;8031:344:1;63137:59:0;63209:55;63218:6;63226:10;63238:25;63257:6;63238:16;:25;:::i;:::-;63209:8;:55::i;:::-;-1:-1:-1;63282:4:0;;62902:392;-1:-1:-1;;;;62902:392:0:o;56115:81::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;56168:20:::1;:18;:20::i;:::-;56115:81::o:0;52411:191::-;52468:7;52490:27;52512:4;52490:21;:27::i;:::-;52487:53;;;-1:-1:-1;;;;;;52526:14:0;;;;;:8;:14;;;;;;;52411:191::o;52487:53::-;-1:-1:-1;;;;;52580:14:0;;;;;;:8;:14;;;;;;52558:21;52589:4;52558:15;:21::i;:::-;:36;;;;:::i;57496:143::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;57590:41:::1;:14;57612:18:::0;57590:21:::1;:41::i;63329:205::-:0;63437:10;63411:4;63458:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;63458:32:0;;;;;;;;;;63411:4;;63428:76;;63449:7;;63458:45;;63493:10;;63458:45;:::i;51970:107::-;52057:12;;52041:28;;:15;:28;:::i;:::-;52029:10;52019:21;;;;:9;:21;;;;;:50;51970:107::o;58076:146::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;58170:22:::1;:44:::0;;-1:-1:-1;;;;;58170:44:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;58170:44:0;;::::1;::::0;;;::::1;::::0;;58076:146::o;55336:492::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;55491:14:::1;55531:12:::0;55506:24:::1;55516:14:::0;55506:9;:24:::1;:::i;:::-;:37;;;;:::i;:::-;55491:52;;55562:8;:13;;55572:3;55562:13;55554:64;;;::::0;-1:-1:-1;;;55554:64:0;;8924:2:1;55554:64:0::1;::::0;::::1;8906:21:1::0;8963:2;8943:18;;;8936:30;9002:34;8982:18;;;8975:62;-1:-1:-1;;;9053:18:1;;;9046:36;9099:19;;55554:64:0::1;8722:402:1::0;55554:64:0::1;-1:-1:-1::0;55631:8:0::1;:18:::0;;::::1;55796:24:::0;;::::1;::::0;::::1;-1:-1:-1::0;;55769:16:0;;::::1;55631:18;55769:16;-1:-1:-1::0;;55699:24:0;;::::1;-1:-1:-1::0;;;55699:24:0::1;55769:16:::0;;;;-1:-1:-1;;55660:28:0;;::::1;::::0;::::1;-1:-1:-1::0;;55631:18:0;;::::1;::::0;::::1;55660:28:::0;;;;-1:-1:-1;;55660:28:0;;;;;;;;;;::::1;55769:16:::0;;;;;;;;55744:14;::::1;55769:16:::0;;;;;;;::::1;55796:24;::::0;;;::::1;::::0;;55336:492::o;60704:311::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;60793:20:::1;;60774:15;:39;;60766:68;;;;-1:-1:-1::0;;;60766:68:0::1;;;;;;;:::i;:::-;60866:40;29706:4;60866:15;:40;:::i;:::-;60845:20;:61:::0;60931:11:::1;::::0;:52:::1;::::0;60918:9:::1;::::0;-1:-1:-1;;;;;60931:11:0::1;::::0;60956:21:::1;::::0;60918:9;60931:52;60918:9;60931:52;60956:21;60931:11;:52:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60917:66;;;61002:4;60994:13;;;::::0;::::1;;60755:260;60704:311::o:0;58429:153::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;58517:57:::1;58539:34;58558:15;58539:18:::0;:34:::1;:::i;:::-;58517:21;:57::i;53622:110::-:0;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;53711:13:::1;28461:1;53711:2;:13;:::i;:::-;53699:25;::::0;:9;:25:::1;:::i;:::-;53692:6;:32:::0;-1:-1:-1;53622:110:0:o;50404:149::-;50445:15;;50506:13;28461:1;50506:2;:13;:::i;:::-;50493:12;;:26;;;;:::i;:::-;50531:13;28461:1;50531:2;:13;:::i;:::-;50521:9;;:23;;;;:::i;:::-;50486:59;;;;50404:149;;:::o;9455:140::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;9554:1:::1;9538:6:::0;;9517:40:::1;::::0;-1:-1:-1;;;;;9538:6:0;;::::1;::::0;9517:40:::1;::::0;9554:1;;9517:40:::1;9585:1;9568:19:::0;;-1:-1:-1;;;;;;9568:19:0::1;::::0;;9455:140::o;41572:132::-;41638:4;41661:35;:20;41691:4;41661:29;:35::i;55905:142::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;56000:3:::1;55990:8;:13;;;;55982:22;;;::::0;::::1;;56016:14;:23:::0;;-1:-1:-1;;56016:23:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;55905:142::o;57881:127::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;57938:14:::1;:19:::0;;-1:-1:-1;;57938:19:0::1;;;::::0;;57985:15:::1;57968:16;:32:::0;57881:127::o;52180:110::-;52265:11;;52249:27;;:15;:27;:::i;:::-;52237:10;52228:20;;;;:8;:20;;;;;:48;52180:110::o;50874:275::-;-1:-1:-1;;;;;50995:25:0;;50960:7;50995:25;;;:9;:25;;;;;;51043:15;51033:25;;51030:71;;-1:-1:-1;51089:1:0;;50874:275;-1:-1:-1;;50874:275:0:o;51030:71::-;51117:24;51126:15;51117:8;:24;:::i;:::-;51110:31;50874:275;-1:-1:-1;;;50874:275:0:o;61520:7::-;61513:14;;61441:94;:::o;58883:466::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;59011:20:::1;;58992:15;:39;;58984:68;;;;-1:-1:-1::0;;;58984:68:0::1;;;;;;;:::i;:::-;59122:22;::::0;59173:39:::1;::::0;-1:-1:-1;;;59173:39:0;;59206:4:::1;59173:39;::::0;::::1;4922:51:1::0;59122:22:0;;;::::1;-1:-1:-1::0;;;;;59122:22:0::1;::::0;59073:30:::1;::::0;59122:22;;59173:24:::1;::::0;4895:18:1;;59173:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59311:11;::::0;59287:44:::1;::::0;-1:-1:-1;;;59287:44:0;;-1:-1:-1;;;;;59311:11:0;;::::1;59287:44;::::0;::::1;10047:51:1::0;10114:18;;;10107:34;;;59156:56:0;;-1:-1:-1;59287:23:0;::::1;::::0;::::1;::::0;10020:18:1;;59287:44:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58915:434;;58883:466::o:0;53500:110::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;53579:16:::1;:23:::0;;-1:-1:-1;;53579:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53500:110::o;56305:895::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;56541:3:::1;56522:18;;:22;;;;:::i;:::-;56509:12;:35;56501:44;;;::::0;::::1;;56623:13;28461:1;56623:2;:13;:::i;:::-;56607:29;::::0;:15;:29:::1;:::i;:::-;56591:45:::0;-1:-1:-1;56673:13:0::1;28461:1;56673:2;:13;:::i;:::-;56660:26;::::0;:12;:26:::1;:::i;:::-;56647:39;;56753:26;29070:2;56780:38;;:18;;:38;;;;:::i;:::-;56753:65;;56829:23;29182:3;56853:35;;:18;;:35;;;;:::i;:::-;56829:59;;56927:18;56910:15;:35;;56901:103;;;::::0;-1:-1:-1;;;56901:103:0;;10604:2:1;56901:103:0::1;::::0;::::1;10586:21:1::0;10643:2;10623:18;;;10616:30;10682:34;10662:18;;;10655:62;-1:-1:-1;;;10733:18:1;;;10726:41;10784:19;;56901:103:0::1;10402:407:1::0;56901:103:0::1;57038:15;57024:12;:29;;57015:94;;;::::0;-1:-1:-1;;;57015:94:0;;11016:2:1;57015:94:0::1;::::0;::::1;10998:21:1::0;11055:2;11035:18;;;11028:30;11094:34;11074:18;;;11067:62;-1:-1:-1;;;11145:18:1;;;11138:38;11193:19;;57015:94:0::1;10814:404:1::0;57015:94:0::1;-1:-1:-1::0;;57122:12:0::1;:30:::0;;;;57163:9:::1;:24:::0;56305:895::o;63542:342::-;63685:10;63629:4;63673:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;63673:32:0;;;;;;;;;;63724:35;;;;63716:60;;;;-1:-1:-1;;;63716:60:0;;11425:2:1;63716:60:0;;;11407:21:1;11464:2;11444:18;;;11437:30;-1:-1:-1;;;11483:18:1;;;11476:42;11535:18;;63716:60:0;11223:336:1;63716:60:0;63789:65;63798:10;63810:7;63819:34;63838:15;63819:16;:34;:::i;63789:65::-;-1:-1:-1;63872:4:0;;63542:342;-1:-1:-1;;;63542:342:0:o;62098:167::-;62178:4;62195:40;62205:10;62217:9;62228:6;62195:9;:40::i;53879:115::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;53955:9:::1;:31:::0;;-1:-1:-1;;;;;;53955:31:0::1;-1:-1:-1::0;;;;;53955:31:0;;;::::1;::::0;;;::::1;::::0;;53879:115::o;54229:102::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;54299:15:::1;:24:::0;;-1:-1:-1;;54299:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54229:102::o;52339:64::-;52375:20;52384:10;52375:8;:20::i;50039:220::-;50104:7;50142:20;;50126:15;:36;50123:110;;;50206:15;50185:20;;:36;;;;:::i;50123:110::-;-1:-1:-1;50250:1:0;;50039:220::o;50267:129::-;50314:7;50375:13;28461:1;50375:2;:13;:::i;:::-;50355:18;;28518:13;28461:1;28518:2;:13;:::i;:::-;28508:23;;:7;:23;:::i;:::-;50341:32;;;;:::i;:::-;50340:48;;;;:::i;55194:112::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;55271:27:::1;:9;55285:12:::0;55271:13:::1;:27::i;55001:125::-:0;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;55083:19:::1;:35:::0;55001:125::o;54404:202::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;54496:32;;54488:67:::1;;;::::0;-1:-1:-1;;;54488:67:0;;11766:2:1;54488:67:0::1;::::0;::::1;11748:21:1::0;11805:2;11785:18;;;11778:30;11844:25;11824:18;;;11817:53;11887:18;;54488:67:0::1;11564:347:1::0;54488:67:0::1;54570:12;:28:::0;54404:202::o;54682:195::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;54772:30;;54764:64:::1;;;::::0;-1:-1:-1;;;54764:64:0;;12118:2:1;54764:64:0::1;::::0;::::1;12100:21:1::0;12157:2;12137:18;;;12130:30;-1:-1:-1;;;12176:18:1;;;12169:52;12238:18;;54764:64:0::1;11916:346:1::0;54764:64:0::1;54843:11;:26:::0;54682:195::o;53744:123::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;53824:11:::1;:35:::0;;-1:-1:-1;;;;;;53824:35:0::1;-1:-1:-1::0;;;;;53824:35:0;;;::::1;::::0;;;::::1;::::0;;53744:123::o;41945:411::-;42027:18;;41993:7;;;42202:123;42218:29;:20;:27;:29::i;:::-;42216:1;:31;42202:123;;;42276:9;:37;42286:26;:20;42310:1;42286:23;:26::i;:::-;-1:-1:-1;;;;;42276:37:0;;;;;;;;;;;;-1:-1:-1;42276:37:0;;42268:45;;;;:::i;:::-;;-1:-1:-1;42249:3:0;;;;:::i;:::-;;;;42202:123;;;-1:-1:-1;42342:6:0;41945:411;-1:-1:-1;41945:411:0:o;51447:273::-;-1:-1:-1;;;;;51567:24:0;;51532:7;51567:24;;;:8;:24;;;;;;51614:15;51604:25;;51601:71;;-1:-1:-1;51660:1:0;;51447:273;-1:-1:-1;;51447:273:0:o;59407:1211::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;59551:20:::1;;59532:15;:39;;59524:68;;;;-1:-1:-1::0;;;59524:68:0::1;;;;;;;:::i;:::-;59624:40;29706:4;59624:15;:40;:::i;:::-;59603:20;:61:::0;59724:22:::1;::::0;59775:39:::1;::::0;-1:-1:-1;;;59775:39:0;;59808:4:::1;59775:39;::::0;::::1;4922:51:1::0;59724:22:0;;;::::1;-1:-1:-1::0;;;;;59724:22:0::1;::::0;59675:30:::1;::::0;59724:22;;59775:24:::1;::::0;4895:18:1;;59775:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59858:16;::::0;59827:56:::1;::::0;-1:-1:-1;;;59827:56:0;;-1:-1:-1;;;;;59858:16:0;;::::1;59827:56;::::0;::::1;10047:51:1::0;10114:18;;;10107:34;;;59758:56:0;;-1:-1:-1;59827:22:0;::::1;::::0;::::1;::::0;10020:18:1;;59827:56:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;60160:16:0::1;::::0;:218:::1;::::0;-1:-1:-1;;;60160:218:0;;60128:21:::1;::::0;-1:-1:-1;;;;;60160:16:0::1;::::0;:64:::1;::::0;:218:::1;::::0;60247:4:::1;::::0;60267:6;;60100:25:::1;::::0;;;60247:4;;60348:15:::1;::::0;60160:218:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;60389:21:0::1;60413:39;60435:17:::0;60413:21:::1;:39;:::i;:::-;60389:63;;60466:12;60463:146;;;60494:31;60511:13;60494:16;:31::i;:::-;60463:146;;;60584:13;60566:16;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;60463:146:0::1;59455:1163;;;;59407:1211:::0;:::o;57280:135::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;57369:38:::1;:14;57388:18:::0;57369::::1;:38::i;9750:236::-:0;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9831:22:0;::::1;9823:73;;;::::0;-1:-1:-1;;;9823:73:0;;13221:2:1;9823:73:0::1;::::0;::::1;13203:21:1::0;13260:2;13240:18;;;13233:30;13299:34;13279:18;;;13272:62;-1:-1:-1;;;13350:18:1;;;13343:36;13396:19;;9823:73:0::1;13019:402:1::0;9823:73:0::1;9933:6;::::0;;9912:38:::1;::::0;-1:-1:-1;;;;;9912:38:0;;::::1;::::0;9933:6;::::1;::::0;9912:38:::1;::::0;::::1;9961:6;:17:::0;;-1:-1:-1;;;;;;9961:17:0::1;-1:-1:-1::0;;;;;9961:17:0;;;::::1;::::0;;;::::1;::::0;;9750:236::o;52897:242::-;9037:10;9026:7;8852;8879:6;-1:-1:-1;;;;;8879:6:0;;8814:79;9026:7;-1:-1:-1;;;;;9026:21:0;;9018:66;;;;-1:-1:-1;;;9018:66:0;;;;;;;:::i;:::-;52970:16:::1;::::0;;52955:14:::1;52997:18:::0;;;53034:11:::1;::::0;-1:-1:-1;;;;;53034:11:0::1;53026:48;53070:3;53057:9;52970:16:::0;53064:2:::1;53057:9;:::i;41751:118::-:0;41809:4;41832:29;:14;41856:4;41832:23;:29::i;24501:152::-;24571:4;24595:50;24600:3;-1:-1:-1;;;;;24620:23:0;;24595:4;:50::i;62595:299::-;-1:-1:-1;;;;;62688:19:0;;62680:49;;;;-1:-1:-1;;;62680:49:0;;13628:2:1;62680:49:0;;;13610:21:1;13667:2;13647:18;;;13640:30;-1:-1:-1;;;13686:18:1;;;13679:47;13743:18;;62680:49:0;13426:341:1;62680:49:0;-1:-1:-1;;;;;62748:21:0;;62740:49;;;;-1:-1:-1;;;62740:49:0;;13974:2:1;62740:49:0;;;13956:21:1;14013:2;13993:18;;;13986:30;-1:-1:-1;;;14032:18:1;;;14025:45;14087:18;;62740:49:0;13772:339:1;62740:49:0;-1:-1:-1;;;;;62802:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;62854:32;;1977:25:1;;;62854:32:0;;1950:18:1;62854:32:0;;;;;;;62595:299;;;:::o;32753:1544::-;-1:-1:-1;;;;;32849:20:0;;32841:51;;;;-1:-1:-1;;;32841:51:0;;14318:2:1;32841:51:0;;;14300:21:1;14357:2;14337:18;;;14330:30;-1:-1:-1;;;14376:18:1;;;14369:48;14434:18;;32841:51:0;14116:342:1;32841:51:0;-1:-1:-1;;;;;32911:23:0;;32903:52;;;;-1:-1:-1;;;32903:52:0;;14665:2:1;32903:52:0;;;14647:21:1;14704:2;14684:18;;;14677:30;-1:-1:-1;;;14723:18:1;;;14716:46;14779:18;;32903:52:0;14463:340:1;32903:52:0;33048:15;33067:26;:9;33086:6;33067:18;:26::i;:::-;:59;;;-1:-1:-1;33097:29:0;:9;33116;33097:18;:29::i;:::-;33048:79;-1:-1:-1;33226:23:0;-1:-1:-1;;;;;33251:21:0;;33267:4;33251:21;;:49;;-1:-1:-1;;;;;;33276:24:0;;33295:4;33276:24;33251:49;33439:16;;33506:21;;33226:75;;-1:-1:-1;;;;;;33439:16:0;;;;33407:23;;33496:31;;;-1:-1:-1;;;33506:21:0;;;;33496:31;:63;;;;;33544:15;-1:-1:-1;;;;;33531:28:0;:9;-1:-1:-1;;;;;33531:28:0;;33496:63;33495:144;;;-1:-1:-1;33588:21:0;;-1:-1:-1;;;;;33575:34:0;;;-1:-1:-1;;;33588:21:0;;;;33575:34;:63;;;;;33623:15;-1:-1:-1;;;;;33613:25:0;:6;-1:-1:-1;;;;;33613:25:0;;33575:63;33761:21;;33467:173;;-1:-1:-1;33742:10:0;;-1:-1:-1;;;;;33753:29:0;;;-1:-1:-1;;;33761:21:0;;;;33753:29;;:57;;;33795:15;-1:-1:-1;;;;;33785:25:0;:6;-1:-1:-1;;;;;33785:25:0;;33753:57;33844:21;;33742:68;;-1:-1:-1;33821:11:0;;-1:-1:-1;;;;;33833:32:0;;;-1:-1:-1;;;33844:21:0;;;;33833:32;;:63;;;33881:15;-1:-1:-1;;;;;33868:28:0;:9;-1:-1:-1;;;;;33868:28:0;;33833:63;33821:75;;33937:18;:41;;;;33959:19;33937:41;:55;;;;33982:10;33937:55;33934:356;;;34008:43;34025:6;34033:9;34044:6;34008:16;:43::i;:::-;33934:356;;;34170:14;;;;;;;34162:49;;;;-1:-1:-1;;;34162:49:0;;15010:2:1;34162:49:0;;;14992:21:1;15049:2;15029:18;;;15022:30;15088:25;15068:18;;;15061:53;15131:18;;34162:49:0;14808:347:1;34162:49:0;34226:52;34241:6;34248:9;34258:6;34265:5;34271:6;34226:14;:52::i;:::-;32830:1467;;;;;;32753:1544;;;:::o;47252:1628::-;46921:27;:34;;-1:-1:-1;;46921:34:0;46951:4;46921:34;;;;;;47354:4:::1;46921:27:::0;47336:24;;;::::1;::::0;;;;;;;;47401:11:::1;::::0;47336:24;;46921:27;47387:25:::1;::::0;-1:-1:-1;;;47401:11:0;::::1;46921:34:::0;47401:11;;::::1;::::0;47387:13;;::::1;;:25;:::i;:::-;47371:41;;;;47423:19;47445;;47423:41;;47591:11;47575:15;:27;:40;;;-1:-1:-1::0;47604:11:0::1;::::0;::::1;::::0;47575:40:::1;47572:77;;;47631:7;;;;;47572:77;47769:13;::::0;47730:25:::1;::::0;47756:36:::1;::::0;::::1;::::0;47757:25:::1;::::0;47769:13;;::::1;;;47757:11:::0;:25:::1;:::i;:::-;47756:36;;;;:::i;:::-;47730:62:::0;-1:-1:-1;47803:25:0::1;47830:29;47730:62:::0;47830:11;:29:::1;:::i;:::-;47803:56:::0;-1:-1:-1;47920:16:0::1;47937:19;47955:1;47937:17:::0;:19:::1;:::i;:::-;47920:36:::0;-1:-1:-1;47967:19:0::1;47987:26;47920:36:::0;47987:17;:26:::1;:::i;:::-;47967:46:::0;-1:-1:-1;48096:17:0::1;48114:29;48126:17:::0;47967:46;48114:29:::1;:::i;:::-;48096:47:::0;-1:-1:-1;48258:21:0::1;48290:27;48096:47:::0;48290:16:::1;:27::i;:::-;48328:14;48344:41;48368:17:::0;48344:21:::1;:41;:::i;:::-;48328:58:::0;-1:-1:-1;48486:14:0::1;48524:9:::0;48504:18:::1;48511:11:::0;48328:58;48504:18:::1;:::i;:::-;48503:30;;;;:::i;:::-;48486:47;;48544:31;48558:8;48568:6;48544:13;:31::i;:::-;48698:21;48721:41;48745:17:::0;48721:21:::1;:41;:::i;:::-;48698:65;;48841:31;48858:13;48841:16;:31::i;:::-;47301:1579;;;;;;;;;;;;46966:1;46978:27:::0;:35;;-1:-1:-1;;46978:35:0;;;47252:1628::o;43982:427::-;-1:-1:-1;;;;;44103:17:0;;44045:7;44103:17;;;:9;:17;;;;;;44086:14;;44045:7;;44086:34;;;:::i;:::-;-1:-1:-1;;;;;44283:25:0;;;;;;:17;:25;;;;;;44065:55;;-1:-1:-1;44272:36:0;;44269:49;;;-1:-1:-1;44317:1:0;;43982:427;-1:-1:-1;;43982:427:0:o;44269:49::-;-1:-1:-1;;;;;44350:25:0;;;;;;:17;:25;;;;;;-1:-1:-1;;;40666:5:0;44337:38;;:10;:38;:::i;:::-;44336:65;;;;:::i;24829:158::-;24902:4;24926:53;24934:3;-1:-1:-1;;;;;24954:23:0;;24926:7;:53::i;58588:230::-;58744:20;;58730:13;:34;58722:43;;;;;;58776:20;:34;58588:230::o;25073:167::-;-1:-1:-1;;;;;25207:23:0;;25153:4;21882:19;;;:12;;;:19;;;;;;:24;;25177:55;21785:129;45352:1236;45411:14;;-1:-1:-1;;;45411:14:0;;;;45410:15;45402:24;;;;;;45437:14;:19;;-1:-1:-1;;;;45437:19:0;-1:-1:-1;;;45437:19:0;;;;45495:27;45517:4;45495:21;:27::i;:::-;45492:495;;;-1:-1:-1;;;;;;45609:14:0;;;;;;:8;:14;;;;;;;45638:16;;;45492:495;;;45695:17;45713:21;45729:4;45713:15;:21::i;:::-;-1:-1:-1;;;;;45845:15:0;;;;;;:9;:15;;;;;;45828:14;;45695:39;;-1:-1:-1;45828:32:0;;;:::i;:::-;-1:-1:-1;;;;;45802:23:0;;;;;;:17;:23;;;;;;;;:58;;;;45920:14;;;;:24;;45935:9;;45920:24;:::i;:::-;-1:-1:-1;;;;;45959:14:0;;45974:1;45959:14;;;:8;:14;;;;;:16;45913:31;-1:-1:-1;;45492:495:0;46000:6;46008:1;46000:9;45997:106;;-1:-1:-1;;46050:14:0;:20;;-1:-1:-1;;;;46050:20:0;;;45352:1236::o;45997:106::-;46127:6;46113:12;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;46168:16:0;;;46182:1;46168:16;;;;;;;;46144:21;;46168:16;;;;;;;;-1:-1:-1;;46205:16:0;;:23;;;-1:-1:-1;;;46205:23:0;;;;46144:40;;-1:-1:-1;;;;;;46205:16:0;;;;:21;;-1:-1:-1;46205:23:0;;;;;;;;;;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46195:4;46200:1;46195:7;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;46195:33:0;;;-1:-1:-1;;;;;46195:33:0;;;;;46255:42;46245:4;46250:1;46245:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46245:52:0;;;:7;;;;;;;;;:52;46345:16;;:151;;-1:-1:-1;;;46345:151:0;;:16;;;:67;;46420:6;;46345:151;;:16;;46450:4;;46465;;46480:15;;46345:151;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46522:27:0;;;16835:25:1;;;-1:-1:-1;;;;;16896:32:1;;16891:2;16876:18;;16869:60;46522:27:0;;-1:-1:-1;16808:18:1;;-1:-1:-1;46522:27:0;;-1:-1:-1;16661:274:1;46522:27:0;;;;;;;;-1:-1:-1;;46560:14:0;:20;;-1:-1:-1;;;;46560:20:0;;;-1:-1:-1;45352:1236:0:o;25326:117::-;25389:7;25416:19;25424:3;22083:18;;22000:109;25787:158;25861:7;25912:22;25916:3;25928:5;25912:3;:22::i;44479:758::-;44614:14;;44576:22;;44632:3;;44602:26;;44614:14;;44602:9;:26;:::i;:::-;44601:34;;;;:::i;:::-;44576:59;-1:-1:-1;44646:14:0;44663:26;44576:59;44663:9;:26;:::i;:::-;44646:43;;44719:14;44701:16;;:32;;;;;;;:::i;:::-;;;;-1:-1:-1;;44757:10:0;;44753:477;;44806:6;44784:18;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;44827:19:0;;-1:-1:-1;44847:17:0;:15;:17::i;:::-;44827:37;;44958:11;44973:1;44958:16;44954:265;;45015:6;44995:16;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;44954:265:0;;-1:-1:-1;44954:265:0;;45191:11;45156:31;-1:-1:-1;;;45156:6:0;:31;:::i;:::-;45155:47;;;;:::i;:::-;45136:14;;:67;;;;;;;:::i;:::-;;;;-1:-1:-1;;44954:265:0;44769:461;44532:705;;44479:758;:::o;19556:414::-;19619:4;21882:19;;;:12;;;:19;;;;;;19636:327;;-1:-1:-1;19679:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;19862:18;;19840:19;;;:12;;;:19;;;;;;:40;;;;19895:11;;19636:327;-1:-1:-1;19946:5:0;19939:12;;39362:440;-1:-1:-1;;;;;39481:17:0;;39457:21;39481:17;;;:9;:17;;;;;;39517:23;;;;39509:60;;;;-1:-1:-1;;;39509:60:0;;17142:2:1;39509:60:0;;;17124:21:1;17181:2;17161:18;;;17154:30;-1:-1:-1;;;17200:18:1;;;17193:54;17264:18;;39509:60:0;16940:348:1;39509:60:0;39625:27;39638:6;39645;39625:12;:27::i;:::-;39705:28;39715:9;39726:6;39705:9;:28::i;:::-;39775:9;-1:-1:-1;;;;;39759:33:0;39768:6;-1:-1:-1;;;;;39759:33:0;;39785:6;39759:33;;;;1977:25:1;;1965:2;1950:18;;1831:177;39759:33:0;;;;;;;;39446:356;39362:440;;;:::o;34398:4902::-;-1:-1:-1;;;;;34541:20:0;;;34514:24;34541:20;;;:9;:20;;;;;;;34596:17;;;;;;;;34632:23;;;;34624:60;;;;-1:-1:-1;;;34624:60:0;;17142:2:1;34624:60:0;;;17124:21:1;17181:2;17161:18;;;17154:30;-1:-1:-1;;;17200:18:1;;;17193:54;17264:18;;34624:60:0;16940:348:1;34624:60:0;34697:9;34720:6;34717:3257;;;34746:38;:21;34777:6;34746:30;:38::i;:::-;34742:427;;-1:-1:-1;;;;;34934:17:0;;;;;;:9;:17;;;;;;34953:15;-1:-1:-1;34934:34:0;;:52;;-1:-1:-1;34970:16:0;;;;34934:52;34926:82;;;;-1:-1:-1;;;34926:82:0;;17495:2:1;34926:82:0;;;17477:21:1;17534:2;17514:18;;;17507:30;-1:-1:-1;;;17553:18:1;;;17546:48;17611:18;;34926:82:0;17293:342:1;34926:82:0;35141:12;;35125:28;;:15;:28;:::i;:::-;-1:-1:-1;;;;;35107:17:0;;;;;;:9;:17;;;;;:46;34742:427;35310:9;;35302:6;:17;;35294:44;;;;-1:-1:-1;;;35294:44:0;;17842:2:1;35294:44:0;;;17824:21:1;17881:2;17861:18;;;17854:30;-1:-1:-1;;;17900:18:1;;;17893:45;17955:18;;35294:44:0;17640:339:1;35294:44:0;35361:31;:14;35385:6;35361:23;:31::i;:::-;:40;35353:73;;;;-1:-1:-1;;;35353:73:0;;18186:2:1;35353:73:0;;;18168:21:1;18225:2;18205:18;;;18198:30;-1:-1:-1;;;18244:18:1;;;18237:50;18304:18;;35353:73:0;17984:344:1;35353:73:0;35485:11;;35466:16;;:30;;;;:::i;:::-;35447:15;:49;;:77;;;;;35500:19;;35523:1;35500:24;35447:77;35443:186;;;35545:26;:14;35564:6;35545:18;:26::i;:::-;-1:-1:-1;35595:18:0;;-1:-1:-1;;;;;35595:18:0;;;;;;;;35443:186;-1:-1:-1;35649:8:0;;;;;;;34717:3257;;;35682:5;35679:2295;;;35707:40;:20;35737:9;35707:29;:40::i;:::-;35703:427;;-1:-1:-1;;;;;35896:19:0;;;;;;:8;:19;;;;;;35917:15;-1:-1:-1;35896:36:0;;:53;;-1:-1:-1;35934:15:0;;;;35896:53;35888:81;;;;-1:-1:-1;;;35888:81:0;;18535:2:1;35888:81:0;;;18517:21:1;18574:2;18554:18;;;18547:30;-1:-1:-1;;;18593:18:1;;;18586:46;18649:18;;35888:81:0;18333:340:1;35888:81:0;36103:11;;36087:27;;:15;:27;:::i;:::-;-1:-1:-1;;;;;36067:19:0;;;;;;:8;:19;;;;;:47;35703:427;36268:12;;36243:23;36260:6;36243:16;:23;:::i;:::-;:37;;36235:65;;;;-1:-1:-1;;;36235:65:0;;18880:2:1;36235:65:0;;;18862:21:1;18919:2;18899:18;;;18892:30;-1:-1:-1;;;18938:18:1;;;18931:46;18994:18;;36235:65:0;18678:340:1;36235:65:0;36333:6;;36323;:16;;36315:62;;;;-1:-1:-1;;;36315:62:0;;19225:2:1;36315:62:0;;;19207:21:1;19264:2;19244:18;;;19237:30;19303:34;19283:18;;;19276:62;-1:-1:-1;;;19354:18:1;;;19347:32;19396:19;;36315:62:0;19023:398:1;36315:62:0;36400:34;:14;36424:9;36400:23;:34::i;:::-;:43;36392:76;;;;-1:-1:-1;;;36392:76:0;;18186:2:1;36392:76:0;;;18168:21:1;18225:2;18205:18;;;18198:30;-1:-1:-1;;;18244:18:1;;;18237:50;18304:18;;36392:76:0;17984:344:1;36392:76:0;36527:11;;36508:16;;:30;;;;:::i;:::-;36489:15;:49;;:77;;;;;36542:19;;36565:1;36542:24;36489:77;36485:192;;;36587:29;:14;36606:9;36587:18;:29::i;:::-;-1:-1:-1;36640:21:0;;-1:-1:-1;;;;;36640:21:0;;;;;;;;36485:192;-1:-1:-1;36697:7:0;;;;35679:2295;;;36944:15;28461:1;36944:2;:15;:::i;:::-;36936:6;:23;36933:44;;36961:16;36970:6;36961:8;:16::i;:::-;37116:12;;37091:23;37108:6;37091:16;:23;:::i;:::-;:37;;37083:65;;;;-1:-1:-1;;;37083:65:0;;18880:2:1;37083:65:0;;;18862:21:1;18919:2;18899:18;;;18892:30;-1:-1:-1;;;18938:18:1;;;18931:46;18994:18;;37083:65:0;18678:340:1;37083:65:0;37380:38;:21;37411:6;37380:30;:38::i;:::-;37376:139;;-1:-1:-1;;;;;37445:17:0;;;;;;:9;:17;;;;;;37464:15;-1:-1:-1;37445:34:0;;:52;;-1:-1:-1;37481:16:0;;;;37445:52;37437:78;;;;-1:-1:-1;;;37437:78:0;;19628:2:1;37437:78:0;;;19610:21:1;19667:2;19647:18;;;19640:30;-1:-1:-1;;;19686:18:1;;;19679:44;19740:18;;37437:78:0;19426:338:1;37437:78:0;37552:31;:14;37576:6;37552:23;:31::i;:::-;:40;37544:80;;;;-1:-1:-1;;;37544:80:0;;19971:2:1;37544:80:0;;;19953:21:1;20010:2;19990:18;;;19983:30;20049:29;20029:18;;;20022:57;20096:18;;37544:80:0;19769:351:1;37544:80:0;37647:34;:14;37671:9;37647:23;:34::i;:::-;:43;37639:86;;;;-1:-1:-1;;;37639:86:0;;20327:2:1;37639:86:0;;;20309:21:1;20366:2;20346:18;;;20339:30;20405:32;20385:18;;;20378:60;20455:18;;37639:86:0;20125:354:1;37639:86:0;37784:11;;37765:16;;:30;;;;:::i;:::-;37746:15;:49;;:77;;;;;37799:19;;37822:1;37799:24;37746:77;37742:186;;;37844:26;:14;37863:6;37844:18;:26::i;:::-;-1:-1:-1;37894:18:0;;-1:-1:-1;;;;;37894:18:0;;;;;;;;37742:186;-1:-1:-1;37948:12:0;;;;;;;35679:2295;38311:21;;-1:-1:-1;;;;;38303:29:0;;;-1:-1:-1;;;38311:21:0;;;;38303:29;;;;38302:52;;-1:-1:-1;38337:16:0;;;;38336:17;38302:52;:84;;;;-1:-1:-1;38358:27:0;;;;38357:28;38302:84;:92;;;;;38388:6;38302:92;38299:130;;;38409:20;:18;:20::i;:::-;38498:23;38522:36;38536:6;38544:3;38549:8;;;;;;;;;;;38522:13;:36::i;:::-;38727:13;;38498:60;;-1:-1:-1;38666:21:0;;38688:53;;38702:6;;38710:3;;38715:25;;38727:13;;;;;;;-1:-1:-1;;;38715:11:0;;;:25;:::i;:::-;38688:13;:53::i;:::-;38666:75;-1:-1:-1;38805:19:0;38833:31;38666:75;38833:15;:31;:::i;:::-;38825:40;;:6;:40;:::i;:::-;38805:60;;38923:27;38936:6;38943;38923:12;:27::i;:::-;39045:4;39027:24;;;;:9;:24;;;;;:41;;39055:13;;39027:24;:41;;39055:13;;39027:41;:::i;:::-;;;;;;;;39123:15;39103:18;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;39193:33:0;;-1:-1:-1;39203:9:0;39214:11;39193:9;:33::i;:::-;39268:9;-1:-1:-1;;;;;39252:38:0;39261:6;-1:-1:-1;;;;;39252:38:0;;39278:11;39252:38;;;;1977:25:1;;1965:2;1950:18;;1831:177;39252:38:0;;;;;;;;34503:4797;;;;;;34398:4902;;;;;:::o;48930:461::-;49023:16;;48991:58;;49008:4;;-1:-1:-1;;;;;49023:16:0;49042:6;48991:8;:58::i;:::-;49084:16;;;49098:1;49084:16;;;;;;;;49060:21;;49084:16;;;;;;;;;;-1:-1:-1;49084:16:0;49060:40;;49129:4;49111;49116:1;49111:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49111:23:0;;;:7;;;;;;;;;;:23;;;;49155:16;;:23;;;-1:-1:-1;;;49155:23:0;;;;:16;;;;;:21;;:23;;;;;49111:7;;49155:23;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49145:4;49150:1;49145:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49145:33:0;;;:7;;;;;;;;;:33;49191:16;;:192;;-1:-1:-1;;;49191:192:0;;:16;;;:67;;:192;;49273:6;;49191:16;;49310:4;;49337;;49357:15;;49191:192;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48980:411;48930:461;:::o;49518:401::-;49612:9;49600:10;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;49664:16:0;;49632:63;;49649:4;;-1:-1:-1;;;;;49664:16:0;49683:11;49632:8;:63::i;:::-;49706:16;;:205;;-1:-1:-1;;;49706:205:0;;-1:-1:-1;;;;;49706:16:0;;;;:32;;49746:9;;49706:205;;49779:4;;49799:11;;49706:16;;;;49779:4;;49885:15;;49706:205;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;20146:1553::-;20212:4;20351:19;;;:12;;;:19;;;;;;20387:15;;20383:1309;;20749:21;20773:14;20786:1;20773:10;:14;:::i;:::-;20822:18;;20749:38;;-1:-1:-1;20802:17:0;;20822:22;;20843:1;;20822:22;:::i;:::-;20802:42;;21089:17;21109:3;:11;;21121:9;21109:22;;;;;;;;:::i;:::-;;;;;;;;;21089:42;;21255:9;21226:3;:11;;21238:13;21226:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;21332:23;;;:12;;;:23;;;;;;:36;;;21493:17;;21332:3;;21493:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;21588:3;:12;;:19;21601:5;21588:19;;;;;;;;;;;21581:26;;;21631:4;21624:11;;;;;;;;20383:1309;21675:5;21668:12;;;;;22453:204;22548:18;;22520:7;;22548:26;-1:-1:-1;22540:73:0;;;;-1:-1:-1;;;22540:73:0;;21716:2:1;22540:73:0;;;21698:21:1;21755:2;21735:18;;;21728:30;21794:34;21774:18;;;21767:62;-1:-1:-1;;;21845:18:1;;;21838:32;21887:19;;22540:73:0;21514:398:1;22540:73:0;22631:3;:11;;22643:5;22631:18;;;;;;;;:::i;:::-;;;;;;;;;22624:25;;22453:204;;;;:::o;43188:648::-;-1:-1:-1;;;;;43323:15:0;;43305:17;43323:15;;;:9;:15;;;;;;:22;;43339:6;;43323:22;:::i;:::-;43305:40;;43369:27;43391:4;43369:21;:27::i;:::-;43366:102;;;-1:-1:-1;;;;;43411:15:0;;;;;;;:9;:15;;;;;:25;;;;-1:-1:-1;43188:648:0:o;43366:102::-;43533:15;43549:21;43565:4;43549:15;:21::i;:::-;-1:-1:-1;;;;;43608:15:0;;;;;;:9;:15;;;;;:25;;;43717:14;;43533:37;;-1:-1:-1;43717:26:0;;43624:9;;43717:26;:::i;:::-;-1:-1:-1;;;;;43691:23:0;;;;;;:17;:23;;;;;;;;:52;;;;43804:14;;;;;:23;;43820:7;;43691:23;43804;;43820:7;;43804:23;:::i;42451:645::-;-1:-1:-1;;;;;42583:15:0;;42565:17;42583:15;;;:9;:15;;;;;;:22;;42599:6;;42583:22;:::i;:::-;42565:40;;42629:27;42651:4;42629:21;:27::i;:::-;42626:102;;;-1:-1:-1;;;;;42671:15:0;;;;;;;:9;:15;;;;;:25;;;;-1:-1:-1;42451:645:0:o;42626:102::-;42793:15;42809:21;42825:4;42809:15;:21::i;:::-;42793:37;;42931:9;42914:14;;:26;;;;:::i;:::-;-1:-1:-1;;;;;42888:23:0;;;;;;:17;:23;;;;;;;;:52;;;;43001:14;;;;;:23;;43017:7;;42888:23;43001;;43017:7;;43001:23;:::i;:::-;;;;-1:-1:-1;;;;;;;;43063:15:0;;;;;;;:9;:15;;;;;:25;;;;-1:-1:-1;42451:645:0:o;39857:156::-;39947:7;40000:5;39986:10;39975:21;;39982:3;39975:10;;:6;:10;;;;:::i;:::-;:21;;;;:::i;:::-;39974:31;;;;:::i;:::-;39967:38;39857:156;-1:-1:-1;;;;39857:156:0:o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:597::-;311:4;340:2;369;358:9;351:21;401:6;395:13;444:6;439:2;428:9;424:18;417:34;469:1;479:140;493:6;490:1;487:13;479:140;;;588:14;;;584:23;;578:30;554:17;;;573:2;550:26;543:66;508:10;;479:140;;;637:6;634:1;631:13;628:91;;;707:1;702:2;693:6;682:9;678:22;674:31;667:42;628:91;-1:-1:-1;780:2:1;759:15;-1:-1:-1;;755:29:1;740:45;;;;787:2;736:54;;199:597;-1:-1:-1;;;199:597:1:o;990:131::-;-1:-1:-1;;;;;1065:31:1;;1055:42;;1045:70;;1111:1;1108;1101:12;1126:315;1194:6;1202;1255:2;1243:9;1234:7;1230:23;1226:32;1223:52;;;1271:1;1268;1261:12;1223:52;1310:9;1297:23;1329:31;1354:5;1329:31;:::i;:::-;1379:5;1431:2;1416:18;;;;1403:32;;-1:-1:-1;;;1126:315:1:o;2013:118::-;2099:5;2092:13;2085:21;2078:5;2075:32;2065:60;;2121:1;2118;2111:12;2136:241;2192:6;2245:2;2233:9;2224:7;2220:23;2216:32;2213:52;;;2261:1;2258;2251:12;2213:52;2300:9;2287:23;2319:28;2341:5;2319:28;:::i;2382:456::-;2459:6;2467;2475;2528:2;2516:9;2507:7;2503:23;2499:32;2496:52;;;2544:1;2541;2534:12;2496:52;2583:9;2570:23;2602:31;2627:5;2602:31;:::i;:::-;2652:5;-1:-1:-1;2709:2:1;2694:18;;2681:32;2722:33;2681:32;2722:33;:::i;:::-;2382:456;;2774:7;;-1:-1:-1;;;2828:2:1;2813:18;;;;2800:32;;2382:456::o;3383:247::-;3442:6;3495:2;3483:9;3474:7;3470:23;3466:32;3463:52;;;3511:1;3508;3501:12;3463:52;3550:9;3537:23;3569:31;3594:5;3569:31;:::i;3635:156::-;3701:20;;3761:4;3750:16;;3740:27;;3730:55;;3781:1;3778;3771:12;3730:55;3635:156;;;:::o;3796:535::-;3888:6;3896;3904;3912;3920;3928;3981:3;3969:9;3960:7;3956:23;3952:33;3949:53;;;3998:1;3995;3988:12;3949:53;4021:27;4038:9;4021:27;:::i;:::-;4011:37;;4067:36;4099:2;4088:9;4084:18;4067:36;:::i;:::-;4057:46;;4122:36;4154:2;4143:9;4139:18;4122:36;:::i;:::-;4112:46;;4177:36;4209:2;4198:9;4194:18;4177:36;:::i;:::-;4167:46;;4232:37;4264:3;4253:9;4249:19;4232:37;:::i;:::-;4222:47;;4288:37;4320:3;4309:9;4305:19;4288:37;:::i;:::-;4278:47;;3796:535;;;;;;;;:::o;4589:182::-;4646:6;4699:2;4687:9;4678:7;4674:23;4670:32;4667:52;;;4715:1;4712;4705:12;4667:52;4738:27;4755:9;4738:27;:::i;4984:248::-;5052:6;5060;5113:2;5101:9;5092:7;5088:23;5084:32;5081:52;;;5129:1;5126;5119:12;5081:52;-1:-1:-1;;5152:23:1;;;5222:2;5207:18;;;5194:32;;-1:-1:-1;4984:248:1:o;5237:388::-;5305:6;5313;5366:2;5354:9;5345:7;5341:23;5337:32;5334:52;;;5382:1;5379;5372:12;5334:52;5421:9;5408:23;5440:31;5465:5;5440:31;:::i;:::-;5490:5;-1:-1:-1;5547:2:1;5532:18;;5519:32;5560:33;5519:32;5560:33;:::i;:::-;5612:7;5602:17;;;5237:388;;;;;:::o;5630:356::-;5832:2;5814:21;;;5851:18;;;5844:30;5910:34;5905:2;5890:18;;5883:62;5977:2;5962:18;;5630:356::o;5991:127::-;6052:10;6047:3;6043:20;6040:1;6033:31;6083:4;6080:1;6073:15;6107:4;6104:1;6097:15;6123:125;6163:4;6191:1;6188;6185:8;6182:34;;;6196:18;;:::i;:::-;-1:-1:-1;6233:9:1;;6123:125::o;6253:168::-;6293:7;6359:1;6355;6351:6;6347:14;6344:1;6341:21;6336:1;6329:9;6322:17;6318:45;6315:71;;;6366:18;;:::i;:::-;-1:-1:-1;6406:9:1;;6253:168::o;6426:217::-;6466:1;6492;6482:132;;6536:10;6531:3;6527:20;6524:1;6517:31;6571:4;6568:1;6561:15;6599:4;6596:1;6589:15;6482:132;-1:-1:-1;6628:9:1;;6426:217::o;6648:422::-;6737:1;6780:5;6737:1;6794:270;6815:7;6805:8;6802:21;6794:270;;;6874:4;6870:1;6866:6;6862:17;6856:4;6853:27;6850:53;;;6883:18;;:::i;:::-;6933:7;6923:8;6919:22;6916:55;;;6953:16;;;;6916:55;7032:22;;;;6992:15;;;;6794:270;;;6798:3;6648:422;;;;;:::o;7075:806::-;7124:5;7154:8;7144:80;;-1:-1:-1;7195:1:1;7209:5;;7144:80;7243:4;7233:76;;-1:-1:-1;7280:1:1;7294:5;;7233:76;7325:4;7343:1;7338:59;;;;7411:1;7406:130;;;;7318:218;;7338:59;7368:1;7359:10;;7382:5;;;7406:130;7443:3;7433:8;7430:17;7427:43;;;7450:18;;:::i;:::-;-1:-1:-1;;7506:1:1;7492:16;;7521:5;;7318:218;;7620:2;7610:8;7607:16;7601:3;7595:4;7592:13;7588:36;7582:2;7572:8;7569:16;7564:2;7558:4;7555:12;7551:35;7548:77;7545:159;;;-1:-1:-1;7657:19:1;;;7689:5;;7545:159;7736:34;7761:8;7755:4;7736:34;:::i;:::-;7806:6;7802:1;7798:6;7794:19;7785:7;7782:32;7779:58;;;7817:18;;:::i;:::-;7855:20;;7075:806;-1:-1:-1;;;7075:806:1:o;7886:140::-;7944:5;7973:47;8014:4;8004:8;8000:19;7994:4;7973:47;:::i;8380:128::-;8420:3;8451:1;8447:6;8444:1;8441:13;8438:39;;;8457:18;;:::i;:::-;-1:-1:-1;8493:9:1;;8380:128::o;8513:204::-;8551:3;8587:4;8584:1;8580:12;8619:4;8616:1;8612:12;8654:3;8648:4;8644:14;8639:3;8636:23;8633:49;;;8662:18;;:::i;:::-;8698:13;;8513:204;-1:-1:-1;;;8513:204:1:o;9129:340::-;9331:2;9313:21;;;9370:2;9350:18;;;9343:30;-1:-1:-1;;;9404:2:1;9389:18;;9382:46;9460:2;9445:18;;9129:340::o;9684:184::-;9754:6;9807:2;9795:9;9786:7;9782:23;9778:32;9775:52;;;9823:1;9820;9813:12;9775:52;-1:-1:-1;9846:16:1;;9684:184;-1:-1:-1;9684:184:1:o;10152:245::-;10219:6;10272:2;10260:9;10251:7;10247:23;10243:32;10240:52;;;10288:1;10285;10278:12;10240:52;10320:9;10314:16;10339:28;10361:5;10339:28;:::i;12267:135::-;12306:3;12327:17;;;12324:43;;12347:18;;:::i;:::-;-1:-1:-1;12394:1:1;12383:13;;12267:135::o;12407:607::-;-1:-1:-1;;;;;12766:15:1;;;12748:34;;12813:2;12798:18;;12791:34;;;;12856:2;12841:18;;12834:34;;;;12899:2;12884:18;;12877:34;;;;12948:15;;;12942:3;12927:19;;12920:44;12728:3;12980:19;;12973:35;;;;12697:3;12682:19;;12407:607::o;15292:251::-;15362:6;15415:2;15403:9;15394:7;15390:23;15386:32;15383:52;;;15431:1;15428;15421:12;15383:52;15463:9;15457:16;15482:31;15507:5;15482:31;:::i;15548:127::-;15609:10;15604:3;15600:20;15597:1;15590:31;15640:4;15637:1;15630:15;15664:4;15661:1;15654:15;15680:461;15733:3;15771:5;15765:12;15798:6;15793:3;15786:19;15824:4;15853:2;15848:3;15844:12;15837:19;;15890:2;15883:5;15879:14;15911:1;15921:195;15935:6;15932:1;15929:13;15921:195;;;16000:13;;-1:-1:-1;;;;;15996:39:1;15984:52;;16056:12;;;;16091:15;;;;16032:1;15950:9;15921:195;;;-1:-1:-1;16132:3:1;;15680:461;-1:-1:-1;;;;;15680:461:1:o;16146:510::-;16417:6;16406:9;16399:25;16460:3;16455:2;16444:9;16440:18;16433:31;16380:4;16481:57;16533:3;16522:9;16518:19;16510:6;16481:57;:::i;:::-;-1:-1:-1;;;;;16574:32:1;;;;16569:2;16554:18;;16547:60;-1:-1:-1;16638:2:1;16623:18;16616:34;16473:65;16146:510;-1:-1:-1;;16146:510:1:o;20484:582::-;20783:6;20772:9;20765:25;20826:6;20821:2;20810:9;20806:18;20799:34;20869:3;20864:2;20853:9;20849:18;20842:31;20746:4;20890:57;20942:3;20931:9;20927:19;20919:6;20890:57;:::i;:::-;-1:-1:-1;;;;;20983:32:1;;;;20978:2;20963:18;;20956:60;-1:-1:-1;21047:3:1;21032:19;21025:35;20882:65;20484:582;-1:-1:-1;;;20484:582:1:o;21071:306::-;21159:6;21167;21175;21228:2;21216:9;21207:7;21203:23;21199:32;21196:52;;;21244:1;21241;21234:12;21196:52;21273:9;21267:16;21257:26;;21323:2;21312:9;21308:18;21302:25;21292:35;;21367:2;21356:9;21352:18;21346:25;21336:35;;21071:306;;;;;:::o;21382:127::-;21443:10;21438:3;21434:20;21431:1;21424:31;21474:4;21471:1;21464:15;21498:4;21495:1;21488:15

Swarm Source

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