ETH Price: $3,496.16 (+0.28%)
Gas: 2 Gwei

Token

Ded | t.me/dedfinance (DED)
 

Overview

Max Total Supply

666,000,000,000 DED

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
meta888crypto.eth
Balance
706,642.751565127 DED

Value
$0.00
0xe969bf18fbc0ed94fbeb0821d347d0525a2c880a
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:
Ded

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-22
*/

//SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity ^0.6.12;

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

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

interface IERC20 {
    /**
    * @dev Returns the amount of tokens in existence.
    */
    function totalSupply() external view returns (uint256);

    /**
    * @dev Returns the amount of tokens owned by `account`.
    */
    function balanceOf(address account) external view returns (uint256);

    /**
    * @dev Moves `amount` tokens from the caller's account to `recipient`.
    *
    * Returns a boolean value indicating whether the operation succeeded.
    *
    * Emits a {Transfer} event.
    */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
    * @dev Returns the remaining number of tokens that `spender` will be
    * allowed to spend on behalf of `owner` through {transferFrom}. This is
    * zero by default.
    *
    * This value changes when {approve} or {transferFrom} are called.
    */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
    * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
    *
    * Returns a boolean value indicating whether the operation succeeded.
    *
    * IMPORTANT: Beware that changing an allowance with this method brings the risk
    * that someone may use both the old and the new allowance by unfortunate
    * transaction ordering. One possible solution to mitigate this race
    * condition is to first reduce the spender's allowance to 0 and set the
    * desired value afterwards:
    * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    *
    * Emits an {Approval} event.
    */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
    * @dev Moves `amount` tokens from `sender` to `recipient` using the
    * allowance mechanism. `amount` is then deducted from the caller's
    * allowance.
    *
    * Returns a boolean value indicating whether the operation succeeded.
    *
    * Emits a {Transfer} event.
    */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
    * @dev Emitted when `value` tokens are moved from one account (`from`) to
    * another (`to`).
    *
    * Note that `value` may be zero.
    */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

library SafeMath {
    /**
    * @dev Returns the addition of two unsigned integers, reverting on
    * overflow.
    *
    * Counterpart to Solidity's `+` operator.
    *
    * Requirements:
    *
    * - Addition cannot overflow.
    */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
    * @dev Returns the subtraction of two unsigned integers, reverting on
    * overflow (when the result is negative).
    *
    * Counterpart to Solidity's `-` operator.
    *
    * Requirements:
    *
    * - Subtraction cannot overflow.
    */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
    * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
    * overflow (when the result is negative).
    *
    * Counterpart to Solidity's `-` operator.
    *
    * Requirements:
    *
    * - Subtraction cannot overflow.
    */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
    * @dev Returns the multiplication of two unsigned integers, reverting on
    * overflow.
    *
    * Counterpart to Solidity's `*` operator.
    *
    * Requirements:
    *
    * - Multiplication cannot overflow.
    */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
    * @dev Returns the integer division of two unsigned integers. Reverts on
    * division by zero. The result is rounded towards zero.
    *
    * Counterpart to Solidity's `/` operator. Note: this function uses a
    * `revert` opcode (which leaves remaining gas untouched) while Solidity
    * uses an invalid opcode to revert (consuming all remaining gas).
    *
    * Requirements:
    *
    * - The divisor cannot be zero.
    */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
    * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
    * division by zero. The result is rounded towards zero.
    *
    * Counterpart to Solidity's `/` operator. Note: this function uses a
    * `revert` opcode (which leaves remaining gas untouched) while Solidity
    * uses an invalid opcode to revert (consuming all remaining gas).
    *
    * Requirements:
    *
    * - The divisor cannot be zero.
    */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
    * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
    * Reverts when dividing by zero.
    *
    * Counterpart to Solidity's `%` operator. This function uses a `revert`
    * opcode (which leaves remaining gas untouched) while Solidity uses an
    * invalid opcode to revert (consuming all remaining gas).
    *
    * Requirements:
    *
    * - The divisor cannot be zero.
    */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
    * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
    * Reverts with custom message when dividing by zero.
    *
    * Counterpart to Solidity's `%` operator. This function uses a `revert`
    * opcode (which leaves remaining gas untouched) while Solidity uses an
    * invalid opcode to revert (consuming all remaining gas).
    *
    * Requirements:
    *
    * - The divisor cannot be zero.
    */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
    * @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");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        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);
            }
        }
    }
}

contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

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

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

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

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

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

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = now + time;
        emit OwnershipTransferred(_owner, address(0));
    }

    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(now > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

// Contract implementation
contract Ded is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _rOwned;
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded; // excluded from reward
    address[] private _excluded;
    mapping (address => bool) private _isBlackListedBot;
    address[] private _blackListedBots;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 666_000_000_000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = 'Ded | t.me/dedfinance';
    string private _symbol = 'DED';
    uint8 private _decimals = 9;

    // Tax and marketing fees will start at 0 so we don't have a big impact when deploying to Uniswap
    // marketing wallet address is null but the method to set the address is exposed
    uint8 private _taxFee = 4; // 4% reflection fee for every holder
    uint8 private _marketingFee = 3; // 3% marketing
    uint8 private _previousTaxFee = _taxFee;
    uint8 private _previousMarketingFee = _marketingFee;

    address payable public _marketingWalletAddress = payable(0x0A325680C28e1E9f5D5943e3218a0b299B90AF10);
    address payable public _dxSaleRouterWalletAddress;
    address payable public _dxSalePresaleWalletAddress;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwap = false;
    bool public swapEnabled = false;

    uint256 private _maxTxAmount = _tTotal;
    // We will set a minimum amount of tokens to be swapped => 10_000_000
    uint256 private _numOfTokensToExchangeForMarketing = 10_000_000 * 10**9;

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapEnabledUpdated(bool enabled);

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

    constructor () public {
        _rOwned[_msgSender()] = _rTotal;

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

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        // Exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingWalletAddress] = true;

        _isBlackListedBot[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true;
        _blackListedBots.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b));

        _isBlackListedBot[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true;
        _blackListedBots.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679));

        _isBlackListedBot[address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7)] = true;
        _blackListedBots.push(address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7));

        _isBlackListedBot[address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533)] = true;
        _blackListedBots.push(address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533));

        _isBlackListedBot[address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F)] = true;
        _blackListedBots.push(address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F));

        _isBlackListedBot[address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7)] = true;
        _blackListedBots.push(address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7));

        _isBlackListedBot[address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5)] = true;
        _blackListedBots.push(address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5));

        _isBlackListedBot[address(0xf1CA09CE745bfa38258b26cd839ef0E8DE062A40)] = true;
        _blackListedBots.push(address(0xf1CA09CE745bfa38258b26cd839ef0E8DE062A40));

        _isBlackListedBot[address(0x8719c2829944150F59E3428CA24f6Fc018E43890)] = true;
        _blackListedBots.push(address(0x8719c2829944150F59E3428CA24f6Fc018E43890));

        _isBlackListedBot[address(0xa8E0771582EA33A9d8e6d2Ccb65A8D10Bd0Ea517)] = true;
        _blackListedBots.push(address(0xa8E0771582EA33A9d8e6d2Ccb65A8D10Bd0Ea517));

        _isBlackListedBot[address(0xF3DaA7465273587aec8b2d2706335e06068ccce4)] = true;
        _blackListedBots.push(address(0xF3DaA7465273587aec8b2d2706335e06068ccce4));

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    function setExcludeFromFee(address account, bool excluded) external onlyOwner() {
        _isExcludedFromFee[account] = excluded;
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

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

    function excludeFromReward(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

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

    function addBotToBlackList(address account) external onlyOwner() {
        require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
        require(!_isBlackListedBot[account], "Account is already blacklisted");
        _isBlackListedBot[account] = true;
        _blackListedBots.push(account);
    }

    function removeBotFromBlackList(address account) external onlyOwner() {
        require(_isBlackListedBot[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _blackListedBots.length; i++) {
            if (_blackListedBots[i] == account) {
                _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                _isBlackListedBot[account] = false;
                _blackListedBots.pop();
                break;
            }
        }
    }

    function removeAllFee() private {
        if(_taxFee == 0 && _marketingFee == 0) return;

        _previousTaxFee = _taxFee;
        _previousMarketingFee = _marketingFee;

        _taxFee = 0;
        _marketingFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _marketingFee = _previousMarketingFee;
    }

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

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

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

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!_isBlackListedBot[sender], "You have no power here!");
        require(!_isBlackListedBot[recipient], "You have no power here!");
        require(!_isBlackListedBot[tx.origin], "You have no power here!");

        if((sender != owner() && recipient != owner()) && (sender != _dxSaleRouterWalletAddress && recipient != _dxSaleRouterWalletAddress) && (sender != _dxSalePresaleWalletAddress && recipient != _dxSalePresaleWalletAddress)) {
            require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            // sorry about that, but sniper bots nowadays are buying multiple times, hope I have something more robust to prevent them to nuke the launch :-(
            if (sender == uniswapV2Pair) {
                require(balanceOf(recipient) <= _maxTxAmount, "Already bought maxTxAmount, wait till check off");
                require(balanceOf(tx.origin) <= _maxTxAmount, "Already bought maxTxAmount, wait till check off");
            }
        }

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap?
        // also, don't get caught in a circular marketing event.
        // also, don't swap if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

        if(contractTokenBalance >= _maxTxAmount)
        {
            contractTokenBalance = _maxTxAmount;
        }

        bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForMarketing;
        if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
            // We need to swap the current tokens to ETH and send to the marketing wallet
            swapTokensForEth(contractTokenBalance);

            uint256 contractETHBalance = address(this).balance;
            if(contractETHBalance > 0) {
                sendETHToMarketing(address(this).balance);
            }
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

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

        //transfer amount, it will take tax and marketing fee
        _tokenTransfer(sender,recipient,amount,takeFee);
    }

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

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

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

    function sendETHToMarketing(uint256 amount) private {
        _marketingWalletAddress.transfer(amount);
    }

    // We are exposing these functions to be able to manual swap and send
    // in case the token is highly valued and 5M becomes too much
    function manualSwap() external onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSwapAmount(uint256 amount) public onlyOwner() {
        uint256 contractBalance = balanceOf(address(this));
        require(contractBalance >= amount , 'contract balance should be greater then amount');

        swapTokensForEth(amount);
    }

    function manualSend() public onlyOwner() {
        uint256 contractETHBalance = address(this).balance;
        sendETHToMarketing(contractETHBalance);
    }

    function manualSwapAndSend(uint256 amount) external onlyOwner() {
        manualSwapAmount(amount);
        manualSend();
    }

    function setSwapEnabled(bool enabled) external onlyOwner(){
        swapEnabled = enabled;
    }

    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
        if(!takeFee)
            removeAllFee();

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }

        if(!takeFee)
            restoreAllFee();
    }

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

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

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

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

    function _takeMarketing(uint256 tMarketing) private {
        uint256 currentRate =  _getRate();
        uint256 rMarketing = tMarketing.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tMarketing);
    }

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

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

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

    function _getTValues(uint256 tAmount, uint256 taxFee, uint256 marketingFee) private pure returns (uint256, uint256, uint256) {
        uint256 tFee = tAmount.mul(taxFee).div(100);
        uint256 tMarketing = tAmount.mul(marketingFee).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tMarketing);
        return (tTransferAmount, tFee, tMarketing);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tMarketing, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        // thanks myobu for finding bug here, now everybody need to deploy new contracts lmao..
        uint256 rMarketing = tMarketing.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rMarketing);
        return (rAmount, rTransferAmount, rFee);
    }

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

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

    function _getTaxFee() private view returns(uint256) {
        return _taxFee;
    }

    function _getMaxTxAmount() private view returns(uint256) {
        return _maxTxAmount;
    }

    function _getETHBalance() public view returns(uint256 balance) {
        return address(this).balance;
    }

    function _setTaxFee(uint8 taxFee) external onlyOwner() {
        require(taxFee >= 0 && taxFee <= 10, 'taxFee should be in 0 - 10');
        _taxFee = taxFee;
    }

    function _setMarketingFee(uint8 marketingFee) external onlyOwner() {
        require(marketingFee >= 0 && marketingFee <= 11, 'marketingFee should be in 0 - 11');
        _marketingFee = marketingFee;
    }

    function _setMarketingWallet(address payable marketingWalletAddress) external onlyOwner() {
        _marketingWalletAddress = marketingWalletAddress;
    }

    function _setNumOfTokensToExchangeForMarketing(uint256 numOfTokensToExchangeForMarketing) external onlyOwner() {
        require(numOfTokensToExchangeForMarketing >= 10**9 , 'numOfTokensToExchangeForMarketing should be greater than total 1e9');
        _numOfTokensToExchangeForMarketing = numOfTokensToExchangeForMarketing;
    }

    function _setMaxTxAmount(uint256 maxTxAmount) external onlyOwner() {
        require(maxTxAmount >= 10**9 , 'maxTxAmount should be greater than total 1e9');
        _maxTxAmount = maxTxAmount;
    }

    function recoverTokens(uint256 tokenAmount) public virtual onlyOwner() {
        _approve(address(this), owner(), tokenAmount);
        _transfer(address(this), owner(), tokenAmount);
    }

    function _setDxSale(address payable dxSaleRouterWalletAddress, address payable dxSalePresaleWalletAddress) external onlyOwner() {
        _dxSaleRouterWalletAddress = dxSaleRouterWalletAddress;
        _dxSalePresaleWalletAddress = dxSalePresaleWalletAddress;
        swapEnabled = false;
        _isExcludedFromFee[dxSaleRouterWalletAddress] = true;
        _isExcludedFromFee[dxSalePresaleWalletAddress] = 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":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_dxSalePresaleWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_dxSaleRouterWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"dxSaleRouterWalletAddress","type":"address"},{"internalType":"address payable","name":"dxSalePresaleWalletAddress","type":"address"}],"name":"_setDxSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"marketingFee","type":"uint8"}],"name":"_setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingWalletAddress","type":"address"}],"name":"_setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfTokensToExchangeForMarketing","type":"uint256"}],"name":"_setNumOfTokensToExchangeForMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"taxFee","type":"uint8"}],"name":"_setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwapAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwapAndSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

68241a9b4f617a280000600b556819908af4a34917ffff19600c55610100604052601560c08190527f446564207c20742e6d652f64656466696e616e6365000000000000000000000060e09081526200005c91600e9190620007d0565b506040805180820190915260038082526211115160ea1b60209092019182526200008991600f91620007d0565b506010805460ff60201b1963ff00000019600960ff199093169290921761ff0019166104001762ff00001916620300001791821660ff610100909304831663010000000217908116620100009091049091166401000000000217600160281b600160c81b031916780a325680c28e1e9f5d5943e3218a0b299b90af1000000000001790556012805461ffff60a01b19169055600b54601355662386f26fc100006014553480156200013957600080fd5b50600062000146620007bd565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c5460036000620001a1620007bd565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021857600080fd5b505afa1580156200022d573d6000803e3d6000fd5b505050506040513d60208110156200024457600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200029557600080fd5b505afa158015620002aa573d6000803e3d6000fd5b505050506040513d6020811015620002c157600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200031457600080fd5b505af115801562000329573d6000803e3d6000fd5b505050506040513d60208110156200034057600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600660006200036d620007c1565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600684528281208054861660019081179091556010546501000000000090049092168152918220805485168217905560099092527f404b5b762e8059f6055e90a7bf5e88e1e2f628911a8da7857df40bf26352e2128054841683179055600a805480840182557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a890810180546001600160a01b031990811673a1cec245c456dd1bd9f2815a6955fef44eb4191b179091557f82951a08c86bbc382122443ed556bc8073b7e0bdf3bbfb811f503389aad35bfc8054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557f3ee2bfab112ce489483443731da982ac406a17d09137224e74d494a6037142ad805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557fb7baecc9aa863a1182bccd59d3b8aaee484658aee9400a94283dad2dbafd9d1d80548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557fab5495752a9187414227aebaa8b39a4bffdb32802987cba6aff3f20498292a7180548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557f942ebcb2565846ab429e313119fc37882c100e43cc02a57b5525c115ad4f72998054871686179055825480860184558201805482167359341bc6b4f3ace878574b05914f43309dd678c71790557f11c8caefcbc9afecd5b2153811f415fe306a1f3884466a0ddf30ba3939464b1e80548716861790558254808601845582018054821673136f4b5b6a306091b280e3f251fa0e21b1280cd51790557f5285ca56d5238f5cab5f1f0e88c2f05725198ebf90836644148c3ad2ae4350dd80548716861790558254808601845582018054821673f1ca09ce745bfa38258b26cd839ef0e8de062a401790557f63311b9fe935901487e2709d823f9feaee35256550ebb1a20dea871df42b7600805487168617905582548086018455820180548216738719c2829944150f59e3428ca24f6fc018e438901790557ff1094c410968a21d81ae0bddb783a54ddd1d40925fb4944787cb37532e24c12380548716861790558254808601845582018054821673a8e0771582ea33a9d8e6d2ccb65a8d10bd0ea5171790557f1b4ff325b507f000c86886ba6b3c0ac86d817073e665a7d9d453685df18672128054909616851790955581549384018255915201805490911673f3daa7465273587aec8b2d2706335e06068ccce417905562000769620007bd565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a3506200086c565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200081357805160ff191683800117855562000843565b8280016001018555821562000843579182015b828111156200084357825182559160200191906001019062000826565b506200085192915062000855565b5090565b5b8082111562000851576000815560010162000856565b60805160601c60a05160601c613747620008af600039806113e2528061255a528061267c525080610b4852806129a45280612a5c5280612a8352506137476000f3fe60806040526004361061028c5760003560e01c806366be26571161015a578063a457c2d7116100c1578063dd4670641161007a578063dd4670641461099e578063dd62ed3e146109c8578063e01af92c14610a03578063f2fde38b14610a2f578063f429389014610a62578063f815a84214610a7757610293565b8063a457c2d71461089d578063a69df4b5146108d6578063a9059cbb146108eb578063af9549e014610924578063b6c523241461095f578063d8f0c8c01461097457610293565b80637ded4d6a116101135780637ded4d6a146107a857806388e0853e146107db57806388f82020146108055780638da5cb5b14610838578063906184da1461084d57806395d89b411461088857610293565b806366be2657146106dc5780636ce06d66146106f15780636ddd17131461071e57806370a0823114610733578063715018a6146107665780637c631e601461077b57610293565b8063313ce567116101fe5780634549b039116101b75780634549b039146105f0578063474fe03f1461062257806349bd5a5e1461064c57806351bc3c851461066157806352390c02146106765780635342acb4146106a957610293565b8063313ce567146104e75780633685d4191461051257806339509351146105455780633bd5d1731461057e5780634144d9e4146105a85780634303443d146105bd57610293565b80631bbae6e0116102505780631bbae6e0146103dc5780631ff53b601461040857806320071ea81461043b57806323b872dd146104505780632d8381191461049357806330599fc5146104bd57610293565b806306fdde0314610298578063095ea7b31461032257806313114a9d1461036f5780631694505e1461039657806318160ddd146103c757610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610a8c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032e57600080fd5b5061035b6004803603604081101561034557600080fd5b506001600160a01b038135169060200135610b22565b604080519115158252519081900360200190f35b34801561037b57600080fd5b50610384610b40565b60408051918252519081900360200190f35b3480156103a257600080fd5b506103ab610b46565b604080516001600160a01b039092168252519081900360200190f35b3480156103d357600080fd5b50610384610b6a565b3480156103e857600080fd5b50610406600480360360208110156103ff57600080fd5b5035610b70565b005b34801561041457600080fd5b506104066004803603602081101561042b57600080fd5b50356001600160a01b0316610c10565b34801561044757600080fd5b506103ab610c98565b34801561045c57600080fd5b5061035b6004803603606081101561047357600080fd5b506001600160a01b03813581169160208101359091169060400135610ca7565b34801561049f57600080fd5b50610384600480360360208110156104b657600080fd5b5035610d2e565b3480156104c957600080fd5b50610406600480360360208110156104e057600080fd5b5035610d90565b3480156104f357600080fd5b506104fc610e0f565b6040805160ff9092168252519081900360200190f35b34801561051e57600080fd5b506104066004803603602081101561053557600080fd5b50356001600160a01b0316610e18565b34801561055157600080fd5b5061035b6004803603604081101561056857600080fd5b506001600160a01b038135169060200135610fd9565b34801561058a57600080fd5b50610406600480360360208110156105a157600080fd5b5035611027565b3480156105b457600080fd5b506103ab611101565b3480156105c957600080fd5b50610406600480360360208110156105e057600080fd5b50356001600160a01b0316611119565b3480156105fc57600080fd5b506103846004803603604081101561061357600080fd5b508035906020013515156112a1565b34801561062e57600080fd5b506104066004803603602081101561064557600080fd5b5035611333565b34801561065857600080fd5b506103ab6113e0565b34801561066d57600080fd5b50610406611404565b34801561068257600080fd5b506104066004803603602081101561069957600080fd5b50356001600160a01b0316611472565b3480156106b557600080fd5b5061035b600480360360208110156106cc57600080fd5b50356001600160a01b0316611654565b3480156106e857600080fd5b506103ab611672565b3480156106fd57600080fd5b506104066004803603602081101561071457600080fd5b503560ff16611681565b34801561072a57600080fd5b5061035b611750565b34801561073f57600080fd5b506103846004803603602081101561075657600080fd5b50356001600160a01b0316611760565b34801561077257600080fd5b506104066117c2565b34801561078757600080fd5b506104066004803603602081101561079e57600080fd5b503560ff16611852565b3480156107b457600080fd5b50610406600480360360208110156107cb57600080fd5b50356001600160a01b031661191f565b3480156107e757600080fd5b50610406600480360360208110156107fe57600080fd5b5035611aac565b34801561081157600080fd5b5061035b6004803603602081101561082857600080fd5b50356001600160a01b0316611b15565b34801561084457600080fd5b506103ab611b33565b34801561085957600080fd5b506104066004803603604081101561087057600080fd5b506001600160a01b0381358116916020013516611b42565b34801561089457600080fd5b506102ad611c03565b3480156108a957600080fd5b5061035b600480360360408110156108c057600080fd5b506001600160a01b038135169060200135611c64565b3480156108e257600080fd5b50610406611ccc565b3480156108f757600080fd5b5061035b6004803603604081101561090e57600080fd5b506001600160a01b038135169060200135611dba565b34801561093057600080fd5b506104066004803603604081101561094757600080fd5b506001600160a01b0381351690602001351515611dce565b34801561096b57600080fd5b50610384611e51565b34801561098057600080fd5b506104066004803603602081101561099757600080fd5b5035611e57565b3480156109aa57600080fd5b50610406600480360360208110156109c157600080fd5b5035611ef7565b3480156109d457600080fd5b50610384600480360360408110156109eb57600080fd5b506001600160a01b0381358116916020013516611f95565b348015610a0f57600080fd5b5061040660048036036020811015610a2657600080fd5b50351515611fc0565b348015610a3b57600080fd5b5061040660048036036020811015610a5257600080fd5b50356001600160a01b0316612036565b348015610a6e57600080fd5b5061040661211c565b348015610a8357600080fd5b5061038461217e565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b185780601f10610aed57610100808354040283529160200191610b18565b820191906000526020600020905b815481529060010190602001808311610afb57829003601f168201915b5050505050905090565b6000610b36610b2f612182565b8484612186565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b610b78612182565b6000546001600160a01b03908116911614610bc8576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b633b9aca00811015610c0b5760405162461bcd60e51b815260040180806020018281038252602c8152602001806134ef602c913960400191505060405180910390fd5b601355565b610c18612182565b6000546001600160a01b03908116911614610c68576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b601080546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b6011546001600160a01b031681565b6000610cb4848484612272565b610d2484610cc0612182565b610d1f8560405180606001604052806028815260200161353c602891396001600160a01b038a16600090815260056020526040812090610cfe612182565b6001600160a01b031681526020810191909152604001600020549190612730565b612186565b5060019392505050565b6000600c54821115610d715760405162461bcd60e51b815260040180806020018281038252602a815260200180613426602a913960400191505060405180910390fd5b6000610d7b6127c7565b9050610d8783826127ea565b9150505b919050565b610d98612182565b6000546001600160a01b03908116911614610de8576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b610dfa30610df4611b33565b83612186565b610e0c30610e06611b33565b83612272565b50565b60105460ff1690565b610e20612182565b6000546001600160a01b03908116911614610e70576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610edd576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610fd557816001600160a01b031660088281548110610f0157fe5b6000918252602090912001546001600160a01b03161415610fcd57600880546000198101908110610f2e57fe5b600091825260209091200154600880546001600160a01b039092169183908110610f5457fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610fa657fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610fd5565b600101610ee0565b5050565b6000610b36610fe6612182565b84610d1f8560056000610ff7612182565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612833565b6000611031612182565b6001600160a01b03811660009081526007602052604090205490915060ff161561108c5760405162461bcd60e51b815260040180806020018281038252602c81526020018061369e602c913960400191505060405180910390fd5b60006110978361288d565b505050506001600160a01b0384166000908152600360205260409020549192506110c3919050826128ff565b6001600160a01b038316600090815260036020526040902055600c546110e990826128ff565b600c55600d546110f99084612833565b600d55505050565b6010546501000000000090046001600160a01b031681565b611121612182565b6000546001600160a01b03908116911614611171576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156111cd5760405162461bcd60e51b815260040180806020018281038252602481526020018061360f6024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff161561123b576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b548311156112fa576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161131957600061130a8461288d565b50939550610b3a945050505050565b60006113248461288d565b50929550610b3a945050505050565b61133b612182565b6000546001600160a01b0390811691161461138b576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b600061139630611760565b9050818110156113d75760405162461bcd60e51b815260040180806020018281038252602e8152602001806133f8602e913960400191505060405180910390fd5b610fd582612941565b7f000000000000000000000000000000000000000000000000000000000000000081565b61140c612182565b6000546001600160a01b0390811691161461145c576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b600061146730611760565b9050610e0c81612941565b61147a612182565b6000546001600160a01b039081169116146114ca576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156115265760405162461bcd60e51b815260040180806020018281038252602281526020018061367c6022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615611594576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156115ee576001600160a01b0381166000908152600360205260409020546115d490610d2e565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b6012546001600160a01b031681565b611689612182565b6000546001600160a01b039081169116146116d9576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b600b8160ff161115611732576040805162461bcd60e51b815260206004820181905260248201527f6d61726b6574696e674665652073686f756c6420626520696e2030202d203131604482015290519081900360640190fd5b6010805460ff909216620100000262ff000019909216919091179055565b601254600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff16156117a057506001600160a01b038116600090815260046020526040902054610d8b565b6001600160a01b038216600090815260036020526040902054610b3a90610d2e565b6117ca612182565b6000546001600160a01b0390811691161461181a576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613584833981519152908390a3600080546001600160a01b0319169055565b61185a612182565b6000546001600160a01b039081169116146118aa576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b600a8160ff161115611903576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2030202d203130000000000000604482015290519081900360640190fd5b6010805460ff9092166101000261ff0019909216919091179055565b611927612182565b6000546001600160a01b03908116911614611977576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff166119e4576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610fd557816001600160a01b0316600a8281548110611a0857fe5b6000918252602090912001546001600160a01b03161415611aa457600a80546000198101908110611a3557fe5b600091825260209091200154600a80546001600160a01b039092169183908110611a5b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610fa657fe5b6001016119e7565b611ab4612182565b6000546001600160a01b03908116911614611b04576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b611b0d81611333565b610e0c61211c565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611b4a612182565b6000546001600160a01b03908116911614611b9a576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b601180546001600160a01b039384166001600160a01b031991821681179092556012805460ff60a81b199490951694909116841792909216909155600090815260066020526040808220805460ff19908116600190811790925593835291208054909216179055565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b185780601f10610aed57610100808354040283529160200191610b18565b6000610b36611c71612182565b84610d1f856040518060600160405280602581526020016136ed6025913960056000611c9b612182565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612730565b6001546001600160a01b03163314611d155760405162461bcd60e51b81526004018080602001828103825260238152602001806136ca6023913960400191505060405180910390fd5b6002544211611d6b576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061358483398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b36611dc7612182565b8484612272565b611dd6612182565b6000546001600160a01b03908116911614611e26576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b611e5f612182565b6000546001600160a01b03908116911614611eaf576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b633b9aca00811015611ef25760405162461bcd60e51b81526004018080602001828103825260428152602001806135a46042913960600191505060405180910390fd5b601455565b611eff612182565b6000546001600160a01b03908116911614611f4f576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613584833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611fc8612182565b6000546001600160a01b03908116911614612018576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b60128054911515600160a81b0260ff60a81b19909216919091179055565b61203e612182565b6000546001600160a01b0390811691161461208e576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b6001600160a01b0381166120d35760405162461bcd60e51b81526004018080602001828103825260268152602001806134506026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061358483398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b612124612182565b6000546001600160a01b03908116911614612174576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b47610e0c81612b78565b4790565b3390565b6001600160a01b0383166121cb5760405162461bcd60e51b81526004018080602001828103825260248152602001806136586024913960400191505060405180910390fd5b6001600160a01b0382166122105760405162461bcd60e51b81526004018080602001828103825260228152602001806134766022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166122b75760405162461bcd60e51b81526004018080602001828103825260258152602001806136336025913960400191505060405180910390fd5b6001600160a01b0382166122fc5760405162461bcd60e51b81526004018080602001828103825260238152602001806133d56023913960400191505060405180910390fd5b6000811161233b5760405162461bcd60e51b81526004018080602001828103825260298152602001806135e66029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff16156123a3576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff161561240b576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3260009081526009602052604090205460ff161561246a576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b612472611b33565b6001600160a01b0316836001600160a01b0316141580156124ac5750612496611b33565b6001600160a01b0316826001600160a01b031614155b80156124df57506011546001600160a01b038481169116148015906124df57506011546001600160a01b03838116911614155b801561251257506012546001600160a01b0384811691161480159061251257506012546001600160a01b03838116911614155b15612624576013548111156125585760405162461bcd60e51b81526004018080602001828103825260288152602001806134c76028913960400191505060405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614156126245760135461259e83611760565b11156125db5760405162461bcd60e51b815260040180806020018281038252602f815260200180613498602f913960400191505060405180910390fd5b6013546125e732611760565b11156126245760405162461bcd60e51b815260040180806020018281038252602f815260200180613498602f913960400191505060405180910390fd5b600061262f30611760565b9050601354811061263f57506013545b6014546012549082101590600160a01b900460ff1615801561266a5750601254600160a81b900460ff165b80156126735750805b80156126b157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b156126d1576126bf82612941565b4780156126cf576126cf47612b78565b505b6001600160a01b03851660009081526006602052604090205460019060ff168061271357506001600160a01b03851660009081526006602052604090205460ff165b1561271c575060005b61272886868684612bba565b505050505050565b600081848411156127bf5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561278457818101518382015260200161276c565b50505050905090810190601f1680156127b15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006127d4612d2e565b90925090506127e382826127ea565b9250505090565b600061282c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e91565b9392505050565b60008282018381101561282c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b601054600090819081908190819081908190819081906128bf908b9060ff610100820481169162010000900416612ef6565b92509250925060006128cf6127c7565b905060008060006128e28e878787612f4b565b919e509c509a509598509396509194505050505091939550919395565b600061282c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612730565b6012805460ff60a01b1916600160a01b1790556040805160028082526060808301845292602083019080368337019050509050308160008151811061298257fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156129fb57600080fd5b505afa158015612a0f573d6000803e3d6000fd5b505050506040513d6020811015612a2557600080fd5b5051815182906001908110612a3657fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612a81307f000000000000000000000000000000000000000000000000000000000000000084612186565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612b26578181015183820152602001612b0e565b505050509050019650505050505050600060405180830381600087803b158015612b4f57600080fd5b505af1158015612b63573d6000803e3d6000fd5b50506012805460ff60a01b1916905550505050565b601054604051650100000000009091046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015610fd5573d6000803e3d6000fd5b80612bc757612bc7612f9b565b6001600160a01b03841660009081526007602052604090205460ff168015612c0857506001600160a01b03831660009081526007602052604090205460ff16155b15612c1d57612c1884848461300e565b612d1b565b6001600160a01b03841660009081526007602052604090205460ff16158015612c5e57506001600160a01b03831660009081526007602052604090205460ff165b15612c6e57612c18848484613132565b6001600160a01b03841660009081526007602052604090205460ff16158015612cb057506001600160a01b03831660009081526007602052604090205460ff16155b15612cc057612c188484846131db565b6001600160a01b03841660009081526007602052604090205460ff168015612d0057506001600160a01b03831660009081526007602052604090205460ff165b15612d1057612c1884848461321f565b612d1b8484846131db565b80612d2857612d28613292565b50505050565b600c54600b546000918291825b600854811015612e5f57826003600060088481548110612d5757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612dbc5750816004600060088481548110612d9557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612dd357600c54600b5494509450505050612e8d565b612e136003600060088481548110612de757fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906128ff565b9250612e556004600060088481548110612e2957fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906128ff565b9150600101612d3b565b50600b54600c54612e6f916127ea565b821015612e8757600c54600b54935093505050612e8d565b90925090505b9091565b60008183612ee05760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561278457818101518382015260200161276c565b506000838581612eec57fe5b0495945050505050565b6000808080612f106064612f0a89896132ce565b906127ea565b90506000612f236064612f0a8a896132ce565b90506000612f3b82612f358b866128ff565b906128ff565b9992985090965090945050505050565b6000808080612f5a88866132ce565b90506000612f6888876132ce565b90506000612f7688886132ce565b90506000612f8882612f3586866128ff565b939b939a50919850919650505050505050565b601054610100900460ff16158015612fbc575060105462010000900460ff16155b15612fc65761300c565b6010805464ff000000001963ff00000019821661010090920460ff9081166301000000029290921790811662010000909104909116640100000000021762ffff00191690555b565b6000806000806000806130208761288d565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061305290886128ff565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461308190876128ff565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546130b09086612833565b6001600160a01b0389166000908152600360205260409020556130d281613327565b6130dc84836133b0565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806131448761288d565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061317690876128ff565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546131ac9084612833565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546130b09086612833565b6000806000806000806131ed8761288d565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061308190876128ff565b6000806000806000806132318761288d565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061326390886128ff565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461317690876128ff565b601080546201000064010000000060ff6301000000840481166101000261ff0019909416939093179081049092160262ff000019909116179055565b6000826132dd57506000610b3a565b828202828482816132ea57fe5b041461282c5760405162461bcd60e51b815260040180806020018281038252602181526020018061351b6021913960400191505060405180910390fd5b60006133316127c7565b9050600061333f83836132ce565b3060009081526003602052604090205490915061335c9082612833565b3060009081526003602090815260408083209390935560079052205460ff16156133ab573060009081526004602052604090205461339a9084612833565b306000908152600460205260409020555b505050565b600c546133bd90836128ff565b600c55600d546133cd9082612833565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373636f6e74726163742062616c616e63652073686f756c642062652067726561746572207468656e20616d6f756e74416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416c726561647920626f75676874206d61785478416d6f756e742c20776169742074696c6c20636865636b206f66665472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e6d61785478416d6f756e742073686f756c642062652067726561746572207468616e20746f74616c20316539536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e06e756d4f66546f6b656e73546f45786368616e6765466f724d61726b6574696e672073686f756c642062652067726561746572207468616e20746f74616c203165395472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122005cd1934d53f55732d492e3607650cbc32ab0b44209376a50f8f885e455e6beb64736f6c634300060c0033

Deployed Bytecode

0x60806040526004361061028c5760003560e01c806366be26571161015a578063a457c2d7116100c1578063dd4670641161007a578063dd4670641461099e578063dd62ed3e146109c8578063e01af92c14610a03578063f2fde38b14610a2f578063f429389014610a62578063f815a84214610a7757610293565b8063a457c2d71461089d578063a69df4b5146108d6578063a9059cbb146108eb578063af9549e014610924578063b6c523241461095f578063d8f0c8c01461097457610293565b80637ded4d6a116101135780637ded4d6a146107a857806388e0853e146107db57806388f82020146108055780638da5cb5b14610838578063906184da1461084d57806395d89b411461088857610293565b806366be2657146106dc5780636ce06d66146106f15780636ddd17131461071e57806370a0823114610733578063715018a6146107665780637c631e601461077b57610293565b8063313ce567116101fe5780634549b039116101b75780634549b039146105f0578063474fe03f1461062257806349bd5a5e1461064c57806351bc3c851461066157806352390c02146106765780635342acb4146106a957610293565b8063313ce567146104e75780633685d4191461051257806339509351146105455780633bd5d1731461057e5780634144d9e4146105a85780634303443d146105bd57610293565b80631bbae6e0116102505780631bbae6e0146103dc5780631ff53b601461040857806320071ea81461043b57806323b872dd146104505780632d8381191461049357806330599fc5146104bd57610293565b806306fdde0314610298578063095ea7b31461032257806313114a9d1461036f5780631694505e1461039657806318160ddd146103c757610293565b3661029357005b600080fd5b3480156102a457600080fd5b506102ad610a8c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e75781810151838201526020016102cf565b50505050905090810190601f1680156103145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561032e57600080fd5b5061035b6004803603604081101561034557600080fd5b506001600160a01b038135169060200135610b22565b604080519115158252519081900360200190f35b34801561037b57600080fd5b50610384610b40565b60408051918252519081900360200190f35b3480156103a257600080fd5b506103ab610b46565b604080516001600160a01b039092168252519081900360200190f35b3480156103d357600080fd5b50610384610b6a565b3480156103e857600080fd5b50610406600480360360208110156103ff57600080fd5b5035610b70565b005b34801561041457600080fd5b506104066004803603602081101561042b57600080fd5b50356001600160a01b0316610c10565b34801561044757600080fd5b506103ab610c98565b34801561045c57600080fd5b5061035b6004803603606081101561047357600080fd5b506001600160a01b03813581169160208101359091169060400135610ca7565b34801561049f57600080fd5b50610384600480360360208110156104b657600080fd5b5035610d2e565b3480156104c957600080fd5b50610406600480360360208110156104e057600080fd5b5035610d90565b3480156104f357600080fd5b506104fc610e0f565b6040805160ff9092168252519081900360200190f35b34801561051e57600080fd5b506104066004803603602081101561053557600080fd5b50356001600160a01b0316610e18565b34801561055157600080fd5b5061035b6004803603604081101561056857600080fd5b506001600160a01b038135169060200135610fd9565b34801561058a57600080fd5b50610406600480360360208110156105a157600080fd5b5035611027565b3480156105b457600080fd5b506103ab611101565b3480156105c957600080fd5b50610406600480360360208110156105e057600080fd5b50356001600160a01b0316611119565b3480156105fc57600080fd5b506103846004803603604081101561061357600080fd5b508035906020013515156112a1565b34801561062e57600080fd5b506104066004803603602081101561064557600080fd5b5035611333565b34801561065857600080fd5b506103ab6113e0565b34801561066d57600080fd5b50610406611404565b34801561068257600080fd5b506104066004803603602081101561069957600080fd5b50356001600160a01b0316611472565b3480156106b557600080fd5b5061035b600480360360208110156106cc57600080fd5b50356001600160a01b0316611654565b3480156106e857600080fd5b506103ab611672565b3480156106fd57600080fd5b506104066004803603602081101561071457600080fd5b503560ff16611681565b34801561072a57600080fd5b5061035b611750565b34801561073f57600080fd5b506103846004803603602081101561075657600080fd5b50356001600160a01b0316611760565b34801561077257600080fd5b506104066117c2565b34801561078757600080fd5b506104066004803603602081101561079e57600080fd5b503560ff16611852565b3480156107b457600080fd5b50610406600480360360208110156107cb57600080fd5b50356001600160a01b031661191f565b3480156107e757600080fd5b50610406600480360360208110156107fe57600080fd5b5035611aac565b34801561081157600080fd5b5061035b6004803603602081101561082857600080fd5b50356001600160a01b0316611b15565b34801561084457600080fd5b506103ab611b33565b34801561085957600080fd5b506104066004803603604081101561087057600080fd5b506001600160a01b0381358116916020013516611b42565b34801561089457600080fd5b506102ad611c03565b3480156108a957600080fd5b5061035b600480360360408110156108c057600080fd5b506001600160a01b038135169060200135611c64565b3480156108e257600080fd5b50610406611ccc565b3480156108f757600080fd5b5061035b6004803603604081101561090e57600080fd5b506001600160a01b038135169060200135611dba565b34801561093057600080fd5b506104066004803603604081101561094757600080fd5b506001600160a01b0381351690602001351515611dce565b34801561096b57600080fd5b50610384611e51565b34801561098057600080fd5b506104066004803603602081101561099757600080fd5b5035611e57565b3480156109aa57600080fd5b50610406600480360360208110156109c157600080fd5b5035611ef7565b3480156109d457600080fd5b50610384600480360360408110156109eb57600080fd5b506001600160a01b0381358116916020013516611f95565b348015610a0f57600080fd5b5061040660048036036020811015610a2657600080fd5b50351515611fc0565b348015610a3b57600080fd5b5061040660048036036020811015610a5257600080fd5b50356001600160a01b0316612036565b348015610a6e57600080fd5b5061040661211c565b348015610a8357600080fd5b5061038461217e565b600e8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b185780601f10610aed57610100808354040283529160200191610b18565b820191906000526020600020905b815481529060010190602001808311610afb57829003601f168201915b5050505050905090565b6000610b36610b2f612182565b8484612186565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b610b78612182565b6000546001600160a01b03908116911614610bc8576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b633b9aca00811015610c0b5760405162461bcd60e51b815260040180806020018281038252602c8152602001806134ef602c913960400191505060405180910390fd5b601355565b610c18612182565b6000546001600160a01b03908116911614610c68576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b601080546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b6011546001600160a01b031681565b6000610cb4848484612272565b610d2484610cc0612182565b610d1f8560405180606001604052806028815260200161353c602891396001600160a01b038a16600090815260056020526040812090610cfe612182565b6001600160a01b031681526020810191909152604001600020549190612730565b612186565b5060019392505050565b6000600c54821115610d715760405162461bcd60e51b815260040180806020018281038252602a815260200180613426602a913960400191505060405180910390fd5b6000610d7b6127c7565b9050610d8783826127ea565b9150505b919050565b610d98612182565b6000546001600160a01b03908116911614610de8576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b610dfa30610df4611b33565b83612186565b610e0c30610e06611b33565b83612272565b50565b60105460ff1690565b610e20612182565b6000546001600160a01b03908116911614610e70576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610edd576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610fd557816001600160a01b031660088281548110610f0157fe5b6000918252602090912001546001600160a01b03161415610fcd57600880546000198101908110610f2e57fe5b600091825260209091200154600880546001600160a01b039092169183908110610f5457fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610fa657fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610fd5565b600101610ee0565b5050565b6000610b36610fe6612182565b84610d1f8560056000610ff7612182565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612833565b6000611031612182565b6001600160a01b03811660009081526007602052604090205490915060ff161561108c5760405162461bcd60e51b815260040180806020018281038252602c81526020018061369e602c913960400191505060405180910390fd5b60006110978361288d565b505050506001600160a01b0384166000908152600360205260409020549192506110c3919050826128ff565b6001600160a01b038316600090815260036020526040902055600c546110e990826128ff565b600c55600d546110f99084612833565b600d55505050565b6010546501000000000090046001600160a01b031681565b611121612182565b6000546001600160a01b03908116911614611171576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156111cd5760405162461bcd60e51b815260040180806020018281038252602481526020018061360f6024913960400191505060405180910390fd5b6001600160a01b03811660009081526009602052604090205460ff161561123b576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000600b548311156112fa576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161131957600061130a8461288d565b50939550610b3a945050505050565b60006113248461288d565b50929550610b3a945050505050565b61133b612182565b6000546001600160a01b0390811691161461138b576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b600061139630611760565b9050818110156113d75760405162461bcd60e51b815260040180806020018281038252602e8152602001806133f8602e913960400191505060405180910390fd5b610fd582612941565b7f0000000000000000000000005b6fc6651105e1877854e9e916102c761cc1ba8f81565b61140c612182565b6000546001600160a01b0390811691161461145c576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b600061146730611760565b9050610e0c81612941565b61147a612182565b6000546001600160a01b039081169116146114ca576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03821614156115265760405162461bcd60e51b815260040180806020018281038252602281526020018061367c6022913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff1615611594576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156115ee576001600160a01b0381166000908152600360205260409020546115d490610d2e565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b6012546001600160a01b031681565b611689612182565b6000546001600160a01b039081169116146116d9576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b600b8160ff161115611732576040805162461bcd60e51b815260206004820181905260248201527f6d61726b6574696e674665652073686f756c6420626520696e2030202d203131604482015290519081900360640190fd5b6010805460ff909216620100000262ff000019909216919091179055565b601254600160a81b900460ff1681565b6001600160a01b03811660009081526007602052604081205460ff16156117a057506001600160a01b038116600090815260046020526040902054610d8b565b6001600160a01b038216600090815260036020526040902054610b3a90610d2e565b6117ca612182565b6000546001600160a01b0390811691161461181a576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020613584833981519152908390a3600080546001600160a01b0319169055565b61185a612182565b6000546001600160a01b039081169116146118aa576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b600a8160ff161115611903576040805162461bcd60e51b815260206004820152601a60248201527f7461784665652073686f756c6420626520696e2030202d203130000000000000604482015290519081900360640190fd5b6010805460ff9092166101000261ff0019909216919091179055565b611927612182565b6000546001600160a01b03908116911614611977576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff166119e4576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600a54811015610fd557816001600160a01b0316600a8281548110611a0857fe5b6000918252602090912001546001600160a01b03161415611aa457600a80546000198101908110611a3557fe5b600091825260209091200154600a80546001600160a01b039092169183908110611a5b57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600990915260409020805460ff19169055600a805480610fa657fe5b6001016119e7565b611ab4612182565b6000546001600160a01b03908116911614611b04576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b611b0d81611333565b610e0c61211c565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611b4a612182565b6000546001600160a01b03908116911614611b9a576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b601180546001600160a01b039384166001600160a01b031991821681179092556012805460ff60a81b199490951694909116841792909216909155600090815260066020526040808220805460ff19908116600190811790925593835291208054909216179055565b600f8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b185780601f10610aed57610100808354040283529160200191610b18565b6000610b36611c71612182565b84610d1f856040518060600160405280602581526020016136ed6025913960056000611c9b612182565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612730565b6001546001600160a01b03163314611d155760405162461bcd60e51b81526004018080602001828103825260238152602001806136ca6023913960400191505060405180910390fd5b6002544211611d6b576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b03938416939091169160008051602061358483398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610b36611dc7612182565b8484612272565b611dd6612182565b6000546001600160a01b03908116911614611e26576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60025490565b611e5f612182565b6000546001600160a01b03908116911614611eaf576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b633b9aca00811015611ef25760405162461bcd60e51b81526004018080602001828103825260428152602001806135a46042913960600191505060405180910390fd5b601455565b611eff612182565b6000546001600160a01b03908116911614611f4f576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020613584833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b611fc8612182565b6000546001600160a01b03908116911614612018576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b60128054911515600160a81b0260ff60a81b19909216919091179055565b61203e612182565b6000546001600160a01b0390811691161461208e576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b6001600160a01b0381166120d35760405162461bcd60e51b81526004018080602001828103825260268152602001806134506026913960400191505060405180910390fd5b600080546040516001600160a01b038085169392169160008051602061358483398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b612124612182565b6000546001600160a01b03908116911614612174576040805162461bcd60e51b81526020600482018190526024820152600080516020613564833981519152604482015290519081900360640190fd5b47610e0c81612b78565b4790565b3390565b6001600160a01b0383166121cb5760405162461bcd60e51b81526004018080602001828103825260248152602001806136586024913960400191505060405180910390fd5b6001600160a01b0382166122105760405162461bcd60e51b81526004018080602001828103825260228152602001806134766022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166122b75760405162461bcd60e51b81526004018080602001828103825260258152602001806136336025913960400191505060405180910390fd5b6001600160a01b0382166122fc5760405162461bcd60e51b81526004018080602001828103825260238152602001806133d56023913960400191505060405180910390fd5b6000811161233b5760405162461bcd60e51b81526004018080602001828103825260298152602001806135e66029913960400191505060405180910390fd5b6001600160a01b03831660009081526009602052604090205460ff16156123a3576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b03821660009081526009602052604090205460ff161561240b576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3260009081526009602052604090205460ff161561246a576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b612472611b33565b6001600160a01b0316836001600160a01b0316141580156124ac5750612496611b33565b6001600160a01b0316826001600160a01b031614155b80156124df57506011546001600160a01b038481169116148015906124df57506011546001600160a01b03838116911614155b801561251257506012546001600160a01b0384811691161480159061251257506012546001600160a01b03838116911614155b15612624576013548111156125585760405162461bcd60e51b81526004018080602001828103825260288152602001806134c76028913960400191505060405180910390fd5b7f0000000000000000000000005b6fc6651105e1877854e9e916102c761cc1ba8f6001600160a01b0316836001600160a01b031614156126245760135461259e83611760565b11156125db5760405162461bcd60e51b815260040180806020018281038252602f815260200180613498602f913960400191505060405180910390fd5b6013546125e732611760565b11156126245760405162461bcd60e51b815260040180806020018281038252602f815260200180613498602f913960400191505060405180910390fd5b600061262f30611760565b9050601354811061263f57506013545b6014546012549082101590600160a01b900460ff1615801561266a5750601254600160a81b900460ff165b80156126735750805b80156126b157507f0000000000000000000000005b6fc6651105e1877854e9e916102c761cc1ba8f6001600160a01b0316856001600160a01b031614155b156126d1576126bf82612941565b4780156126cf576126cf47612b78565b505b6001600160a01b03851660009081526006602052604090205460019060ff168061271357506001600160a01b03851660009081526006602052604090205460ff165b1561271c575060005b61272886868684612bba565b505050505050565b600081848411156127bf5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561278457818101518382015260200161276c565b50505050905090810190601f1680156127b15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008060006127d4612d2e565b90925090506127e382826127ea565b9250505090565b600061282c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e91565b9392505050565b60008282018381101561282c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b601054600090819081908190819081908190819081906128bf908b9060ff610100820481169162010000900416612ef6565b92509250925060006128cf6127c7565b905060008060006128e28e878787612f4b565b919e509c509a509598509396509194505050505091939550919395565b600061282c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612730565b6012805460ff60a01b1916600160a01b1790556040805160028082526060808301845292602083019080368337019050509050308160008151811061298257fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156129fb57600080fd5b505afa158015612a0f573d6000803e3d6000fd5b505050506040513d6020811015612a2557600080fd5b5051815182906001908110612a3657fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612a81307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612186565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015612b26578181015183820152602001612b0e565b505050509050019650505050505050600060405180830381600087803b158015612b4f57600080fd5b505af1158015612b63573d6000803e3d6000fd5b50506012805460ff60a01b1916905550505050565b601054604051650100000000009091046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015610fd5573d6000803e3d6000fd5b80612bc757612bc7612f9b565b6001600160a01b03841660009081526007602052604090205460ff168015612c0857506001600160a01b03831660009081526007602052604090205460ff16155b15612c1d57612c1884848461300e565b612d1b565b6001600160a01b03841660009081526007602052604090205460ff16158015612c5e57506001600160a01b03831660009081526007602052604090205460ff165b15612c6e57612c18848484613132565b6001600160a01b03841660009081526007602052604090205460ff16158015612cb057506001600160a01b03831660009081526007602052604090205460ff16155b15612cc057612c188484846131db565b6001600160a01b03841660009081526007602052604090205460ff168015612d0057506001600160a01b03831660009081526007602052604090205460ff165b15612d1057612c1884848461321f565b612d1b8484846131db565b80612d2857612d28613292565b50505050565b600c54600b546000918291825b600854811015612e5f57826003600060088481548110612d5757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612dbc5750816004600060088481548110612d9557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15612dd357600c54600b5494509450505050612e8d565b612e136003600060088481548110612de757fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205484906128ff565b9250612e556004600060088481548110612e2957fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205483906128ff565b9150600101612d3b565b50600b54600c54612e6f916127ea565b821015612e8757600c54600b54935093505050612e8d565b90925090505b9091565b60008183612ee05760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561278457818101518382015260200161276c565b506000838581612eec57fe5b0495945050505050565b6000808080612f106064612f0a89896132ce565b906127ea565b90506000612f236064612f0a8a896132ce565b90506000612f3b82612f358b866128ff565b906128ff565b9992985090965090945050505050565b6000808080612f5a88866132ce565b90506000612f6888876132ce565b90506000612f7688886132ce565b90506000612f8882612f3586866128ff565b939b939a50919850919650505050505050565b601054610100900460ff16158015612fbc575060105462010000900460ff16155b15612fc65761300c565b6010805464ff000000001963ff00000019821661010090920460ff9081166301000000029290921790811662010000909104909116640100000000021762ffff00191690555b565b6000806000806000806130208761288d565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061305290886128ff565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461308190876128ff565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546130b09086612833565b6001600160a01b0389166000908152600360205260409020556130d281613327565b6130dc84836133b0565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806131448761288d565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061317690876128ff565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546131ac9084612833565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546130b09086612833565b6000806000806000806131ed8761288d565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061308190876128ff565b6000806000806000806132318761288d565b6001600160a01b038f16600090815260046020526040902054959b5093995091975095509350915061326390886128ff565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461317690876128ff565b601080546201000064010000000060ff6301000000840481166101000261ff0019909416939093179081049092160262ff000019909116179055565b6000826132dd57506000610b3a565b828202828482816132ea57fe5b041461282c5760405162461bcd60e51b815260040180806020018281038252602181526020018061351b6021913960400191505060405180910390fd5b60006133316127c7565b9050600061333f83836132ce565b3060009081526003602052604090205490915061335c9082612833565b3060009081526003602090815260408083209390935560079052205460ff16156133ab573060009081526004602052604090205461339a9084612833565b306000908152600460205260409020555b505050565b600c546133bd90836128ff565b600c55600d546133cd9082612833565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373636f6e74726163742062616c616e63652073686f756c642062652067726561746572207468656e20616d6f756e74416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373416c726561647920626f75676874206d61785478416d6f756e742c20776169742074696c6c20636865636b206f66665472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e6d61785478416d6f756e742073686f756c642062652067726561746572207468616e20746f74616c20316539536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e06e756d4f66546f6b656e73546f45786368616e6765466f724d61726b6574696e672073686f756c642062652067726561746572207468616e20746f74616c203165395472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520556e697377617020726f757465722e4578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122005cd1934d53f55732d492e3607650cbc32ab0b44209376a50f8f885e455e6beb64736f6c634300060c0033

Deployed Bytecode Sourcemap

16748:23232:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21571:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22483:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22483:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;23749:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18278:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;18278:51:0;;;;;;;;;;;;;;21848:95;;;;;;;;;;;;;:::i;39143:201::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39143:201:0;;:::i;:::-;;38637:157;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38637:157:0;-1:-1:-1;;;;;38637:157:0;;:::i;18163:49::-;;;;;;;;;;;;;:::i;22652:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22652:313:0;;;;;;;;;;;;;;;;;:::i;24673:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24673:253:0;;:::i;39352:192::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39352:192:0;;:::i;21757:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25388:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25388:479:0;-1:-1:-1;;;;;25388:479:0;;:::i;22973:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22973:218:0;;;;;;;;:::i;23844:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23844:377:0;;:::i;18056:100::-;;;;;;;;;;;;;:::i;25875:352::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25875:352:0;-1:-1:-1;;;;;25875:352:0;;:::i;24229:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24229:436:0;;;;;;;;;:::i;31356:263::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31356:263:0;;:::i;18336:38::-;;;;;;;;;;;;;:::i;31192:156::-;;;;;;;;;;;;;:::i;24934:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24934:446:0;-1:-1:-1;;;;;24934:446:0;;:::i;27118:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27118:123:0;-1:-1:-1;;;;;27118:123:0;;:::i;18219:50::-;;;;;;;;;;;;;:::i;38420:209::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38420:209:0;;;;:::i;18409:31::-;;;;;;;;;;;;;:::i;21951:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21951:198:0;-1:-1:-1;;;;;21951:198:0;;:::i;14921:148::-;;;;;;;;;;;;;:::i;38245:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38245:167:0;;;;:::i;26235:500::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26235:500:0;-1:-1:-1;;;;;26235:500:0;;:::i;31794:130::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31794:130:0;;:::i;23476:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23476:120:0;-1:-1:-1;;;;;23476:120:0;;:::i;14287:79::-;;;;;;;;;;;;;:::i;39552:425::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39552:425:0;;;;;;;;;;:::i;21662:87::-;;;;;;;;;;;;;:::i;23199:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23199:269:0;;;;;;;;:::i;15924:293::-;;;;;;;;;;;;;:::i;22157:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22157:167:0;;;;;;;;:::i;23604:137::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23604:137:0;;;;;;;;;;:::i;15473:89::-;;;;;;;;;;;;;:::i;38802:333::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38802:333:0;;:::i;15638:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15638:214:0;;:::i;22332:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22332:143:0;;;;;;;;;;:::i;31932:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31932:98:0;;;;:::i;15221:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15221:244:0;-1:-1:-1;;;;;15221:244:0;;:::i;31627:159::-;;;;;;;;;;;;;:::i;38127:110::-;;;;;;;;;;;;;:::i;21571:83::-;21641:5;21634:12;;;;;;;;-1:-1:-1;;21634:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21608:13;;21634:12;;21641:5;;21634:12;;21641:5;21634:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21571:83;:::o;22483:161::-;22558:4;22575:39;22584:12;:10;:12::i;:::-;22598:7;22607:6;22575:8;:39::i;:::-;-1:-1:-1;22632:4:0;22483:161;;;;;:::o;23749:87::-;23818:10;;23749:87;:::o;18278:51::-;;;:::o;21848:95::-;21928:7;;21848:95;:::o;39143:201::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;39244:5:::1;39229:11;:20;;39221:78;;;;-1:-1:-1::0;;;39221:78:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39310:12;:26:::0;39143:201::o;38637:157::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;38738:23:::1;:48:::0;;-1:-1:-1;;;;;38738:48:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;38738:48:0;;::::1;::::0;;;::::1;::::0;;38637:157::o;18163:49::-;;;-1:-1:-1;;;;;18163:49:0;;:::o;22652:313::-;22750:4;22767:36;22777:6;22785:9;22796:6;22767:9;:36::i;:::-;22814:121;22823:6;22831:12;:10;:12::i;:::-;22845:89;22883:6;22845:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22845:19:0;;;;;;:11;:19;;;;;;22865:12;:10;:12::i;:::-;-1:-1:-1;;;;;22845:33:0;;;;;;;;;;;;-1:-1:-1;22845:33:0;;;:89;:37;:89::i;:::-;22814:8;:121::i;:::-;-1:-1:-1;22953:4:0;22652:313;;;;;:::o;24673:253::-;24739:7;24778;;24767;:18;;24759:73;;;;-1:-1:-1;;;24759:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24843:19;24866:10;:8;:10::i;:::-;24843:33;-1:-1:-1;24894:24:0;:7;24843:33;24894:11;:24::i;:::-;24887:31;;;24673:253;;;;:::o;39352:192::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;39434:45:::1;39451:4;39458:7;:5;:7::i;:::-;39467:11;39434:8;:45::i;:::-;39490:46;39508:4;39515:7;:5;:7::i;:::-;39524:11;39490:9;:46::i;:::-;39352:192:::0;:::o;21757:83::-;21823:9;;;;21757:83;:::o;25388:479::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25470:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;25462:60;;;::::0;;-1:-1:-1;;;25462:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;25538:9;25533:327;25557:9;:16:::0;25553:20;::::1;25533:327;;;25615:7;-1:-1:-1::0;;;;;25599:23:0::1;:9;25609:1;25599:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;25599:12:0::1;:23;25595:254;;;25658:9;25668:16:::0;;-1:-1:-1;;25668:20:0;;;25658:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;25643:9:::1;:12:::0;;-1:-1:-1;;;;;25658:31:0;;::::1;::::0;25653:1;;25643:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;25643:46:0::1;-1:-1:-1::0;;;;;25643:46:0;;::::1;;::::0;;25708:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;25747:11:::1;:20:::0;;;;:28;;-1:-1:-1;;25747:28:0::1;::::0;;25794:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;25794:15:0;;;;;-1:-1:-1;;;;;;25794:15:0::1;::::0;;;;;25828:5:::1;;25595:254;25575:3;;25533:327;;;;25388:479:::0;:::o;22973:218::-;23061:4;23078:83;23087:12;:10;:12::i;:::-;23101:7;23110:50;23149:10;23110:11;:25;23122:12;:10;:12::i;:::-;-1:-1:-1;;;;;23110:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23110:25:0;;;:34;;;;;;;;;;;:38;:50::i;23844:377::-;23896:14;23913:12;:10;:12::i;:::-;-1:-1:-1;;;;;23945:19:0;;;;;;:11;:19;;;;;;23896:29;;-1:-1:-1;23945:19:0;;23944:20;23936:77;;;;-1:-1:-1;;;23936:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24025:15;24049:19;24060:7;24049:10;:19::i;:::-;-1:-1:-1;;;;;;;;;24097:15:0;;;;;;:7;:15;;;;;;24024:44;;-1:-1:-1;24097:28:0;;:15;-1:-1:-1;24024:44:0;24097:19;:28::i;:::-;-1:-1:-1;;;;;24079:15:0;;;;;;:7;:15;;;;;:46;24146:7;;:20;;24158:7;24146:11;:20::i;:::-;24136:7;:30;24190:10;;:23;;24205:7;24190:14;:23::i;:::-;24177:10;:36;-1:-1:-1;;;23844:377:0:o;18056:100::-;;;;;;-1:-1:-1;;;;;18056:100:0;;:::o;25875:352::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;25970:42:::1;-1:-1:-1::0;;;;;25959:53:0;::::1;;;25951:102;;;;-1:-1:-1::0;;;25951:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;26073:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;26072:27;26064:70;;;::::0;;-1:-1:-1;;;26064:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;26145:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;26145:33:0::1;26174:4;26145:33:::0;;::::1;::::0;;;26189:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;26189:30:0::1;::::0;;::::1;::::0;;25875:352::o;24229:436::-;24319:7;24358;;24347;:18;;24339:62;;;;;-1:-1:-1;;;24339:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24417:17;24412:246;;24452:15;24476:19;24487:7;24476:10;:19::i;:::-;-1:-1:-1;24451:44:0;;-1:-1:-1;24510:14:0;;-1:-1:-1;;;;;24510:14:0;24412:246;24559:23;24590:19;24601:7;24590:10;:19::i;:::-;-1:-1:-1;24557:52:0;;-1:-1:-1;24624:22:0;;-1:-1:-1;;;;;24624:22:0;31356:263;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;31428:23:::1;31454:24;31472:4;31454:9;:24::i;:::-;31428:50;;31516:6;31497:15;:25;;31489:85;;;;-1:-1:-1::0;;;31489:85:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31587:24;31604:6;31587:16;:24::i;18336:38::-:0;;;:::o;31192:156::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;31246:23:::1;31272:24;31290:4;31272:9;:24::i;:::-;31246:50;;31307:33;31324:15;31307:16;:33::i;24934:446::-:0;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;25029:42:::1;-1:-1:-1::0;;;;;25018:53:0;::::1;;;25010:100;;;;-1:-1:-1::0;;;25010:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;25130:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;25129:21;25121:61;;;::::0;;-1:-1:-1;;;25121:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;25196:16:0;::::1;25215:1;25196:16:::0;;;:7:::1;:16;::::0;;;;;:20;25193:108:::1;;-1:-1:-1::0;;;;;25272:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;25252:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;25233:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;25193:108:::1;-1:-1:-1::0;;;;;25311:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;25311:27:0::1;25334:4;25311:27:::0;;::::1;::::0;;;25349:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;25349:23:0::1;::::0;;::::1;::::0;;24934:446::o;27118:123::-;-1:-1:-1;;;;;27206:27:0;27182:4;27206:27;;;:18;:27;;;;;;;;;27118:123::o;18219:50::-;;;-1:-1:-1;;;;;18219:50:0;;:::o;38420:209::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;38543:2:::1;38527:12;:18;;;;38498:84;;;::::0;;-1:-1:-1;;;38498:84:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38593:13;:28:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;38593:28:0;;::::1;::::0;;;::::1;::::0;;38420:209::o;18409:31::-;;;-1:-1:-1;;;18409:31:0;;;;;:::o;21951:198::-;-1:-1:-1;;;;;22041:20:0;;22017:7;22041:20;;;:11;:20;;;;;;;;22037:49;;;-1:-1:-1;;;;;;22070:16:0;;;;;;:7;:16;;;;;;22063:23;;22037:49;-1:-1:-1;;;;;22124:16:0;;;;;;:7;:16;;;;;;22104:37;;:19;:37::i;14921:148::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;15028:1:::1;15012:6:::0;;14991:40:::1;::::0;-1:-1:-1;;;;;15012:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;14991:40:0;15028:1;;14991:40:::1;15059:1;15042:19:::0;;-1:-1:-1;;;;;;15042:19:0::1;::::0;;14921:148::o;38245:167::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;38344:2:::1;38334:6;:12;;;;38311:66;;;::::0;;-1:-1:-1;;;38311:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;38388:7;:16:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;38388:16:0;;::::1;::::0;;;::::1;::::0;;38245:167::o;26235:500::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26324:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;26316:65;;;::::0;;-1:-1:-1;;;26316:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;26397:9;26392:336;26416:16;:23:::0;26412:27;::::1;26392:336;;;26488:7;-1:-1:-1::0;;;;;26465:30:0::1;:16;26482:1;26465:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;26465:19:0::1;:30;26461:256;;;26538:16;26555:23:::0;;-1:-1:-1;;26555:27:0;;;26538:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;26516:16:::1;:19:::0;;-1:-1:-1;;;;;26538:45:0;;::::1;::::0;26533:1;;26516:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;26516:67:0::1;-1:-1:-1::0;;;;;26516:67:0;;::::1;;::::0;;26602:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;26602:34:0::1;::::0;;26655:16:::1;:22:::0;;;::::1;;;26461:256;26441:3;;26392:336;;31794:130:::0;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;31869:24:::1;31886:6;31869:16;:24::i;:::-;31904:12;:10;:12::i;23476:120::-:0;-1:-1:-1;;;;;23568:20:0;23544:4;23568:20;;;:11;:20;;;;;;;;;23476:120::o;14287:79::-;14325:7;14352:6;-1:-1:-1;;;;;14352:6:0;14287:79;:::o;39552:425::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;39691:26:::1;:54:::0;;-1:-1:-1;;;;;39691:54:0;;::::1;-1:-1:-1::0;;;;;;39691:54:0;;::::1;::::0;::::1;::::0;;;39756:27:::1;:56:::0;;-1:-1:-1;;;;39756:56:0;;;::::1;::::0;;;::::1;::::0;::::1;39823:19:::0;;;::::1;::::0;;;39691:26:::1;39853:45:::0;;;:18:::1;:45;::::0;;;;;:52;;-1:-1:-1;;39853:52:0;;::::1;39691:54:::0;39853:52;;::::1;::::0;;;39916:46;;;;;:53;;;;::::1;;::::0;;39552:425::o;21662:87::-;21734:7;21727:14;;;;;;;;-1:-1:-1;;21727:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21701:13;;21727:14;;21734:7;;21727:14;;21734:7;21727:14;;;;;;;;;;;;;;;;;;;;;;;;23199:269;23292:4;23309:129;23318:12;:10;:12::i;:::-;23332:7;23341:96;23380:15;23341:96;;;;;;;;;;;;;;;;;:11;:25;23353:12;:10;:12::i;:::-;-1:-1:-1;;;;;23341:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23341:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;15924:293::-;15976:14;;-1:-1:-1;;;;;15976:14:0;15994:10;15976:28;15968:76;;;;-1:-1:-1;;;15968:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16069:9;;16063:3;:15;16055:60;;;;;-1:-1:-1;;;16055:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16160:14;;;16152:6;;16131:44;;-1:-1:-1;;;;;16160:14:0;;;;16152:6;;;;-1:-1:-1;;;;;;;;;;;16131:44:0;;16195:14;;;16186:23;;-1:-1:-1;;;;;;16186:23:0;-1:-1:-1;;;;;16195:14:0;;;16186:23;;;;;;15924:293::o;22157:167::-;22235:4;22252:42;22262:12;:10;:12::i;:::-;22276:9;22287:6;22252:9;:42::i;23604:137::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23695:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;23695:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23604:137::o;15473:89::-;15545:9;;15473:89;:::o;38802:333::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;38969:5:::1;38932:33;:42;;38924:122;;;;-1:-1:-1::0;;;38924:122:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39057:34;:70:::0;38802:333::o;15638:214::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;15719:6:::1;::::0;;;15702:23;;-1:-1:-1;;;;;;15702:23:0;;::::1;-1:-1:-1::0;;;;;15719:6:0;::::1;15702:23;::::0;;;15736:19:::1;::::0;;15778:3:::1;:10:::0;::::1;15766:9;:22:::0;15804:40:::1;::::0;15719:6;;-1:-1:-1;;;;;;;;;;;15804:40:0;15719:6;;15804:40:::1;15638:214:::0;:::o;22332:143::-;-1:-1:-1;;;;;22440:18:0;;;22413:7;22440:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;22332:143::o;31932:98::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;32001:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;32001:21:0::1;-1:-1:-1::0;;;;32001:21:0;;::::1;::::0;;;::::1;::::0;;31932:98::o;15221:244::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;15310:22:0;::::1;15302:73;;;;-1:-1:-1::0;;;15302:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15412:6;::::0;;15391:38:::1;::::0;-1:-1:-1;;;;;15391:38:0;;::::1;::::0;15412:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;15391:38:0;::::1;15440:6;:17:::0;;-1:-1:-1;;;;;;15440:17:0::1;-1:-1:-1::0;;;;;15440:17:0;;;::::1;::::0;;;::::1;::::0;;15221:244::o;31627:159::-;14507:12;:10;:12::i;:::-;14497:6;;-1:-1:-1;;;;;14497:6:0;;;:22;;;14489:67;;;;;-1:-1:-1;;;14489:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;14489:67:0;;;;;;;;;;;;;;;31708:21:::1;31740:38;31708:21:::0;31740:18:::1;:38::i;38127:110::-:0;38208:21;38127:110;:::o;108:106::-;196:10;108:106;:::o;27249:337::-;-1:-1:-1;;;;;27342:19:0;;27334:68;;;;-1:-1:-1;;;27334:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27421:21:0;;27413:68;;;;-1:-1:-1;;;27413:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27494:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27546:32;;;;;;;;;;;;;;;;;27249:337;;;:::o;27594:2721::-;-1:-1:-1;;;;;27691:20:0;;27683:70;;;;-1:-1:-1;;;27683:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27772:23:0;;27764:71;;;;-1:-1:-1;;;27764:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27863:1;27854:6;:10;27846:64;;;;-1:-1:-1;;;27846:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27930:25:0;;;;;;:17;:25;;;;;;;;27929:26;27921:62;;;;;-1:-1:-1;;;27921:62:0;;;;;;;;;;;;-1:-1:-1;;;27921:62:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28003:28:0;;;;;;:17;:28;;;;;;;;28002:29;27994:65;;;;;-1:-1:-1;;;27994:65:0;;;;;;;;;;;;-1:-1:-1;;;27994:65:0;;;;;;;;;;;;;;;28097:9;28079:28;;;;:17;:28;;;;;;;;28078:29;28070:65;;;;;-1:-1:-1;;;28070:65:0;;;;;;;;;;;;-1:-1:-1;;;28070:65:0;;;;;;;;;;;;;;;28162:7;:5;:7::i;:::-;-1:-1:-1;;;;;28152:17:0;:6;-1:-1:-1;;;;;28152:17:0;;;:41;;;;;28186:7;:5;:7::i;:::-;-1:-1:-1;;;;;28173:20:0;:9;-1:-1:-1;;;;;28173:20:0;;;28152:41;28151:128;;;;-1:-1:-1;28209:26:0;;-1:-1:-1;;;;;28199:36:0;;;28209:26;;28199:36;;;;:79;;-1:-1:-1;28252:26:0;;-1:-1:-1;;;;;28239:39:0;;;28252:26;;28239:39;;28199:79;28151:215;;;;-1:-1:-1;28294:27:0;;-1:-1:-1;;;;;28284:37:0;;;28294:27;;28284:37;;;;:81;;-1:-1:-1;28338:27:0;;-1:-1:-1;;;;;28325:40:0;;;28338:27;;28325:40;;28284:81;28148:770;;;28401:12;;28391:6;:22;;28383:75;;;;-1:-1:-1;;;28383:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28646:13;-1:-1:-1;;;;;28636:23:0;:6;-1:-1:-1;;;;;28636:23:0;;28632:275;;;28712:12;;28688:20;28698:9;28688;:20::i;:::-;:36;;28680:96;;;;-1:-1:-1;;;28680:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28827:12;;28803:20;28813:9;28803;:20::i;:::-;:36;;28795:96;;;;-1:-1:-1;;;28795:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29185:28;29216:24;29234:4;29216:9;:24::i;:::-;29185:55;;29280:12;;29256:20;:36;29253:112;;-1:-1:-1;29341:12:0;;29253:112;29428:34;;29478:6;;29404:58;;;;;-1:-1:-1;;;29478:6:0;;;;29477:7;:22;;;;-1:-1:-1;29488:11:0;;-1:-1:-1;;;29488:11:0;;;;29477:22;:45;;;;;29503:19;29477:45;:72;;;;;29536:13;-1:-1:-1;;;;;29526:23:0;:6;-1:-1:-1;;;;;29526:23:0;;;29477:72;29473:418;;;29657:38;29674:20;29657:16;:38::i;:::-;29741:21;29780:22;;29777:103;;29823:41;29842:21;29823:18;:41::i;:::-;29473:418;;-1:-1:-1;;;;;30083:26:0;;29964:12;30083:26;;;:18;:26;;;;;;29979:4;;30083:26;;;:59;;-1:-1:-1;;;;;;30113:29:0;;;;;;:18;:29;;;;;;;;30083:59;30080:105;;;-1:-1:-1;30168:5:0;30080:105;30260:47;30275:6;30282:9;30292:6;30299:7;30260:14;:47::i;:::-;27594:2721;;;;;;:::o;4195:192::-;4281:7;4317:12;4309:6;;;;4301:29;;;;-1:-1:-1;;;4301:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4353:5:0;;;4195:192::o;37197:163::-;37238:7;37259:15;37276;37295:19;:17;:19::i;:::-;37258:56;;-1:-1:-1;37258:56:0;-1:-1:-1;37332:20:0;37258:56;;37332:11;:20::i;:::-;37325:27;;;;37197:163;:::o;5573:132::-;5631:7;5658:39;5662:1;5665;5658:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5651:46;5573:132;-1:-1:-1;;;5573:132:0:o;3310:181::-;3368:7;3400:5;;;3424:6;;;;3416:46;;;;;-1:-1:-1;;;3416:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;35783:488;35990:7;;35842;;;;;;;;;;;;;;;;;;35969:44;;35981:7;;35990;;;;;;;35999:13;;;;35969:11;:44::i;:::-;35907:106;;;;;;36024:19;36047:10;:8;:10::i;:::-;36024:33;;36069:15;36086:23;36111:12;36127:51;36139:7;36148:4;36154:10;36166:11;36127;:51::i;:::-;36068:110;;-1:-1:-1;36068:110:0;-1:-1:-1;36068:110:0;-1:-1:-1;36229:15:0;;-1:-1:-1;36246:4:0;;-1:-1:-1;36252:10:0;;-1:-1:-1;;;;;35783:488:0;;;;;;;:::o;3765:136::-;3823:7;3850:43;3854:1;3857;3850:43;;;;;;;;;;;;;;;;;:3;:43::i;30323:600::-;18796:6;:13;;-1:-1:-1;;;;18796:13:0;-1:-1:-1;;;18796:13:0;;;30484:16:::1;::::0;;30498:1:::1;30484:16:::0;;;30460:21:::1;30484:16:::0;;::::1;::::0;;30460:21;30484:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;30484:16:0::1;30460:40;;30529:4;30511;30516:1;30511:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;30511:23:0::1;;;-1:-1:-1::0;;;;;30511:23:0::1;;;::::0;::::1;30555:15;-1:-1:-1::0;;;;;30555:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;30555:22:0;30545:7;;:4;;30550:1:::1;::::0;30545:7;::::1;;;;;;;;;;:32;-1:-1:-1::0;;;;;30545:32:0::1;;;-1:-1:-1::0;;;;;30545:32:0::1;;;::::0;::::1;30590:62;30607:4;30622:15;30640:11;30590:8;:62::i;:::-;30691:15;-1:-1:-1::0;;;;;30691:66:0::1;;30772:11;30798:1;30842:4;30869;30889:15;30691:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;30691:224:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;18832:6:0;:14;;-1:-1:-1;;;;18832:14:0;;;-1:-1:-1;;;;30323:600:0:o;30931:111::-;30994:23;;:40;;:23;;;;-1:-1:-1;;;;;30994:23:0;;:40;;;;;;;;;;;;:23;:40;;;;;;;;;;;;;;;;;;;32038:819;32150:7;32146:40;;32172:14;:12;:14::i;:::-;-1:-1:-1;;;;;32203:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;32227:22:0;;;;;;:11;:22;;;;;;;;32226:23;32203:46;32199:597;;;32266:48;32288:6;32296:9;32307:6;32266:21;:48::i;:::-;32199:597;;;-1:-1:-1;;;;;32337:19:0;;;;;;:11;:19;;;;;;;;32336:20;:46;;;;-1:-1:-1;;;;;;32360:22:0;;;;;;:11;:22;;;;;;;;32336:46;32332:464;;;32399:46;32419:6;32427:9;32438:6;32399:19;:46::i;32332:464::-;-1:-1:-1;;;;;32468:19:0;;;;;;:11;:19;;;;;;;;32467:20;:47;;;;-1:-1:-1;;;;;;32492:22:0;;;;;;:11;:22;;;;;;;;32491:23;32467:47;32463:333;;;32531:44;32549:6;32557:9;32568:6;32531:17;:44::i;32463:333::-;-1:-1:-1;;;;;32597:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;32620:22:0;;;;;;:11;:22;;;;;;;;32597:45;32593:203;;;32659:48;32681:6;32689:9;32700:6;32659:21;:48::i;32593:203::-;32740:44;32758:6;32766:9;32777:6;32740:17;:44::i;:::-;32812:7;32808:41;;32834:15;:13;:15::i;:::-;32038:819;;;;:::o;37368:555::-;37465:7;;37501;;37418;;;;;37519:289;37543:9;:16;37539:20;;37519:289;;;37609:7;37585;:21;37593:9;37603:1;37593:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37593:12:0;37585:21;;;;;;;;;;;;;:31;;:66;;;37644:7;37620;:21;37628:9;37638:1;37628:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37628:12:0;37620:21;;;;;;;;;;;;;:31;37585:66;37581:97;;;37661:7;;37670;;37653:25;;;;;;;;;37581:97;37703:34;37715:7;:21;37723:9;37733:1;37723:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37723:12:0;37715:21;;;;;;;;;;;;;37703:7;;:11;:34::i;:::-;37693:44;;37762:34;37774:7;:21;37782:9;37792:1;37782:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37782:12:0;37774:21;;;;;;;;;;;;;37762:7;;:11;:34::i;:::-;37752:44;-1:-1:-1;37561:3:0;;37519:289;;;-1:-1:-1;37844:7:0;;37832;;:20;;:11;:20::i;:::-;37822:7;:30;37818:61;;;37862:7;;37871;;37854:25;;;;;;;;37818:61;37898:7;;-1:-1:-1;37907:7:0;-1:-1:-1;37368:555:0;;;:::o;6190:278::-;6276:7;6311:12;6304:5;6296:28;;;;-1:-1:-1;;;6296:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6335:9;6351:1;6347;:5;;;;;;;6190:278;-1:-1:-1;;;;;6190:278:0:o;36279:376::-;36377:7;;;;36430:28;36454:3;36430:19;:7;36442:6;36430:11;:19::i;:::-;:23;;:28::i;:::-;36415:43;-1:-1:-1;36469:18:0;36490:34;36520:3;36490:25;:7;36502:12;36490:11;:25::i;:34::-;36469:55;-1:-1:-1;36535:23:0;36561:33;36469:55;36561:17;:7;36573:4;36561:11;:17::i;:::-;:21;;:33::i;:::-;36535:59;36630:4;;-1:-1:-1;36636:10:0;;-1:-1:-1;36279:376:0;;-1:-1:-1;;;;;36279:376:0:o;36663:526::-;36778:7;;;;36834:24;:7;36846:11;36834;:24::i;:::-;36816:42;-1:-1:-1;36869:12:0;36884:21;:4;36893:11;36884:8;:21::i;:::-;36869:36;-1:-1:-1;37013:18:0;37034:27;:10;37049:11;37034:14;:27::i;:::-;37013:48;-1:-1:-1;37072:23:0;37098:33;37013:48;37098:17;:7;37110:4;37098:11;:17::i;:33::-;37150:7;;;;-1:-1:-1;37176:4:0;;-1:-1:-1;36663:526:0;;-1:-1:-1;;;;;;;36663:526:0:o;26743:234::-;26789:7;;;;;;;:12;:34;;;;-1:-1:-1;26805:13:0;;;;;;;:18;26789:34;26786:46;;;26825:7;;26786:46;26862:7;;;-1:-1:-1;;;;26844:25:0;;26862:7;;;;;;;;26844:25;;;;;;26880:37;;;26904:13;;;;;;;26880:37;;;-1:-1:-1;;26952:17:0;;;26743:234;:::o;33958:563::-;34061:15;34078:23;34103:12;34117:23;34142:12;34156:18;34178:19;34189:7;34178:10;:19::i;:::-;-1:-1:-1;;;;;34226:15:0;;;;;;:7;:15;;;;;;34060:137;;-1:-1:-1;34060:137:0;;-1:-1:-1;34060:137:0;;-1:-1:-1;34060:137:0;-1:-1:-1;34060:137:0;-1:-1:-1;34060:137:0;-1:-1:-1;34226:28:0;;34246:7;34226:19;:28::i;:::-;-1:-1:-1;;;;;34208:15:0;;;;;;:7;:15;;;;;;;;:46;;;;34283:7;:15;;;;:28;;34303:7;34283:19;:28::i;:::-;-1:-1:-1;;;;;34265:15:0;;;;;;;:7;:15;;;;;;:46;;;;34343:18;;;;;;;:39;;34366:15;34343:22;:39::i;:::-;-1:-1:-1;;;;;34322:18:0;;;;;;:7;:18;;;;;:60;34393:26;34408:10;34393:14;:26::i;:::-;34430:23;34442:4;34448;34430:11;:23::i;:::-;34486:9;-1:-1:-1;;;;;34469:44:0;34478:6;-1:-1:-1;;;;;34469:44:0;;34497:15;34469:44;;;;;;;;;;;;;;;;;;33958:563;;;;;;;;;:::o;33375:575::-;33476:15;33493:23;33518:12;33532:23;33557:12;33571:18;33593:19;33604:7;33593:10;:19::i;:::-;-1:-1:-1;;;;;33641:15:0;;;;;;:7;:15;;;;;;33475:137;;-1:-1:-1;33475:137:0;;-1:-1:-1;33475:137:0;;-1:-1:-1;33475:137:0;-1:-1:-1;33475:137:0;-1:-1:-1;33475:137:0;-1:-1:-1;33641:28:0;;33475:137;33641:19;:28::i;:::-;-1:-1:-1;;;;;33623:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;33701:18;;;;;:7;:18;;;;;:39;;33724:15;33701:22;:39::i;:::-;-1:-1:-1;;;;;33680:18:0;;;;;;:7;:18;;;;;;;;:60;;;;33772:7;:18;;;;:39;;33795:15;33772:22;:39::i;32865:502::-;32964:15;32981:23;33006:12;33020:23;33045:12;33059:18;33081:19;33092:7;33081:10;:19::i;:::-;-1:-1:-1;;;;;33129:15:0;;;;;;:7;:15;;;;;;32963:137;;-1:-1:-1;32963:137:0;;-1:-1:-1;32963:137:0;;-1:-1:-1;32963:137:0;-1:-1:-1;32963:137:0;-1:-1:-1;32963:137:0;-1:-1:-1;33129:28:0;;32963:137;33129:19;:28::i;34529:634::-;34632:15;34649:23;34674:12;34688:23;34713:12;34727:18;34749:19;34760:7;34749:10;:19::i;:::-;-1:-1:-1;;;;;34797:15:0;;;;;;:7;:15;;;;;;34631:137;;-1:-1:-1;34631:137:0;;-1:-1:-1;34631:137:0;;-1:-1:-1;34631:137:0;-1:-1:-1;34631:137:0;-1:-1:-1;34631:137:0;-1:-1:-1;34797:28:0;;34817:7;34797:19;:28::i;:::-;-1:-1:-1;;;;;34779:15:0;;;;;;:7;:15;;;;;;;;:46;;;;34854:7;:15;;;;:28;;34874:7;34854:19;:28::i;26985:125::-;27039:15;;;27065:37;27081:21;27039:15;;;;;;;27029:25;-1:-1:-1;;27029:25:0;;;;;;;27081:21;;;;;;27065:37;-1:-1:-1;;27065:37:0;;;;;;26985:125::o;4637:471::-;4695:7;4940:6;4936:47;;-1:-1:-1;4970:1:0;4963:8;;4936:47;5007:5;;;5011:1;5007;:5;:1;5031:5;;;;;:10;5023:56;;;;-1:-1:-1;;;5023:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35171:355;35234:19;35257:10;:8;:10::i;:::-;35234:33;-1:-1:-1;35278:18:0;35299:27;:10;35234:33;35299:14;:27::i;:::-;35378:4;35362:22;;;;:7;:22;;;;;;35278:48;;-1:-1:-1;35362:38:0;;35278:48;35362:26;:38::i;:::-;35353:4;35337:22;;;;:7;:22;;;;;;;;:63;;;;35414:11;:26;;;;;;35411:107;;;35496:4;35480:22;;;;:7;:22;;;;;;:38;;35507:10;35480:26;:38::i;:::-;35471:4;35455:22;;;;:7;:22;;;;;:63;35411:107;35171:355;;;:::o;35534:147::-;35612:7;;:17;;35624:4;35612:11;:17::i;:::-;35602:7;:27;35653:10;;:20;;35668:4;35653:14;:20::i;:::-;35640:10;:33;-1:-1:-1;;35534:147:0:o

Swarm Source

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