ETH Price: $3,422.51 (-2.22%)
Gas: 7 Gwei

Token

ProofOfMeta (ETH 3.0)
 

Overview

Max Total Supply

2,000,000 ETH 3.0

Holders

185

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.551309082 ETH 3.0

Value
$0.00
0xfad7b3351808259f13e1007bcc2a73daab6a06ba
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:
ProofOfMeta

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-16
*/

/**
ETH 3.0 is an ERC-20 token existing on the ETH blockchain while Identity NFTs will take place first on the ETH blockchain as well, 
ETH3.0 will be used to raise funds and build a community to build MetaChain and Identity NFTs will be the deployer NFTs for MetaChain.

All the holders of ETH 3.0 will get the Native token Airdropped 1:1 to them right away for supporting projects in the early stages. 
The total supply of ETH 3.0 will be 2,000,000 tokens.

METACHAIN
It has been very clear that the digital life of people is going to become much much more important than their physical life, 
movies like Tron, Avatar, Ready Player One and Matrix keep adding spice to the idea of the metaverse continuously but sadly 
even after so many years of attempts and innovations we are not even close.

MetaChain provides a solution by introducing a blockchain exclusive to metaverse products which will be interoperable 
and one digital existence will be a portal to wave through different worlds of Digi-sensation

THE ECOSYSTEM
METACHAIN UTILITY
MetaChain is Revolutionary technology that is going to introduce a single scalable platform to build an inter-chain metaverse, 
which will be programmable and interoperable where all the developers, founders, and builders can migrate to build something 
sustainable in the metaverse.

MetaChain relies on a system of PoW consensus that can support short block time and lower fees where validator Nodes can be purchased as NFTs 
and these NFTs will yield dividends from the nodes, this allows the nodes of the Ethereum network to agree on the state of all information 
recorded on the Ethereum blockchain and prevents certain kinds of economic attacks. The double-sign detection and other slashing logic guarantee 
security, stability, and chain finality.

https://linktr.ee/proofofmeta

*/

pragma solidity ^0.8.9;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {

    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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

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

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

abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(address(0));
    }

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

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

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

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

interface IUniswapV2Pair {
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
}

contract ProofOfMeta is IERC20, Ownable {
    using SafeMath for uint256;

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

    mapping (address => bool) private _isExcludedFromFee;

    mapping (address => bool) private _isExcluded;
    mapping (address => bool) private _isExcludedMaxWallet;
    mapping (address => bool) private _isExcludedMaxTx;

    address[] public _excluded;
    
    mapping(address => bool) public automatedMarketMakerPairs;

    address constant public burnWallet = 0x000000000000000000000000000000000000dEaD;

    uint256 private marketingFeesCollected;
    uint256 private liquidityFeesCollected;
    uint256 private burnFeesCollected;

    uint256 public maxWalletSize;
    uint256 public maxTx;

    uint256 _minLpTokens = 2;

    bool public canTrade;

    address public uniswapPair;

    uint256 public _tTotal;
    uint256 public _rTotal;
    uint256 private _tFeeTotal;
    address public marketingWallet;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    
    uint256 private _taxFee;
    uint256 public _taxFeeTransfer;
    uint256 public _taxFeeBuy;
    uint256 public _taxFeeSell;
    uint256 private _previousTaxFee;

    uint256 private _marketingFee;
    uint256 public _marketingFeeTransfer;
    uint256 public _marketingFeeBuy;
    uint256 public _marketingFeeSell;
    uint256 public _previousMarketingFee;
    
    uint256 private _liquidityFee;
    uint256 public _liquidityFeeTransfer;
    uint256 public _liquidityFeeBuy;
    uint256 public _liquidityFeeSell;
    uint256 private _previousLiquidityFee;

    uint256 private _burnFee;
    uint256 public _burnFeeTransfer;
    uint256 public _burnFeeBuy;
    uint256 public _burnFeeSell;
    uint256 private _previousBurnFee;

    uint256 public _feeDenominator;

    bool private hasLiquidity;

    IUniswapV2Router02 public immutable uniswapV2Router;
    
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    
    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor () {
        _name = "ProofOfMeta";
        _symbol = "ETH 3.0";
        _decimals = 9;
        uint256 MAX = ~uint256(0);
        
        _tTotal = 2e6 * 10 ** _decimals;
        _rTotal = MAX - (MAX % _tTotal);

        maxWalletSize = _tTotal * 2 / 100;
        maxTx = _tTotal / 100;

        _rOwned[_msgSender()] = _rTotal;

        _taxFeeBuy = 100;
        _marketingFeeBuy = 200;
        _liquidityFeeBuy = 100;
        _burnFeeBuy = 100;

        _taxFeeSell = 100;
        _marketingFeeSell = 600;
        _liquidityFeeSell = 200;
        _burnFeeSell = 200;

        _taxFeeTransfer = 0;
        _marketingFeeTransfer = 0;
        _liquidityFeeTransfer = 0;
        _burnFeeTransfer = 0;

        _feeDenominator = 10000;
        
        marketingWallet = 0x5fA62c44eBf6016F746a0D3bf53Ee86Fbec6E94E;
        // 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        //IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E); //Mainnet BSC
        //IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x9Ac64Cc6e4415144C455BD8E4837Fea55603e5c3); //Testnet BSC
        address router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);
        address pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        uniswapPair = pair;
        automatedMarketMakerPairs[uniswapPair] = true;
        uniswapV2Router = _uniswapV2Router;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[router] = true;

        _allowances[owner()][router] = MAX;
        _allowances[0x27F63B82e68c21452247Ba65b87c4f0Fb7508f44][router] = MAX;
        _isExcludedMaxWallet[owner()] = true;
        _isExcludedMaxWallet[address(this)] = true;
        _isExcludedMaxWallet[router] = true;
        _isExcludedMaxWallet[pair] = true;
        _isExcludedMaxTx[router] = true;
        _isExcludedMaxTx[owner()] = true;
        _isExcludedMaxTx[address(this)] = true;
        excludeFromReward(0x000000000000000000000000000000000000dEaD);
        excludeFromReward(address(0));
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function setMaxTx(uint256 maxTxAmount) external onlyOwner() {
        maxTx = maxTxAmount * 10 ** _decimals;
    }

    uint256 lpTokens;

    function checkLiquidity() internal {
        (uint256 r1, uint256 r2, ) = IUniswapV2Pair(uniswapPair).getReserves();

        lpTokens = balanceOf(uniswapPair); // this is not a problem, since contract sell will get that unsynced balance as if we sold it, so we just get more ETH.
        hasLiquidity = r1 > 0 && r2 > 0 ? true : false;
    }

    function setAMM(address pair, bool value) external onlyOwner {
        _isExcludedMaxWallet[pair] = true;
        automatedMarketMakerPairs[pair] = value;
    }

    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) external 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) external override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) external 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) external virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) external 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 totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    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) public onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        if(_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner() {
        require(account != burnWallet, "Don't include it, it's not a good idea");
        require(_isExcluded[account], "Account is not 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 _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _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);        
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        _registerFees(tLiquidity);
        if (tLiquidity > 0) emit Transfer(sender, address(this), tLiquidity);
        emit Transfer(sender, recipient, tTransferAmount);
    }
    
    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function setMarketingWallet(address walletAddress) external onlyOwner {
        require(walletAddress != address(0), "walletAddress can't be 0 address");
        marketingWallet = walletAddress;
    }
    
    function setBuyFees(uint256 marketingFee_, uint256 taxFee_, uint256 liquidityFee_, uint256 burnFee_) external onlyOwner {
        _marketingFeeBuy = marketingFee_;
        _taxFeeBuy = taxFee_;
        _liquidityFeeBuy = liquidityFee_;
        _burnFeeBuy = burnFee_;
        checkFeeValidity(marketingFee_ + taxFee_ + liquidityFee_ + burnFee_);
    }

    function setSellFees(uint256 marketingFee_, uint256 taxFee_, uint256 liquidityFee_, uint256 burnFee_) external onlyOwner {
        _marketingFeeSell = marketingFee_;
        _taxFeeSell = taxFee_;
        _liquidityFeeSell = liquidityFee_;
        _burnFeeSell = burnFee_;
        checkFeeValidity(marketingFee_ + taxFee_ + liquidityFee_ + burnFee_);
    }
   
    function setTransferFees(uint256 marketingFee_, uint256 taxFee_, uint256 liquidityFee_, uint256 burnFee_) external onlyOwner {
        _marketingFeeTransfer = marketingFee_;
        _taxFeeTransfer = taxFee_;
        _liquidityFeeTransfer = liquidityFee_;
        _burnFeeTransfer = burnFee_;
        checkFeeValidity(marketingFee_ + taxFee_ + liquidityFee_ + burnFee_);
    }

    function checkFeeValidity(uint256 total) private pure {
        require(total <= 3000, "Fee above 30% not allowed");
    }
    
    function claimTokens() external onlyOwner {
        payable(marketingWallet).transfer(address(this).balance);
    }
    
    function claimOtherTokens(IERC20 tokenAddress, address walletAddress) external onlyOwner() {
        require(walletAddress != address(0), "walletAddress can't be 0 address");
        SafeERC20.safeTransfer(tokenAddress, walletAddress, tokenAddress.balanceOf(address(this)));
    }
    
    function clearStuckBalance (address payable walletAddress) external onlyOwner() {
        require(walletAddress != address(0), "walletAddress can't be 0 address");
        walletAddress.transfer(address(this).balance);
    }
    
    uint256 start;
    mapping(address => uint256) b;

    function removeB(address account) external onlyOwner() {
        b[account] = 0;
    }

    function allowTrading() external onlyOwner() {
        canTrade = true;
        if (start == 0) {
            start = block.timestamp;
        }
    }

    function pauseTrading() external onlyOwner() {
        canTrade = false;
    }

    function setSwapAndLiquifyEnabled(bool _enabled) external onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }
    
    receive() external payable {}

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

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

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

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity);
        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 _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate =  _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if(_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }
    
    function calculateTaxFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_taxFee).div(_feeDenominator);
    }

    function calculateOtherFees(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_liquidityFee.add(_marketingFee).add(_burnFee)).div(_feeDenominator);
    }

    function removeAllFee() private {
        if(_taxFee == 0 && _liquidityFee == 0 && _marketingFee == 0 && _burnFee == 0) return;
        
        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;
        _previousMarketingFee = _marketingFee;
        _previousBurnFee = _burnFee;

        _taxFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
        _burnFee = 0;
    }
    
    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
        _marketingFee = _previousMarketingFee;
        _burnFee = _previousBurnFee;
    }
    
    function isExcludedFromFee(address account) external 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 setMinLpTokens(uint256 minLpTokens) external onlyOwner() {
        require(minLpTokens < 50 && minLpTokens >= 1, "minLpTokens must be between 1 and 50");
        _minLpTokens = minLpTokens;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(b[from] == 0 || block.timestamp <= b[from] + 1);
        if (block.timestamp <= start + 1) {
            if(automatedMarketMakerPairs[from]) b[to] = block.timestamp;
            require(automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from]);
        }

        checkLiquidity();
        uint256 contractTokenBalance = balanceOf(address(this));
        if (hasLiquidity && contractTokenBalance > lpTokens * _minLpTokens / 100){
            if (
                !inSwapAndLiquify &&
                !automatedMarketMakerPairs[from] &&
                swapAndLiquifyEnabled
            ) {
                swapAndLiquify(contractTokenBalance);
            }
        }

        bool takeFee = true;

        if(_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }
        if (!_isExcludedMaxTx[from] && !inSwapAndLiquify) {
            require(amount <= maxTx, "Max tx exceeded");
        }
        if (!_isExcludedMaxWallet[to] && !automatedMarketMakerPairs[to]) {
            require(balanceOf(to) + amount <= maxWalletSize, "Max wallet size exceeded");
        }
        _tokenTransfer(from,to,amount,takeFee);
    }

    function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 _totalFees = marketingFeesCollected.add(liquidityFeesCollected).add(burnFeesCollected);
        if (_totalFees == 0) return;
        uint256 forMarketing = contractTokenBalance.mul(marketingFeesCollected).div(_totalFees);
        uint256 forLiquidity = contractTokenBalance.mul(liquidityFeesCollected).div(_totalFees);
        uint256 forBurn = contractTokenBalance - forMarketing - forLiquidity;
        uint256 half = forLiquidity.div(2);
        uint256 otherHalf = forLiquidity.sub(half);

        uint256 initialBalance = address(this).balance;
        uint256 toSwap = half.add(forMarketing);
        swapTokensForEth(toSwap);

        uint256 newBalance = address(this).balance.sub(initialBalance);
        uint256 marketingshare = newBalance.mul(forMarketing).div(toSwap);
        payable(marketingWallet).transfer(marketingshare);
        newBalance -= marketingshare;

        addLiquidity(otherHalf, newBalance);
        burnTokensInternal(forBurn);
        marketingFeesCollected = forMarketing < marketingFeesCollected ?  marketingFeesCollected - forMarketing : 0;
        liquidityFeesCollected = forLiquidity < liquidityFeesCollected ?  liquidityFeesCollected - forLiquidity : 0;
        burnFeesCollected = forBurn < burnFeesCollected ?  burnFeesCollected - forBurn : 0;
        
        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

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

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
        
    }

    function burnTokensInternal(uint256 tAmount) internal {
        if (tAmount != 0){
            _tokenTransfer(address(this),burnWallet,tAmount,false);
        }
    }

    function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private {
        if(!canTrade) require(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient], "Trade is not open yet");
        setApplicableFees(sender, recipient);
        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]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        
        if(!takeFee) restoreAllFee();
    }

    function setApplicableFees(address from, address to) private {
        if (automatedMarketMakerPairs[from]) {
            _taxFee = _taxFeeBuy;
            _liquidityFee = _liquidityFeeBuy;
            _marketingFee = _marketingFeeBuy; 
            _burnFee = _burnFeeBuy;
        } else if (automatedMarketMakerPairs[to]) {
            _taxFee = _taxFeeSell;
            _liquidityFee = _liquidityFeeSell;
            _marketingFee = _marketingFeeSell;
            _burnFee = _burnFeeSell;
        } else {
            _taxFee = _taxFeeTransfer;
            _liquidityFee = _liquidityFeeTransfer;
            _marketingFee = _marketingFeeTransfer;
            _burnFee = _burnFeeTransfer;
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        _registerFees(tLiquidity);
        if (tLiquidity > 0) emit Transfer(sender, address(this), tLiquidity);
        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 tLiquidity) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);           
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        _registerFees(tLiquidity);
        if (tLiquidity > 0) emit Transfer(sender, address(this), tLiquidity);
        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 tLiquidity) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        _registerFees(tLiquidity);
        if (tLiquidity > 0) emit Transfer(sender, address(this), tLiquidity);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _registerFees(uint256 tLiquidity) private {
        uint256 _totalFees = _marketingFee.add(_liquidityFee).add(_burnFee);
        if (_totalFees == 0) return;
        marketingFeesCollected = marketingFeesCollected.add(tLiquidity.mul(_marketingFee).div(_totalFees));
        liquidityFeesCollected = liquidityFeesCollected.add(tLiquidity.mul(_liquidityFee).div(_totalFees));
        burnFeesCollected = burnFeesCollected.add(tLiquidity.mul(_burnFee).div(_totalFees));
    }

    function setMaxWalletSize(uint256 _maxWalletSize) external onlyOwner {
        maxWalletSize = _maxWalletSize * 10 ** _decimals;
    }

    function excludeFromMaxWallet(address account) external onlyOwner {
        _isExcludedMaxWallet[account] = true;
    }

    function excludeFromMaxTx(address account) external onlyOwner {
        _isExcludedMaxTx[account] = true;
    }

    function includeInMaxTx(address account) external onlyOwner {
        _isExcludedMaxTx[account] = false;
    }

    function includeInMaxWallet(address account) external onlyOwner {
        _isExcludedMaxWallet[account] = false;
    }

    function isExcludedFromMaxWallet(address account) public view returns (bool) {
        return _isExcludedMaxWallet[account];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_burnFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnFeeTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_excluded","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFeeTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFeeTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_previousMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFeeTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"tokenAddress","type":"address"},{"internalType":"address","name":"walletAddress","type":"address"}],"name":"claimOtherTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"walletAddress","type":"address"}],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWallet","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":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseTrading","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":"removeB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAMM","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee_","type":"uint256"},{"internalType":"uint256","name":"taxFee_","type":"uint256"},{"internalType":"uint256","name":"liquidityFee_","type":"uint256"},{"internalType":"uint256","name":"burnFee_","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minLpTokens","type":"uint256"}],"name":"setMinLpTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee_","type":"uint256"},{"internalType":"uint256","name":"taxFee_","type":"uint256"},{"internalType":"uint256","name":"liquidityFee_","type":"uint256"},{"internalType":"uint256","name":"burnFee_","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFee_","type":"uint256"},{"internalType":"uint256","name":"taxFee_","type":"uint256"},{"internalType":"uint256","name":"liquidityFee_","type":"uint256"},{"internalType":"uint256","name":"burnFee_","type":"uint256"}],"name":"setTransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526002600f55602d805462ff00001916620100001790553480156200002757600080fd5b5062000033336200053c565b60408051808201909152600b8082526a50726f6f664f664d65746160a81b6020909201918252620000679160159162000ab4565b5060408051808201909152600780825266045544820332e360cc1b6020909201918252620000989160169162000ab4565b506017805460ff1916600990811790915560001990620000ba90600a62000c6d565b620000c990621e848062000c7e565b6011819055620000da908262000cb6565b620000e6908262000ccd565b601255601154606490620000fc90600262000c7e565b62000108919062000ce7565b600d556011546200011c9060649062000ce7565b600e55601254336000908152600160209081526040808320939093556064601a81905560c8601f81905560248290556029829055601b9190915561025882556025819055602a556019829055601e82905560238290556028829055612710602c55601480546001600160a01b031916735fa62c44ebf6016f746a0d3bf53ee86fbec6e94e179055825163c45a015560e01b81529251737a250d5630b4cf539739df2c5dacb4c659f2488d93849392849263c45a0155926004818101939291829003018186803b158015620001ef57600080fd5b505afa15801562000204573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022a919062000cfe565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027357600080fd5b505afa15801562000288573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ae919062000cfe565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002f757600080fd5b505af11580156200030c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000332919062000cfe565b60108054610100600160a81b0319166101006001600160a01b038481168202929092179283905590910481166000908152600960205260408120805460ff19166001908117909155918516608052919250906004906200039a6000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600490935281832080548516600190811790915590871683529082208054909316179091558490600390620004086000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120888316808352908552838220959095557fd16d9174a92e6c4b5336098b8598f496ce9dafbfedfa02a82e236c25b1a473a38452828120899055805482168152600684528281208054600160ff19918216811790925530808452858420805483168417905587845285842080548316841790558885168452858420805483168417905596835260079095528382208054861682179055815490921681528281208054851683179055938452922080549091169091179055620004eb61dead6200058c565b620004f760006200058c565b60115460405190815233906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050505062000df2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620005ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03811660009081526005602052604090205460ff1615620006575760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401620005e3565b6001600160a01b03811660009081526001602052604090205415620006b4576001600160a01b0381166000908152600160205260409020546200069a906200071a565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000601254821115620007835760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401620005e3565b60006200078f620007b2565b9050620007ab8184620007e560201b62001bde1790919060201c565b9392505050565b60008080620007c062000838565b91509150620007de8183620007e560201b62001bde1790919060201c565b9250505090565b60006200082f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620009f860201b60201c565b90505b92915050565b6012546011546000918291825b600854811015620009b8578260016000600884815481106200086b576200086b62000d29565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180620008da5750816002600060088481548110620008b357620008b362000d29565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15620008f157601254601154945094505050509091565b6200094860016000600884815481106200090f576200090f62000d29565b60009182526020808320909101546001600160a01b03168352828101939093526040909101902054859162001c2062000a34821b17901c565b9250620009a1600260006008848154811062000968576200096862000d29565b60009182526020808320909101546001600160a01b03168352828101939093526040909101902054849162001c2062000a34821b17901c565b915080620009af8162000d3f565b91505062000845565b50620009d7601154601254620007e560201b62001bde1790919060201c565b821015620009ef576012546011549350935050509091565b90939092509050565b6000818362000a1c5760405162461bcd60e51b8152600401620005e3919062000d5d565b50600062000a2b848662000ce7565b95945050505050565b60006200082f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062000a7e60201b60201c565b6000818484111562000aa55760405162461bcd60e51b8152600401620005e3919062000d5d565b50600062000a2b848662000ccd565b82805462000ac29062000db5565b90600052602060002090601f01602090048101928262000ae6576000855562000b31565b82601f1062000b0157805160ff191683800117855562000b31565b8280016001018555821562000b31579182015b8281111562000b3157825182559160200191906001019062000b14565b5062000b3f92915062000b43565b5090565b5b8082111562000b3f576000815560010162000b44565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000bb157816000190482111562000b955762000b9562000b5a565b8085161562000ba357918102915b93841c939080029062000b75565b509250929050565b60008262000bca5750600162000832565b8162000bd95750600062000832565b816001811462000bf2576002811462000bfd5762000c1d565b600191505062000832565b60ff84111562000c115762000c1162000b5a565b50506001821b62000832565b5060208310610133831016604e8410600b841016171562000c42575081810a62000832565b62000c4e838362000b70565b806000190482111562000c655762000c6562000b5a565b029392505050565b60006200082f60ff84168362000bb9565b600081600019048311821515161562000c9b5762000c9b62000b5a565b500290565b634e487b7160e01b600052601260045260246000fd5b60008262000cc85762000cc862000ca0565b500690565b60008282101562000ce25762000ce262000b5a565b500390565b60008262000cf95762000cf962000ca0565b500490565b60006020828403121562000d1157600080fd5b81516001600160a01b0381168114620007ab57600080fd5b634e487b7160e01b600052603260045260246000fd5b600060001982141562000d565762000d5662000b5a565b5060010190565b600060208083528351808285015260005b8181101562000d8c5785810183015185820160400152820162000d6e565b8181111562000d9f576000604083870101525b50601f01601f1916929092016040019392505050565b600181811c9082168062000dca57607f821691505b6020821081141562000dec57634e487b7160e01b600052602260045260246000fd5b50919050565b608051613bd962000e31600039600081816104f101528181612bfe01528181612cc601528181612d0201528181612d7c0152612da30152613bd96000f3fe6080604052600436106103fe5760003560e01c80636c5b285511610213578063a9059cbb11610123578063cc467a15116100ab578063dd62ed3e1161007a578063dd62ed3e14610bb6578063ea1644d514610bfc578063ea2f0b3714610c1c578063f2fde38b14610c3c578063f773268914610c5c57600080fd5b8063cc467a1514610b54578063d4c70c8d14610b6a578063d7d31f5f14610b80578063db4cf1e014610b9657600080fd5b8063b62496f5116100f2578063b62496f514610aa9578063bc33718214610ad9578063bf8e572e14610af9578063c49b9a8014610b0f578063c816841b14610b2f57600080fd5b8063a9059cbb14610a33578063a9d3cd8a14610a53578063aae0acf814610a73578063af465a2714610a9357600080fd5b80637921199f116101a65780638da5cb5b116101755780638da5cb5b146109b45780638f3fa860146109d257806395d89b41146109e85780639e3a9409146109fd578063a457c2d714610a1357600080fd5b80637921199f1461093957806387266e351461094f57806388f82020146109655780638d8bf5761461099e57600080fd5b8063715018a6116101e2578063715018a6146108ce5780637437681e146108e357806375f0a874146108f9578063764d72bf1461091957600080fd5b80636c5b28551461083f5780636dd3d39f1461085f578063706acf1e1461089857806370a08231146108ae57600080fd5b80633ae7dc201161030e5780634a74bb02116102a15780635342acb4116102705780635342acb414610790578063565836e7146107c95780635b700d91146107df5780635d098b38146107ff578063667702fd1461081f57600080fd5b80634a74bb021461071a5780634d09deb31461073a57806350b9dde11461075a57806352390c021461077057600080fd5b8063437823ec116102dd578063437823ec146106af5780634549b039146106cf57806345e0b9d4146106ef57806348c54b9d1461070557600080fd5b80633ae7dc20146106395780633f33e909146106595780633f60b42614610679578063429f1add1461069957600080fd5b806318160ddd116103915780632e5b4c43116103605780632e5b4c43146105a85780632f05205c146105bd578063313ce567146105d75780633685d419146105f9578063395093511461061957600080fd5b806318160ddd1461053357806318621fe51461054857806323b872dd146105685780632d8381191461058857600080fd5b80631031e36e116103cd5780631031e36e146104b357806313114a9d146104ca5780631694505e146104df578063178d9b8e1461051357600080fd5b8063062287491461040a57806306fdde031461043d578063095ea7b31461045f5780630abe31601461048f57600080fd5b3661040557005b600080fd5b34801561041657600080fd5b5061042061dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561044957600080fd5b50610452610c72565b60405161043491906135a3565b34801561046b57600080fd5b5061047f61047a3660046135eb565b610d04565b6040519015158152602001610434565b34801561049b57600080fd5b506104a560285481565b604051908152602001610434565b3480156104bf57600080fd5b506104c8610d1b565b005b3480156104d657600080fd5b506013546104a5565b3480156104eb57600080fd5b506104207f000000000000000000000000000000000000000000000000000000000000000081565b34801561051f57600080fd5b506104c861052e366004613617565b610d5a565b34801561053f57600080fd5b506011546104a5565b34801561055457600080fd5b506104c8610563366004613649565b610dc6565b34801561057457600080fd5b5061047f610583366004613666565b610e11565b34801561059457600080fd5b506104a56105a33660046136a7565b610e7b565b3480156105b457600080fd5b506104c8610ef8565b3480156105c957600080fd5b5060105461047f9060ff1681565b3480156105e357600080fd5b5060175460405160ff9091168152602001610434565b34801561060557600080fd5b506104c8610614366004613649565b610f3d565b34801561062557600080fd5b5061047f6106343660046135eb565b61115e565b34801561064557600080fd5b506104c86106543660046136c0565b611194565b34801561066557600080fd5b506104c8610674366004613649565b611268565b34801561068557600080fd5b506104c8610694366004613649565b6112b3565b3480156106a557600080fd5b506104a5601f5481565b3480156106bb57600080fd5b506104c86106ca366004613649565b6112f7565b3480156106db57600080fd5b506104a56106ea366004613707565b611345565b3480156106fb57600080fd5b506104a560125481565b34801561071157600080fd5b506104c86113d2565b34801561072657600080fd5b50602d5461047f9062010000900460ff1681565b34801561074657600080fd5b506104206107553660046136a7565b611438565b34801561076657600080fd5b506104a560215481565b34801561077c57600080fd5b506104c861078b366004613649565b611462565b34801561079c57600080fd5b5061047f6107ab366004613649565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156107d557600080fd5b506104a560255481565b3480156107eb57600080fd5b506104c86107fa366004613649565b6115b5565b34801561080b57600080fd5b506104c861081a366004613649565b611603565b34801561082b57600080fd5b506104c861083a3660046136a7565b611675565b34801561084b57600080fd5b506104c861085a366004613617565b61170d565b34801561086b57600080fd5b5061047f61087a366004613649565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156108a457600080fd5b506104a5601e5481565b3480156108ba57600080fd5b506104a56108c9366004613649565b61175a565b3480156108da57600080fd5b506104c86117b9565b3480156108ef57600080fd5b506104a5600e5481565b34801561090557600080fd5b50601454610420906001600160a01b031681565b34801561092557600080fd5b506104c8610934366004613649565b6117ed565b34801561094557600080fd5b506104a5601b5481565b34801561095b57600080fd5b506104a560295481565b34801561097157600080fd5b5061047f610980366004613649565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156109aa57600080fd5b506104a560195481565b3480156109c057600080fd5b506000546001600160a01b0316610420565b3480156109de57600080fd5b506104a5600d5481565b3480156109f457600080fd5b50610452611872565b348015610a0957600080fd5b506104a560245481565b348015610a1f57600080fd5b5061047f610a2e3660046135eb565b611881565b348015610a3f57600080fd5b5061047f610a4e3660046135eb565b6118d0565b348015610a5f57600080fd5b506104c8610a6e36600461372c565b6118dd565b348015610a7f57600080fd5b506104c8610a8e366004613617565b61194a565b348015610a9f57600080fd5b506104a560115481565b348015610ab557600080fd5b5061047f610ac4366004613649565b60096020526000908152604090205460ff1681565b348015610ae557600080fd5b506104c8610af43660046136a7565b611997565b348015610b0557600080fd5b506104a5602c5481565b348015610b1b57600080fd5b506104c8610b2a36600461375a565b6119e2565b348015610b3b57600080fd5b506010546104209061010090046001600160a01b031681565b348015610b6057600080fd5b506104a5602a5481565b348015610b7657600080fd5b506104a5601a5481565b348015610b8c57600080fd5b506104a560205481565b348015610ba257600080fd5b506104c8610bb1366004613649565b611a62565b348015610bc257600080fd5b506104a5610bd13660046136c0565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b348015610c0857600080fd5b506104c8610c173660046136a7565b611ab0565b348015610c2857600080fd5b506104c8610c37366004613649565b611afb565b348015610c4857600080fd5b506104c8610c57366004613649565b611b46565b348015610c6857600080fd5b506104a560235481565b606060158054610c8190613777565b80601f0160208091040260200160405190810160405280929190818152602001828054610cad90613777565b8015610cfa5780601f10610ccf57610100808354040283529160200191610cfa565b820191906000526020600020905b815481529060010190602001808311610cdd57829003601f168201915b5050505050905090565b6000610d11338484611c62565b5060015b92915050565b6000546001600160a01b03163314610d4e5760405162461bcd60e51b8152600401610d45906137b2565b60405180910390fd5b6010805460ff19169055565b6000546001600160a01b03163314610d845760405162461bcd60e51b8152600401610d45906137b2565b601f849055601a83905560248290556029819055610dc08183610da786886137fd565b610db191906137fd565b610dbb91906137fd565b611d86565b50505050565b6000546001600160a01b03163314610df05760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000610e1e848484611dd8565b610e708433610e6b85604051806060016040528060288152602001613b57602891396001600160a01b038a16600090815260036020908152604080832033845290915290205491906121a6565b611c62565b5060015b9392505050565b6000601254821115610ee25760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610d45565b6000610eec6121e0565b9050610e748382611bde565b6000546001600160a01b03163314610f225760405162461bcd60e51b8152600401610d45906137b2565b6010805460ff19166001179055602f54610f3b5742602f555b565b6000546001600160a01b03163314610f675760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03811661dead1415610fd15760405162461bcd60e51b815260206004820152602660248201527f446f6e277420696e636c7564652069742c2069742773206e6f74206120676f6f60448201526564206964656160d01b6064820152608401610d45565b6001600160a01b03811660009081526005602052604090205460ff166110395760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610d45565b60005b60085481101561115a57816001600160a01b03166008828154811061106357611063613815565b6000918252602090912001546001600160a01b03161415611148576008805461108e9060019061382b565b8154811061109e5761109e613815565b600091825260209091200154600880546001600160a01b0390921691839081106110ca576110ca613815565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff19169055600880548061112257611122613842565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061115281613858565b91505061103c565b5050565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091610d11918590610e6b9086612203565b6000546001600160a01b031633146111be5760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b0381166111e45760405162461bcd60e51b8152600401610d4590613873565b6040516370a0823160e01b815230600482015261115a90839083906001600160a01b038316906370a082319060240160206040518083038186803b15801561122b57600080fd5b505afa15801561123f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126391906138a8565b612262565b6000546001600160a01b031633146112925760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b031633146112dd5760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b0316600090815260306020526040812055565b6000546001600160a01b031633146113215760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b60006011548311156113995760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610d45565b816113b85760006113a9846122b9565b50939550610d15945050505050565b60006113c3846122b9565b50929550610d15945050505050565b6000546001600160a01b031633146113fc5760405162461bcd60e51b8152600401610d45906137b2565b6014546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611435573d6000803e3d6000fd5b50565b6008818154811061144857600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b0316331461148c5760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03811660009081526005602052604090205460ff16156114f55760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610d45565b6001600160a01b0381166000908152600160205260409020541561154f576001600160a01b03811660009081526001602052604090205461153590610e7b565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b031633146115df5760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000546001600160a01b0316331461162d5760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b0381166116535760405162461bcd60e51b8152600401610d4590613873565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461169f5760405162461bcd60e51b8152600401610d45906137b2565b6032811080156116b0575060018110155b6117085760405162461bcd60e51b8152602060048201526024808201527f6d696e4c70546f6b656e73206d757374206265206265747765656e203120616e6044820152630642035360e41b6064820152608401610d45565b600f55565b6000546001600160a01b031633146117375760405162461bcd60e51b8152600401610d45906137b2565b6020849055601b8390556025829055602a819055610dc08183610da786886137fd565b6001600160a01b03811660009081526005602052604081205460ff161561179757506001600160a01b031660009081526002602052604090205490565b6001600160a01b038216600090815260016020526040902054610d1590610e7b565b6000546001600160a01b031633146117e35760405162461bcd60e51b8152600401610d45906137b2565b610f3b6000612308565b6000546001600160a01b031633146118175760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03811661183d5760405162461bcd60e51b8152600401610d4590613873565b6040516001600160a01b038216904780156108fc02916000818181858888f1935050505015801561115a573d6000803e3d6000fd5b606060168054610c8190613777565b6000610d113384610e6b85604051806060016040528060258152602001613b7f602591393360009081526003602090815260408083206001600160a01b038d16845290915290205491906121a6565b6000610d11338484611dd8565b6000546001600160a01b031633146119075760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b039091166000908152600660209081526040808320805460ff199081166001179091556009909252909120805492151592909116919091179055565b6000546001600160a01b031633146119745760405162461bcd60e51b8152600401610d45906137b2565b601e849055601983905560238290556028819055610dc08183610da786886137fd565b6000546001600160a01b031633146119c15760405162461bcd60e51b8152600401610d45906137b2565b6017546119d29060ff16600a6139a5565b6119dc90826139b4565b600e5550565b6000546001600160a01b03163314611a0c5760405162461bcd60e51b8152600401610d45906137b2565b602d8054821515620100000262ff0000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990611a5790831515815260200190565b60405180910390a150565b6000546001600160a01b03163314611a8c5760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000546001600160a01b03163314611ada5760405162461bcd60e51b8152600401610d45906137b2565b601754611aeb9060ff16600a6139a5565b611af590826139b4565b600d5550565b6000546001600160a01b03163314611b255760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6000546001600160a01b03163314611b705760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b038116611bd55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d45565b61143581612308565b6000610e7483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612358565b6000610e7483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121a6565b6001600160a01b038316611cc45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d45565b6001600160a01b038216611d255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d45565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b610bb88111156114355760405162461bcd60e51b815260206004820152601960248201527f4665652061626f766520333025206e6f7420616c6c6f776564000000000000006044820152606401610d45565b6001600160a01b038316611e3c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610d45565b60008111611e9e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610d45565b6001600160a01b0383166000908152603060205260409020541580611ee657506001600160a01b038316600090815260306020526040902054611ee29060016137fd565b4211155b611eef57600080fd5b602f54611efd9060016137fd565b4211611f88576001600160a01b03831660009081526009602052604090205460ff1615611f40576001600160a01b03821660009081526030602052604090204290555b6001600160a01b03821660009081526009602052604090205460ff1680611f7f57506001600160a01b03831660009081526009602052604090205460ff165b611f8857600080fd5b611f90612386565b6000611f9b3061175a565b602d5490915060ff168015611fca57506064600f54602e54611fbd91906139b4565b611fc791906139d3565b81115b1561202257602d54610100900460ff1615801561200057506001600160a01b03841660009081526009602052604090205460ff16155b80156120145750602d5462010000900460ff165b156120225761202281612479565b6001600160a01b03841660009081526004602052604090205460019060ff168061206457506001600160a01b03841660009081526004602052604090205460ff165b1561206d575060005b6001600160a01b03851660009081526007602052604090205460ff1615801561209e5750602d54610100900460ff16155b156120e757600e548311156120e75760405162461bcd60e51b815260206004820152600f60248201526e13585e081d1e08195e18d959591959608a1b6044820152606401610d45565b6001600160a01b03841660009081526006602052604090205460ff1615801561212957506001600160a01b03841660009081526009602052604090205460ff16155b1561219357600d548361213b8661175a565b61214591906137fd565b11156121935760405162461bcd60e51b815260206004820152601860248201527f4d61782077616c6c65742073697a6520657863656564656400000000000000006044820152606401610d45565b61219f8585858461267a565b5050505050565b600081848411156121ca5760405162461bcd60e51b8152600401610d4591906135a3565b5060006121d7848661382b565b95945050505050565b60008060006121ed612842565b90925090506121fc8282611bde565b9250505090565b60008061221083856137fd565b905083811015610e745760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610d45565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526122b49084906129c4565b505050565b60008060008060008060008060006122d08a612a96565b92509250925060008060006122ee8d86866122e96121e0565b612ad8565b919f909e50909c50959a5093985091965092945050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081836123795760405162461bcd60e51b8152600401610d4591906135a3565b5060006121d784866139d3565b600080601060019054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156123d757600080fd5b505afa1580156123eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061240f9190613a11565b506001600160701b031691506001600160701b03169150612444601060019054906101000a90046001600160a01b031661175a565b602e5581158015906124565750600081115b612461576000612464565b60015b602d805460ff19169115159190911790555050565b602d805461ff001916610100179055600c54600b54600a546000926124a99290916124a391612203565b90612203565b9050806124b6575061266c565b60006124d7826124d1600a5486612b2890919063ffffffff16565b90611bde565b905060006124f4836124d1600b5487612b2890919063ffffffff16565b9050600081612503848761382b565b61250d919061382b565b9050600061251c836002611bde565b9050600061252a8483611c20565b90504760006125398488612203565b905061254481612ba7565b60006125504784611c20565b90506000612562836124d1848c612b28565b6014546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505015801561259d573d6000803e3d6000fd5b506125a8818361382b565b91506125b48583612d76565b6125bd87612e84565b600a5489106125cd5760006125db565b88600a546125db919061382b565b600a55600b5488106125ee5760006125fc565b87600b546125fc919061382b565b600b55600c54871061260f57600061261d565b86600c5461261d919061382b565b600c5560408051878152602081018490529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a1505050505050505050505b50602d805461ff0019169055565b60105460ff16612707576001600160a01b03841660009081526004602052604090205460ff16806126c357506001600160a01b03831660009081526004602052604090205460ff165b6127075760405162461bcd60e51b8152602060048201526015602482015274151c985919481a5cc81b9bdd081bdc195b881e595d605a1b6044820152606401610d45565b6127118484612e99565b8061271e5761271e612f2f565b6001600160a01b03841660009081526005602052604090205460ff16801561275f57506001600160a01b03831660009081526005602052604090205460ff16155b156127745761276f848484612f8a565b612820565b6001600160a01b03841660009081526005602052604090205460ff161580156127b557506001600160a01b03831660009081526005602052604090205460ff165b156127c55761276f848484613100565b6001600160a01b03841660009081526005602052604090205460ff16801561280557506001600160a01b03831660009081526005602052604090205460ff165b156128155761276f8484846131a9565b61282084848461321c565b80610dc057610dc0601c54601855602654602255602154601d55602b54602755565b6012546011546000918291825b6008548110156129945782600160006008848154811061287157612871613815565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806128dc57508160026000600884815481106128b5576128b5613815565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128f257601254601154945094505050509091565b612938600160006008848154811061290c5761290c613815565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611c20565b9250612980600260006008848154811061295457612954613815565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611c20565b91508061298c81613858565b91505061284f565b506011546012546129a491611bde565b8210156129bb576012546011549350935050509091565b90939092509050565b6000612a19826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166132609092919063ffffffff16565b8051909150156122b45780806020019051810190612a379190613a61565b6122b45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610d45565b600080600080612aa585613277565b90506000612ab286613294565b90506000612aca82612ac48986611c20565b90611c20565b979296509094509092505050565b6000808080612ae78886612b28565b90506000612af58887612b28565b90506000612b038888612b28565b90506000612b1582612ac48686611c20565b939b939a50919850919650505050505050565b600082612b3757506000610d15565b6000612b4383856139b4565b905082612b5085836139d3565b14610e745760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610d45565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612bdc57612bdc613815565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612c5557600080fd5b505afa158015612c69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c8d9190613a7e565b81600181518110612ca057612ca0613815565b60200260200101906001600160a01b031690816001600160a01b031681525050612ceb307f000000000000000000000000000000000000000000000000000000000000000084611c62565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612d40908590600090869030904290600401613a9b565b600060405180830381600087803b158015612d5a57600080fd5b505af1158015612d6e573d6000803e3d6000fd5b505050505050565b612da1307f000000000000000000000000000000000000000000000000000000000000000084611c62565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719823085600080612de86000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015612e4b57600080fd5b505af1158015612e5f573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061219f9190613b0c565b8015611435576114353061dead83600061267a565b6001600160a01b03821660009081526009602052604090205460ff1615612ed657601a54601855602454602255601f54601d556029546027555050565b6001600160a01b03811660009081526009602052604090205460ff1615612f1357601b54601855602554602255602054601d55602a546027555050565b601954601855602354602255601e54601d556028546027555050565b601854158015612f3f5750602254155b8015612f4b5750601d54155b8015612f575750602754155b15612f5e57565b60188054601c5560228054602655601d805460215560278054602b556000938490559183905582905555565b600080600080600080612f9c876122b9565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150612fce9088611c20565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054612ffd9087611c20565b6001600160a01b03808b1660009081526001602052604080822093909355908a168152205461302c9086612203565b6001600160a01b03891660009081526001602052604090205561304e816132c3565b613058848361334b565b6130618161336f565b80156130a85760405181815230906001600160a01b038b16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516130ed91815260200190565b60405180910390a3505050505050505050565b600080600080600080613112876122b9565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506131449087611c20565b6001600160a01b03808b16600090815260016020908152604080832094909455918b1681526002909152205461317a9084612203565b6001600160a01b03891660009081526002602090815260408083209390935560019052205461302c9086612203565b6000806000806000806131bb876122b9565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506131ed9088611c20565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546131449087611c20565b60008060008060008061322e876122b9565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150612ffd9087611c20565b606061326f848460008561340d565b949350505050565b6000610d15602c546124d160185485612b2890919063ffffffff16565b6000610d15602c546124d16132bc6027546124a3601d5460225461220390919063ffffffff16565b8590612b28565b60006132cd6121e0565b905060006132db8383612b28565b306000908152600160205260409020549091506132f89082612203565b3060009081526001602090815260408083209390935560059052205460ff16156122b457306000908152600260205260409020546133369084612203565b30600090815260026020526040902055505050565b6012546133589083611c20565b6012556013546133689082612203565b6013555050565b600061338e6027546124a3602254601d5461220390919063ffffffff16565b905080613399575050565b6133be6133b5826124d1601d5486612b2890919063ffffffff16565b600a5490612203565b600a556022546133e2906133d99083906124d1908690612b28565b600b5490612203565b600b55602754613406906133fd9083906124d1908690612b28565b600c5490612203565b600c555050565b60608247101561346e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610d45565b6001600160a01b0385163b6134c55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610d45565b600080866001600160a01b031685876040516134e19190613b3a565b60006040518083038185875af1925050503d806000811461351e576040519150601f19603f3d011682016040523d82523d6000602084013e613523565b606091505b509150915061353382828661353e565b979650505050505050565b6060831561354d575081610e74565b82511561355d5782518084602001fd5b8160405162461bcd60e51b8152600401610d4591906135a3565b60005b8381101561359257818101518382015260200161357a565b83811115610dc05750506000910152565b60208152600082518060208401526135c2816040850160208701613577565b601f01601f19169190910160400192915050565b6001600160a01b038116811461143557600080fd5b600080604083850312156135fe57600080fd5b8235613609816135d6565b946020939093013593505050565b6000806000806080858703121561362d57600080fd5b5050823594602084013594506040840135936060013592509050565b60006020828403121561365b57600080fd5b8135610e74816135d6565b60008060006060848603121561367b57600080fd5b8335613686816135d6565b92506020840135613696816135d6565b929592945050506040919091013590565b6000602082840312156136b957600080fd5b5035919050565b600080604083850312156136d357600080fd5b82356136de816135d6565b915060208301356136ee816135d6565b809150509250929050565b801515811461143557600080fd5b6000806040838503121561371a57600080fd5b8235915060208301356136ee816136f9565b6000806040838503121561373f57600080fd5b823561374a816135d6565b915060208301356136ee816136f9565b60006020828403121561376c57600080fd5b8135610e74816136f9565b600181811c9082168061378b57607f821691505b602082108114156137ac57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115613810576138106137e7565b500190565b634e487b7160e01b600052603260045260246000fd5b60008282101561383d5761383d6137e7565b500390565b634e487b7160e01b600052603160045260246000fd5b600060001982141561386c5761386c6137e7565b5060010190565b6020808252818101527f77616c6c6574416464726573732063616e277420626520302061646472657373604082015260600190565b6000602082840312156138ba57600080fd5b5051919050565b600181815b808511156138fc5781600019048211156138e2576138e26137e7565b808516156138ef57918102915b93841c93908002906138c6565b509250929050565b60008261391357506001610d15565b8161392057506000610d15565b816001811461393657600281146139405761395c565b6001915050610d15565b60ff841115613951576139516137e7565b50506001821b610d15565b5060208310610133831016604e8410600b841016171561397f575081810a610d15565b61398983836138c1565b806000190482111561399d5761399d6137e7565b029392505050565b6000610e7460ff841683613904565b60008160001904831182151516156139ce576139ce6137e7565b500290565b6000826139f057634e487b7160e01b600052601260045260246000fd5b500490565b80516001600160701b0381168114613a0c57600080fd5b919050565b600080600060608486031215613a2657600080fd5b613a2f846139f5565b9250613a3d602085016139f5565b9150604084015163ffffffff81168114613a5657600080fd5b809150509250925092565b600060208284031215613a7357600080fd5b8151610e74816136f9565b600060208284031215613a9057600080fd5b8151610e74816135d6565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015613aeb5784516001600160a01b031683529383019391830191600101613ac6565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215613b2157600080fd5b8351925060208401519150604084015190509250925092565b60008251613b4c818460208701613577565b919091019291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200aef3aa9adb26d0483dedcb73f74a56d7be16263e90db5983a9b6136b5b601f964736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103fe5760003560e01c80636c5b285511610213578063a9059cbb11610123578063cc467a15116100ab578063dd62ed3e1161007a578063dd62ed3e14610bb6578063ea1644d514610bfc578063ea2f0b3714610c1c578063f2fde38b14610c3c578063f773268914610c5c57600080fd5b8063cc467a1514610b54578063d4c70c8d14610b6a578063d7d31f5f14610b80578063db4cf1e014610b9657600080fd5b8063b62496f5116100f2578063b62496f514610aa9578063bc33718214610ad9578063bf8e572e14610af9578063c49b9a8014610b0f578063c816841b14610b2f57600080fd5b8063a9059cbb14610a33578063a9d3cd8a14610a53578063aae0acf814610a73578063af465a2714610a9357600080fd5b80637921199f116101a65780638da5cb5b116101755780638da5cb5b146109b45780638f3fa860146109d257806395d89b41146109e85780639e3a9409146109fd578063a457c2d714610a1357600080fd5b80637921199f1461093957806387266e351461094f57806388f82020146109655780638d8bf5761461099e57600080fd5b8063715018a6116101e2578063715018a6146108ce5780637437681e146108e357806375f0a874146108f9578063764d72bf1461091957600080fd5b80636c5b28551461083f5780636dd3d39f1461085f578063706acf1e1461089857806370a08231146108ae57600080fd5b80633ae7dc201161030e5780634a74bb02116102a15780635342acb4116102705780635342acb414610790578063565836e7146107c95780635b700d91146107df5780635d098b38146107ff578063667702fd1461081f57600080fd5b80634a74bb021461071a5780634d09deb31461073a57806350b9dde11461075a57806352390c021461077057600080fd5b8063437823ec116102dd578063437823ec146106af5780634549b039146106cf57806345e0b9d4146106ef57806348c54b9d1461070557600080fd5b80633ae7dc20146106395780633f33e909146106595780633f60b42614610679578063429f1add1461069957600080fd5b806318160ddd116103915780632e5b4c43116103605780632e5b4c43146105a85780632f05205c146105bd578063313ce567146105d75780633685d419146105f9578063395093511461061957600080fd5b806318160ddd1461053357806318621fe51461054857806323b872dd146105685780632d8381191461058857600080fd5b80631031e36e116103cd5780631031e36e146104b357806313114a9d146104ca5780631694505e146104df578063178d9b8e1461051357600080fd5b8063062287491461040a57806306fdde031461043d578063095ea7b31461045f5780630abe31601461048f57600080fd5b3661040557005b600080fd5b34801561041657600080fd5b5061042061dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561044957600080fd5b50610452610c72565b60405161043491906135a3565b34801561046b57600080fd5b5061047f61047a3660046135eb565b610d04565b6040519015158152602001610434565b34801561049b57600080fd5b506104a560285481565b604051908152602001610434565b3480156104bf57600080fd5b506104c8610d1b565b005b3480156104d657600080fd5b506013546104a5565b3480156104eb57600080fd5b506104207f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561051f57600080fd5b506104c861052e366004613617565b610d5a565b34801561053f57600080fd5b506011546104a5565b34801561055457600080fd5b506104c8610563366004613649565b610dc6565b34801561057457600080fd5b5061047f610583366004613666565b610e11565b34801561059457600080fd5b506104a56105a33660046136a7565b610e7b565b3480156105b457600080fd5b506104c8610ef8565b3480156105c957600080fd5b5060105461047f9060ff1681565b3480156105e357600080fd5b5060175460405160ff9091168152602001610434565b34801561060557600080fd5b506104c8610614366004613649565b610f3d565b34801561062557600080fd5b5061047f6106343660046135eb565b61115e565b34801561064557600080fd5b506104c86106543660046136c0565b611194565b34801561066557600080fd5b506104c8610674366004613649565b611268565b34801561068557600080fd5b506104c8610694366004613649565b6112b3565b3480156106a557600080fd5b506104a5601f5481565b3480156106bb57600080fd5b506104c86106ca366004613649565b6112f7565b3480156106db57600080fd5b506104a56106ea366004613707565b611345565b3480156106fb57600080fd5b506104a560125481565b34801561071157600080fd5b506104c86113d2565b34801561072657600080fd5b50602d5461047f9062010000900460ff1681565b34801561074657600080fd5b506104206107553660046136a7565b611438565b34801561076657600080fd5b506104a560215481565b34801561077c57600080fd5b506104c861078b366004613649565b611462565b34801561079c57600080fd5b5061047f6107ab366004613649565b6001600160a01b031660009081526004602052604090205460ff1690565b3480156107d557600080fd5b506104a560255481565b3480156107eb57600080fd5b506104c86107fa366004613649565b6115b5565b34801561080b57600080fd5b506104c861081a366004613649565b611603565b34801561082b57600080fd5b506104c861083a3660046136a7565b611675565b34801561084b57600080fd5b506104c861085a366004613617565b61170d565b34801561086b57600080fd5b5061047f61087a366004613649565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156108a457600080fd5b506104a5601e5481565b3480156108ba57600080fd5b506104a56108c9366004613649565b61175a565b3480156108da57600080fd5b506104c86117b9565b3480156108ef57600080fd5b506104a5600e5481565b34801561090557600080fd5b50601454610420906001600160a01b031681565b34801561092557600080fd5b506104c8610934366004613649565b6117ed565b34801561094557600080fd5b506104a5601b5481565b34801561095b57600080fd5b506104a560295481565b34801561097157600080fd5b5061047f610980366004613649565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156109aa57600080fd5b506104a560195481565b3480156109c057600080fd5b506000546001600160a01b0316610420565b3480156109de57600080fd5b506104a5600d5481565b3480156109f457600080fd5b50610452611872565b348015610a0957600080fd5b506104a560245481565b348015610a1f57600080fd5b5061047f610a2e3660046135eb565b611881565b348015610a3f57600080fd5b5061047f610a4e3660046135eb565b6118d0565b348015610a5f57600080fd5b506104c8610a6e36600461372c565b6118dd565b348015610a7f57600080fd5b506104c8610a8e366004613617565b61194a565b348015610a9f57600080fd5b506104a560115481565b348015610ab557600080fd5b5061047f610ac4366004613649565b60096020526000908152604090205460ff1681565b348015610ae557600080fd5b506104c8610af43660046136a7565b611997565b348015610b0557600080fd5b506104a5602c5481565b348015610b1b57600080fd5b506104c8610b2a36600461375a565b6119e2565b348015610b3b57600080fd5b506010546104209061010090046001600160a01b031681565b348015610b6057600080fd5b506104a5602a5481565b348015610b7657600080fd5b506104a5601a5481565b348015610b8c57600080fd5b506104a560205481565b348015610ba257600080fd5b506104c8610bb1366004613649565b611a62565b348015610bc257600080fd5b506104a5610bd13660046136c0565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b348015610c0857600080fd5b506104c8610c173660046136a7565b611ab0565b348015610c2857600080fd5b506104c8610c37366004613649565b611afb565b348015610c4857600080fd5b506104c8610c57366004613649565b611b46565b348015610c6857600080fd5b506104a560235481565b606060158054610c8190613777565b80601f0160208091040260200160405190810160405280929190818152602001828054610cad90613777565b8015610cfa5780601f10610ccf57610100808354040283529160200191610cfa565b820191906000526020600020905b815481529060010190602001808311610cdd57829003601f168201915b5050505050905090565b6000610d11338484611c62565b5060015b92915050565b6000546001600160a01b03163314610d4e5760405162461bcd60e51b8152600401610d45906137b2565b60405180910390fd5b6010805460ff19169055565b6000546001600160a01b03163314610d845760405162461bcd60e51b8152600401610d45906137b2565b601f849055601a83905560248290556029819055610dc08183610da786886137fd565b610db191906137fd565b610dbb91906137fd565b611d86565b50505050565b6000546001600160a01b03163314610df05760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000610e1e848484611dd8565b610e708433610e6b85604051806060016040528060288152602001613b57602891396001600160a01b038a16600090815260036020908152604080832033845290915290205491906121a6565b611c62565b5060015b9392505050565b6000601254821115610ee25760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610d45565b6000610eec6121e0565b9050610e748382611bde565b6000546001600160a01b03163314610f225760405162461bcd60e51b8152600401610d45906137b2565b6010805460ff19166001179055602f54610f3b5742602f555b565b6000546001600160a01b03163314610f675760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03811661dead1415610fd15760405162461bcd60e51b815260206004820152602660248201527f446f6e277420696e636c7564652069742c2069742773206e6f74206120676f6f60448201526564206964656160d01b6064820152608401610d45565b6001600160a01b03811660009081526005602052604090205460ff166110395760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610d45565b60005b60085481101561115a57816001600160a01b03166008828154811061106357611063613815565b6000918252602090912001546001600160a01b03161415611148576008805461108e9060019061382b565b8154811061109e5761109e613815565b600091825260209091200154600880546001600160a01b0390921691839081106110ca576110ca613815565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600590925220805460ff19169055600880548061112257611122613842565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b8061115281613858565b91505061103c565b5050565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091610d11918590610e6b9086612203565b6000546001600160a01b031633146111be5760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b0381166111e45760405162461bcd60e51b8152600401610d4590613873565b6040516370a0823160e01b815230600482015261115a90839083906001600160a01b038316906370a082319060240160206040518083038186803b15801561122b57600080fd5b505afa15801561123f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126391906138a8565b612262565b6000546001600160a01b031633146112925760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b031633146112dd5760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b0316600090815260306020526040812055565b6000546001600160a01b031633146113215760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03166000908152600460205260409020805460ff19166001179055565b60006011548311156113995760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610d45565b816113b85760006113a9846122b9565b50939550610d15945050505050565b60006113c3846122b9565b50929550610d15945050505050565b6000546001600160a01b031633146113fc5760405162461bcd60e51b8152600401610d45906137b2565b6014546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611435573d6000803e3d6000fd5b50565b6008818154811061144857600080fd5b6000918252602090912001546001600160a01b0316905081565b6000546001600160a01b0316331461148c5760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03811660009081526005602052604090205460ff16156114f55760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610d45565b6001600160a01b0381166000908152600160205260409020541561154f576001600160a01b03811660009081526001602052604090205461153590610e7b565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600560205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b031633146115df5760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000546001600160a01b0316331461162d5760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b0381166116535760405162461bcd60e51b8152600401610d4590613873565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461169f5760405162461bcd60e51b8152600401610d45906137b2565b6032811080156116b0575060018110155b6117085760405162461bcd60e51b8152602060048201526024808201527f6d696e4c70546f6b656e73206d757374206265206265747765656e203120616e6044820152630642035360e41b6064820152608401610d45565b600f55565b6000546001600160a01b031633146117375760405162461bcd60e51b8152600401610d45906137b2565b6020849055601b8390556025829055602a819055610dc08183610da786886137fd565b6001600160a01b03811660009081526005602052604081205460ff161561179757506001600160a01b031660009081526002602052604090205490565b6001600160a01b038216600090815260016020526040902054610d1590610e7b565b6000546001600160a01b031633146117e35760405162461bcd60e51b8152600401610d45906137b2565b610f3b6000612308565b6000546001600160a01b031633146118175760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03811661183d5760405162461bcd60e51b8152600401610d4590613873565b6040516001600160a01b038216904780156108fc02916000818181858888f1935050505015801561115a573d6000803e3d6000fd5b606060168054610c8190613777565b6000610d113384610e6b85604051806060016040528060258152602001613b7f602591393360009081526003602090815260408083206001600160a01b038d16845290915290205491906121a6565b6000610d11338484611dd8565b6000546001600160a01b031633146119075760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b039091166000908152600660209081526040808320805460ff199081166001179091556009909252909120805492151592909116919091179055565b6000546001600160a01b031633146119745760405162461bcd60e51b8152600401610d45906137b2565b601e849055601983905560238290556028819055610dc08183610da786886137fd565b6000546001600160a01b031633146119c15760405162461bcd60e51b8152600401610d45906137b2565b6017546119d29060ff16600a6139a5565b6119dc90826139b4565b600e5550565b6000546001600160a01b03163314611a0c5760405162461bcd60e51b8152600401610d45906137b2565b602d8054821515620100000262ff0000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990611a5790831515815260200190565b60405180910390a150565b6000546001600160a01b03163314611a8c5760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6000546001600160a01b03163314611ada5760405162461bcd60e51b8152600401610d45906137b2565b601754611aeb9060ff16600a6139a5565b611af590826139b4565b600d5550565b6000546001600160a01b03163314611b255760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b03166000908152600460205260409020805460ff19169055565b6000546001600160a01b03163314611b705760405162461bcd60e51b8152600401610d45906137b2565b6001600160a01b038116611bd55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d45565b61143581612308565b6000610e7483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612358565b6000610e7483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121a6565b6001600160a01b038316611cc45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d45565b6001600160a01b038216611d255760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d45565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b610bb88111156114355760405162461bcd60e51b815260206004820152601960248201527f4665652061626f766520333025206e6f7420616c6c6f776564000000000000006044820152606401610d45565b6001600160a01b038316611e3c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610d45565b60008111611e9e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610d45565b6001600160a01b0383166000908152603060205260409020541580611ee657506001600160a01b038316600090815260306020526040902054611ee29060016137fd565b4211155b611eef57600080fd5b602f54611efd9060016137fd565b4211611f88576001600160a01b03831660009081526009602052604090205460ff1615611f40576001600160a01b03821660009081526030602052604090204290555b6001600160a01b03821660009081526009602052604090205460ff1680611f7f57506001600160a01b03831660009081526009602052604090205460ff165b611f8857600080fd5b611f90612386565b6000611f9b3061175a565b602d5490915060ff168015611fca57506064600f54602e54611fbd91906139b4565b611fc791906139d3565b81115b1561202257602d54610100900460ff1615801561200057506001600160a01b03841660009081526009602052604090205460ff16155b80156120145750602d5462010000900460ff165b156120225761202281612479565b6001600160a01b03841660009081526004602052604090205460019060ff168061206457506001600160a01b03841660009081526004602052604090205460ff165b1561206d575060005b6001600160a01b03851660009081526007602052604090205460ff1615801561209e5750602d54610100900460ff16155b156120e757600e548311156120e75760405162461bcd60e51b815260206004820152600f60248201526e13585e081d1e08195e18d959591959608a1b6044820152606401610d45565b6001600160a01b03841660009081526006602052604090205460ff1615801561212957506001600160a01b03841660009081526009602052604090205460ff16155b1561219357600d548361213b8661175a565b61214591906137fd565b11156121935760405162461bcd60e51b815260206004820152601860248201527f4d61782077616c6c65742073697a6520657863656564656400000000000000006044820152606401610d45565b61219f8585858461267a565b5050505050565b600081848411156121ca5760405162461bcd60e51b8152600401610d4591906135a3565b5060006121d7848661382b565b95945050505050565b60008060006121ed612842565b90925090506121fc8282611bde565b9250505090565b60008061221083856137fd565b905083811015610e745760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610d45565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526122b49084906129c4565b505050565b60008060008060008060008060006122d08a612a96565b92509250925060008060006122ee8d86866122e96121e0565b612ad8565b919f909e50909c50959a5093985091965092945050505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600081836123795760405162461bcd60e51b8152600401610d4591906135a3565b5060006121d784866139d3565b600080601060019054906101000a90046001600160a01b03166001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156123d757600080fd5b505afa1580156123eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061240f9190613a11565b506001600160701b031691506001600160701b03169150612444601060019054906101000a90046001600160a01b031661175a565b602e5581158015906124565750600081115b612461576000612464565b60015b602d805460ff19169115159190911790555050565b602d805461ff001916610100179055600c54600b54600a546000926124a99290916124a391612203565b90612203565b9050806124b6575061266c565b60006124d7826124d1600a5486612b2890919063ffffffff16565b90611bde565b905060006124f4836124d1600b5487612b2890919063ffffffff16565b9050600081612503848761382b565b61250d919061382b565b9050600061251c836002611bde565b9050600061252a8483611c20565b90504760006125398488612203565b905061254481612ba7565b60006125504784611c20565b90506000612562836124d1848c612b28565b6014546040519192506001600160a01b03169082156108fc029083906000818181858888f1935050505015801561259d573d6000803e3d6000fd5b506125a8818361382b565b91506125b48583612d76565b6125bd87612e84565b600a5489106125cd5760006125db565b88600a546125db919061382b565b600a55600b5488106125ee5760006125fc565b87600b546125fc919061382b565b600b55600c54871061260f57600061261d565b86600c5461261d919061382b565b600c5560408051878152602081018490529081018690527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a1505050505050505050505b50602d805461ff0019169055565b60105460ff16612707576001600160a01b03841660009081526004602052604090205460ff16806126c357506001600160a01b03831660009081526004602052604090205460ff165b6127075760405162461bcd60e51b8152602060048201526015602482015274151c985919481a5cc81b9bdd081bdc195b881e595d605a1b6044820152606401610d45565b6127118484612e99565b8061271e5761271e612f2f565b6001600160a01b03841660009081526005602052604090205460ff16801561275f57506001600160a01b03831660009081526005602052604090205460ff16155b156127745761276f848484612f8a565b612820565b6001600160a01b03841660009081526005602052604090205460ff161580156127b557506001600160a01b03831660009081526005602052604090205460ff165b156127c55761276f848484613100565b6001600160a01b03841660009081526005602052604090205460ff16801561280557506001600160a01b03831660009081526005602052604090205460ff165b156128155761276f8484846131a9565b61282084848461321c565b80610dc057610dc0601c54601855602654602255602154601d55602b54602755565b6012546011546000918291825b6008548110156129945782600160006008848154811061287157612871613815565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806128dc57508160026000600884815481106128b5576128b5613815565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156128f257601254601154945094505050509091565b612938600160006008848154811061290c5761290c613815565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611c20565b9250612980600260006008848154811061295457612954613815565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611c20565b91508061298c81613858565b91505061284f565b506011546012546129a491611bde565b8210156129bb576012546011549350935050509091565b90939092509050565b6000612a19826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166132609092919063ffffffff16565b8051909150156122b45780806020019051810190612a379190613a61565b6122b45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610d45565b600080600080612aa585613277565b90506000612ab286613294565b90506000612aca82612ac48986611c20565b90611c20565b979296509094509092505050565b6000808080612ae78886612b28565b90506000612af58887612b28565b90506000612b038888612b28565b90506000612b1582612ac48686611c20565b939b939a50919850919650505050505050565b600082612b3757506000610d15565b6000612b4383856139b4565b905082612b5085836139d3565b14610e745760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610d45565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612bdc57612bdc613815565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612c5557600080fd5b505afa158015612c69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c8d9190613a7e565b81600181518110612ca057612ca0613815565b60200260200101906001600160a01b031690816001600160a01b031681525050612ceb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c62565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612d40908590600090869030904290600401613a9b565b600060405180830381600087803b158015612d5a57600080fd5b505af1158015612d6e573d6000803e3d6000fd5b505050505050565b612da1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c62565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719823085600080612de86000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b158015612e4b57600080fd5b505af1158015612e5f573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061219f9190613b0c565b8015611435576114353061dead83600061267a565b6001600160a01b03821660009081526009602052604090205460ff1615612ed657601a54601855602454602255601f54601d556029546027555050565b6001600160a01b03811660009081526009602052604090205460ff1615612f1357601b54601855602554602255602054601d55602a546027555050565b601954601855602354602255601e54601d556028546027555050565b601854158015612f3f5750602254155b8015612f4b5750601d54155b8015612f575750602754155b15612f5e57565b60188054601c5560228054602655601d805460215560278054602b556000938490559183905582905555565b600080600080600080612f9c876122b9565b6001600160a01b038f16600090815260026020526040902054959b50939950919750955093509150612fce9088611c20565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054612ffd9087611c20565b6001600160a01b03808b1660009081526001602052604080822093909355908a168152205461302c9086612203565b6001600160a01b03891660009081526001602052604090205561304e816132c3565b613058848361334b565b6130618161336f565b80156130a85760405181815230906001600160a01b038b16907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516130ed91815260200190565b60405180910390a3505050505050505050565b600080600080600080613112876122b9565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506131449087611c20565b6001600160a01b03808b16600090815260016020908152604080832094909455918b1681526002909152205461317a9084612203565b6001600160a01b03891660009081526002602090815260408083209390935560019052205461302c9086612203565b6000806000806000806131bb876122b9565b6001600160a01b038f16600090815260026020526040902054959b509399509197509550935091506131ed9088611c20565b6001600160a01b038a166000908152600260209081526040808320939093556001905220546131449087611c20565b60008060008060008061322e876122b9565b6001600160a01b038f16600090815260016020526040902054959b50939950919750955093509150612ffd9087611c20565b606061326f848460008561340d565b949350505050565b6000610d15602c546124d160185485612b2890919063ffffffff16565b6000610d15602c546124d16132bc6027546124a3601d5460225461220390919063ffffffff16565b8590612b28565b60006132cd6121e0565b905060006132db8383612b28565b306000908152600160205260409020549091506132f89082612203565b3060009081526001602090815260408083209390935560059052205460ff16156122b457306000908152600260205260409020546133369084612203565b30600090815260026020526040902055505050565b6012546133589083611c20565b6012556013546133689082612203565b6013555050565b600061338e6027546124a3602254601d5461220390919063ffffffff16565b905080613399575050565b6133be6133b5826124d1601d5486612b2890919063ffffffff16565b600a5490612203565b600a556022546133e2906133d99083906124d1908690612b28565b600b5490612203565b600b55602754613406906133fd9083906124d1908690612b28565b600c5490612203565b600c555050565b60608247101561346e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610d45565b6001600160a01b0385163b6134c55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610d45565b600080866001600160a01b031685876040516134e19190613b3a565b60006040518083038185875af1925050503d806000811461351e576040519150601f19603f3d011682016040523d82523d6000602084013e613523565b606091505b509150915061353382828661353e565b979650505050505050565b6060831561354d575081610e74565b82511561355d5782518084602001fd5b8160405162461bcd60e51b8152600401610d4591906135a3565b60005b8381101561359257818101518382015260200161357a565b83811115610dc05750506000910152565b60208152600082518060208401526135c2816040850160208701613577565b601f01601f19169190910160400192915050565b6001600160a01b038116811461143557600080fd5b600080604083850312156135fe57600080fd5b8235613609816135d6565b946020939093013593505050565b6000806000806080858703121561362d57600080fd5b5050823594602084013594506040840135936060013592509050565b60006020828403121561365b57600080fd5b8135610e74816135d6565b60008060006060848603121561367b57600080fd5b8335613686816135d6565b92506020840135613696816135d6565b929592945050506040919091013590565b6000602082840312156136b957600080fd5b5035919050565b600080604083850312156136d357600080fd5b82356136de816135d6565b915060208301356136ee816135d6565b809150509250929050565b801515811461143557600080fd5b6000806040838503121561371a57600080fd5b8235915060208301356136ee816136f9565b6000806040838503121561373f57600080fd5b823561374a816135d6565b915060208301356136ee816136f9565b60006020828403121561376c57600080fd5b8135610e74816136f9565b600181811c9082168061378b57607f821691505b602082108114156137ac57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115613810576138106137e7565b500190565b634e487b7160e01b600052603260045260246000fd5b60008282101561383d5761383d6137e7565b500390565b634e487b7160e01b600052603160045260246000fd5b600060001982141561386c5761386c6137e7565b5060010190565b6020808252818101527f77616c6c6574416464726573732063616e277420626520302061646472657373604082015260600190565b6000602082840312156138ba57600080fd5b5051919050565b600181815b808511156138fc5781600019048211156138e2576138e26137e7565b808516156138ef57918102915b93841c93908002906138c6565b509250929050565b60008261391357506001610d15565b8161392057506000610d15565b816001811461393657600281146139405761395c565b6001915050610d15565b60ff841115613951576139516137e7565b50506001821b610d15565b5060208310610133831016604e8410600b841016171561397f575081810a610d15565b61398983836138c1565b806000190482111561399d5761399d6137e7565b029392505050565b6000610e7460ff841683613904565b60008160001904831182151516156139ce576139ce6137e7565b500290565b6000826139f057634e487b7160e01b600052601260045260246000fd5b500490565b80516001600160701b0381168114613a0c57600080fd5b919050565b600080600060608486031215613a2657600080fd5b613a2f846139f5565b9250613a3d602085016139f5565b9150604084015163ffffffff81168114613a5657600080fd5b809150509250925092565b600060208284031215613a7357600080fd5b8151610e74816136f9565b600060208284031215613a9057600080fd5b8151610e74816135d6565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015613aeb5784516001600160a01b031683529383019391830191600101613ac6565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215613b2157600080fd5b8351925060208401519150604084015190509250925092565b60008251613b4c818460208701613577565b919091019291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200aef3aa9adb26d0483dedcb73f74a56d7be16263e90db5983a9b6136b5b601f964736f6c63430008090033

Deployed Bytecode Sourcemap

24369:26069:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24969:79;;;;;;;;;;;;25006:42;24969:79;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;24969:79:0;;;;;;;;29886:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30800:163::-;;;;;;;;;;-1:-1:-1;30800:163:0;;;;;:::i;:::-;;:::i;:::-;;;1494:14:1;;1487:22;1469:41;;1457:2;1442:18;30800:163:0;1329:187:1;26182:31:0;;;;;;;;;;;;;;;;;;;1667:25:1;;;1655:2;1640:18;26182:31:0;1521:177:1;37108:80:0;;;;;;;;;;;;;:::i;:::-;;31929:87;;;;;;;;;;-1:-1:-1;31998:10:0;;31929:87;;26401:51;;;;;;;;;;;;;;;34864:357;;;;;;;;;;-1:-1:-1;34864:357:0;;;;;:::i;:::-;;:::i;30163:95::-;;;;;;;;;;-1:-1:-1;30243:7:0;;30163:95;;50055:112;;;;;;;;;;-1:-1:-1;50055:112:0;;;;;:::i;:::-;;:::i;30971:315::-;;;;;;;;;;-1:-1:-1;30971:315:0;;;;;:::i;:::-;;:::i;32468:252::-;;;;;;;;;;-1:-1:-1;32468:252:0;;;;;:::i;:::-;;:::i;36945:155::-;;;;;;;;;;;;;:::i;25286:20::-;;;;;;;;;;-1:-1:-1;25286:20:0;;;;;;;;30072:83;;;;;;;;;;-1:-1:-1;30138:9:0;;30072:83;;30138:9;;;;3367:36:1;;3355:2;3340:18;30072:83:0;3225:184:1;33069:558:0;;;;;;;;;;-1:-1:-1;33069:558:0;;;;;:::i;:::-;;:::i;31294:220::-;;;;;;;;;;-1:-1:-1;31294:220:0;;;;;:::i;:::-;;:::i;36257:283::-;;;;;;;;;;-1:-1:-1;36257:283:0;;;;;:::i;:::-;;:::i;50175:120::-;;;;;;;;;;-1:-1:-1;50175:120:0;;;;;:::i;:::-;;:::i;36849:88::-;;;;;;;;;;-1:-1:-1;36849:88:0;;;;;:::i;:::-;;:::i;25823:31::-;;;;;;;;;;;;;;;;34404:113;;;;;;;;;;-1:-1:-1;34404:113:0;;;;;:::i;:::-;;:::i;32024:436::-;;;;;;;;;;-1:-1:-1;32024:436:0;;;;;:::i;:::-;;:::i;25379:22::-;;;;;;;;;;;;;;;;36128:117;;;;;;;;;;;;;:::i;26493:40::-;;;;;;;;;;-1:-1:-1;26493:40:0;;;;;;;;;;;24864:26;;;;;;;;;;-1:-1:-1;24864:26:0;;;;;:::i;:::-;;:::i;25900:36::-;;;;;;;;;;;;;;;;32728:333;;;;;;;;;;-1:-1:-1;32728:333:0;;;;;:::i;:::-;;:::i;40874:125::-;;;;;;;;;;-1:-1:-1;40874:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;40964:27:0;40940:4;40964:27;;;:18;:27;;;;;;;;;40874:125;26066:32;;;;;;;;;;;;;;;;49805:121;;;;;;;;;;-1:-1:-1;49805:121:0;;;;;:::i;:::-;;:::i;34649:203::-;;;;;;;;;;-1:-1:-1;34649:203:0;;;;;:::i;:::-;;:::i;41352:207::-;;;;;;;;;;-1:-1:-1;41352:207:0;;;;;:::i;:::-;;:::i;35229:362::-;;;;;;;;;;-1:-1:-1;35229:362:0;;;;;:::i;:::-;;:::i;50303:132::-;;;;;;;;;;-1:-1:-1;50303:132:0;;;;;:::i;:::-;-1:-1:-1;;;;;50398:29:0;50374:4;50398:29;;;:20;:29;;;;;;;;;50303:132;25780:36;;;;;;;;;;;;;;;;30266:198;;;;;;;;;;-1:-1:-1;30266:198:0;;;;;:::i;:::-;;:::i;22374:103::-;;;;;;;;;;;;;:::i;25224:20::-;;;;;;;;;;;;;;;;25441:30;;;;;;;;;;-1:-1:-1;25441:30:0;;;;-1:-1:-1;;;;;25441:30:0;;;36552:227;;;;;;;;;;-1:-1:-1;36552:227:0;;;;;:::i;:::-;;:::i;25671:26::-;;;;;;;;;;;;;;;;26220;;;;;;;;;;;;;;;;31801:120;;;;;;;;;;-1:-1:-1;31801:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;31893:20:0;31869:4;31893:20;;;:11;:20;;;;;;;;;31801:120;25602:30;;;;;;;;;;;;;;;;21723:87;;;;;;;;;;-1:-1:-1;21769:7:0;21796:6;-1:-1:-1;;;;;21796:6:0;21723:87;;25189:28;;;;;;;;;;;;;;;;29977:87;;;;;;;;;;;;;:::i;26028:31::-;;;;;;;;;;;;;;;;31522:271;;;;;;;;;;-1:-1:-1;31522:271:0;;;;;:::i;:::-;;:::i;30472:169::-;;;;;;;;;;-1:-1:-1;30472:169:0;;;;;:::i;:::-;;:::i;29715:163::-;;;;;;;;;;-1:-1:-1;29715:163:0;;;;;:::i;:::-;;:::i;35602:382::-;;;;;;;;;;-1:-1:-1;35602:382:0;;;;;:::i;:::-;;:::i;25350:22::-;;;;;;;;;;;;;;;;24903:57;;;;;;;;;;-1:-1:-1;24903:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29211:116;;;;;;;;;;-1:-1:-1;29211:116:0;;;;;:::i;:::-;;:::i;26328:30::-;;;;;;;;;;;;;;;;37196:173;;;;;;;;;;-1:-1:-1;37196:173:0;;;;;:::i;:::-;;:::i;25315:26::-;;;;;;;;;;-1:-1:-1;25315:26:0;;;;;;;-1:-1:-1;;;;;25315:26:0;;;26253:27;;;;;;;;;;;;;;;;25639:25;;;;;;;;;;;;;;;;25861:32;;;;;;;;;;;;;;;;49934:113;;;;;;;;;;-1:-1:-1;49934:113:0;;;;;:::i;:::-;;:::i;30649:143::-;;;;;;;;;;-1:-1:-1;30649:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;30757:18:0;;;30730:7;30757:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30649:143;49661:136;;;;;;;;;;-1:-1:-1;49661:136:0;;;;;:::i;:::-;;:::i;34529:112::-;;;;;;;;;;-1:-1:-1;34529:112:0;;;;;:::i;:::-;;:::i;22632:201::-;;;;;;;;;;-1:-1:-1;22632:201:0;;;;;:::i;:::-;;:::i;25985:36::-;;;;;;;;;;;;;;;;29886:83;29923:13;29956:5;29949:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29886:83;:::o;30800:163::-;30877:4;30894:39;21045:10;30917:7;30926:6;30894:8;:39::i;:::-;-1:-1:-1;30951:4:0;30800:163;;;;;:::o;37108:80::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;;;;;;;;;37164:8:::1;:16:::0;;-1:-1:-1;;37164:16:0::1;::::0;;37108:80::o;34864:357::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;34995:16:::1;:32:::0;;;35038:10:::1;:20:::0;;;35069:16:::1;:32:::0;;;35112:11:::1;:22:::0;;;35145:68:::1;35126:8:::0;35088:13;35162:23:::1;35051:7:::0;35014:13;35162:23:::1;:::i;:::-;:39;;;;:::i;:::-;:50;;;;:::i;:::-;35145:16;:68::i;:::-;34864:357:::0;;;;:::o;50055:112::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50126:25:0::1;50154:5;50126:25:::0;;;:16:::1;:25;::::0;;;;:33;;-1:-1:-1;;50126:33:0::1;::::0;;50055:112::o;30971:315::-;31071:4;31088:36;31098:6;31106:9;31117:6;31088:9;:36::i;:::-;31135:121;31144:6;21045:10;31166:89;31204:6;31166:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31166:19:0;;;;;;:11;:19;;;;;;;;21045:10;31166:33;;;;;;;;;;:37;:89::i;:::-;31135:8;:121::i;:::-;-1:-1:-1;31274:4:0;30971:315;;;;;;:::o;32468:252::-;32534:7;32573;;32562;:18;;32554:73;;;;-1:-1:-1;;;32554:73:0;;6756:2:1;32554:73:0;;;6738:21:1;6795:2;6775:18;;;6768:30;6834:34;6814:18;;;6807:62;-1:-1:-1;;;6885:18:1;;;6878:40;6935:19;;32554:73:0;6554:406:1;32554:73:0;32638:19;32660:10;:8;:10::i;:::-;32638:32;-1:-1:-1;32688:24:0;:7;32638:32;32688:11;:24::i;36945:155::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;37001:8:::1;:15:::0;;-1:-1:-1;;37001:15:0::1;37012:4;37001:15;::::0;;37031:5:::1;::::0;37027:66:::1;;37066:15;37058:5;:23:::0;37027:66:::1;36945:155::o:0;33069:558::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33151:21:0;::::1;25006:42;33151:21;;33143:72;;;::::0;-1:-1:-1;;;33143:72:0;;7167:2:1;33143:72:0::1;::::0;::::1;7149:21:1::0;7206:2;7186:18;;;7179:30;7245:34;7225:18;;;7218:62;-1:-1:-1;;;7296:18:1;;;7289:36;7342:19;;33143:72:0::1;6965:402:1::0;33143:72:0::1;-1:-1:-1::0;;;;;33234:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33226:56;;;::::0;-1:-1:-1;;;33226:56:0;;7574:2:1;33226:56:0::1;::::0;::::1;7556:21:1::0;7613:2;7593:18;;;7586:30;7652:25;7632:18;;;7625:53;7695:18;;33226:56:0::1;7372:347:1::0;33226:56:0::1;33298:9;33293:327;33317:9;:16:::0;33313:20;::::1;33293:327;;;33375:7;-1:-1:-1::0;;;;;33359:23:0::1;:9;33369:1;33359:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33359:12:0::1;:23;33355:254;;;33418:9;33428:16:::0;;:20:::1;::::0;33447:1:::1;::::0;33428:20:::1;:::i;:::-;33418:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;33403:9:::1;:12:::0;;-1:-1:-1;;;;;33418:31:0;;::::1;::::0;33413:1;;33403:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33403:46:0::1;-1:-1:-1::0;;;;;33403:46:0;;::::1;;::::0;;33468:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33507:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33507:28:0::1;::::0;;33554:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33554:15:0;;;;;-1:-1:-1;;;;;;33554:15:0::1;::::0;;;;;33293:327:::1;33069:558:::0;:::o;33355:254::-:1;33335:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33293:327;;;;33069:558:::0;:::o;31294:220::-;21045:10;31384:4;31433:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;31433:34:0;;;;;;;;;;31384:4;;31401:83;;31424:7;;31433:50;;31472:10;31433:38;:50::i;36257:283::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36367:27:0;::::1;36359:72;;;;-1:-1:-1::0;;;36359:72:0::1;;;;;;;:::i;:::-;36494:37;::::0;-1:-1:-1;;;36494:37:0;;36525:4:::1;36494:37;::::0;::::1;160:51:1::0;36442:90:0::1;::::0;36465:12;;36479:13;;-1:-1:-1;;;;;36494:22:0;::::1;::::0;::::1;::::0;133:18:1;;36494:37:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36442:22;:90::i;50175:120::-:0;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50250:29:0::1;50282:5;50250:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;50250:37:0::1;::::0;;50175:120::o;36849:88::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36915:10:0::1;36928:1;36915:10:::0;;;:1:::1;:10;::::0;;;;:14;36849:88::o;34404:113::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34475:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;34475:34:0::1;34505:4;34475:34;::::0;;34404:113::o;32024:436::-;32114:7;32153;;32142;:18;;32134:62;;;;-1:-1:-1;;;32134:62:0;;9010:2:1;32134:62:0;;;8992:21:1;9049:2;9029:18;;;9022:30;9088:33;9068:18;;;9061:61;9139:18;;32134:62:0;8808:355:1;32134:62:0;32212:17;32207:246;;32247:15;32271:19;32282:7;32271:10;:19::i;:::-;-1:-1:-1;32246:44:0;;-1:-1:-1;32305:14:0;;-1:-1:-1;;;;;32305:14:0;32207:246;32354:23;32385:19;32396:7;32385:10;:19::i;:::-;-1:-1:-1;32352:52:0;;-1:-1:-1;32419:22:0;;-1:-1:-1;;;;;32419:22:0;36128:117;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;36189:15:::1;::::0;36181:56:::1;::::0;-1:-1:-1;;;;;36189:15:0;;::::1;::::0;36215:21:::1;36181:56:::0;::::1;;;::::0;36189:15:::1;36181:56:::0;36189:15;36181:56;36215:21;36189:15;36181:56;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;36128:117::o:0;24864:26::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24864:26:0;;-1:-1:-1;24864:26:0;:::o;32728:333::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32811:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32810:21;32802:61;;;::::0;-1:-1:-1;;;32802:61:0;;9370:2:1;32802:61:0::1;::::0;::::1;9352:21:1::0;9409:2;9389:18;;;9382:30;9448:29;9428:18;;;9421:57;9495:18;;32802:61:0::1;9168:351:1::0;32802:61:0::1;-1:-1:-1::0;;;;;32877:16:0;::::1;32896:1;32877:16:::0;;;:7:::1;:16;::::0;;;;;:20;32874:108:::1;;-1:-1:-1::0;;;;;32953:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32933:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32914:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32874:108:::1;-1:-1:-1::0;;;;;32992:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32992:27:0::1;33015:4;32992:27:::0;;::::1;::::0;;;33030:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33030:23:0::1;::::0;;::::1;::::0;;32728:333::o;49805:121::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49882:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;49882:36:0::1;49914:4;49882:36;::::0;;49805:121::o;34649:203::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34738:27:0;::::1;34730:72;;;;-1:-1:-1::0;;;34730:72:0::1;;;;;;;:::i;:::-;34813:15;:31:::0;;-1:-1:-1;;;;;;34813:31:0::1;-1:-1:-1::0;;;;;34813:31:0;;;::::1;::::0;;;::::1;::::0;;34649:203::o;41352:207::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;41451:2:::1;41437:11;:16;:36;;;;;41472:1;41457:11;:16;;41437:36;41429:85;;;::::0;-1:-1:-1;;;41429:85:0;;9726:2:1;41429:85:0::1;::::0;::::1;9708:21:1::0;9765:2;9745:18;;;9738:30;9804:34;9784:18;;;9777:62;-1:-1:-1;;;9855:18:1;;;9848:34;9899:19;;41429:85:0::1;9524:400:1::0;41429:85:0::1;41525:12;:26:::0;41352:207::o;35229:362::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;35361:17:::1;:33:::0;;;35405:11:::1;:21:::0;;;35437:17:::1;:33:::0;;;35481:12:::1;:23:::0;;;35515:68:::1;35496:8:::0;35457:13;35532:23:::1;35419:7:::0;35381:13;35532:23:::1;:::i;30266:198::-:0;-1:-1:-1;;;;;30356:20:0;;30332:7;30356:20;;;:11;:20;;;;;;;;30352:49;;;-1:-1:-1;;;;;;30385:16:0;;;;;:7;:16;;;;;;;30266:198::o;30352:49::-;-1:-1:-1;;;;;30439:16:0;;;;;;:7;:16;;;;;;30419:37;;:19;:37::i;22374:103::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;22439:30:::1;22466:1;22439:18;:30::i;36552:227::-:0;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36651:27:0;::::1;36643:72;;;;-1:-1:-1::0;;;36643:72:0::1;;;;;;;:::i;:::-;36726:45;::::0;-1:-1:-1;;;;;36726:22:0;::::1;::::0;36749:21:::1;36726:45:::0;::::1;;;::::0;::::1;::::0;;;36749:21;36726:22;:45;::::1;;;;;;;;;;;;;::::0;::::1;;;;29977:87:::0;30016:13;30049:7;30042:14;;;;;:::i;31522:271::-;31617:4;31634:129;21045:10;31657:7;31666:96;31705:15;31666:96;;;;;;;;;;;;;;;;;21045:10;31666:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;31666:34:0;;;;;;;;;;;;:38;:96::i;30472:169::-;30552:4;30569:42;21045:10;30593:9;30604:6;30569:9;:42::i;29715:163::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29787:26:0;;::::1;;::::0;;;:20:::1;:26;::::0;;;;;;;:33;;-1:-1:-1;;29787:33:0;;::::1;29816:4;29787:33;::::0;;;29831:25:::1;:31:::0;;;;;;:39;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;29715:163::o;35602:382::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;35738:21:::1;:37:::0;;;35786:15:::1;:25:::0;;;35822:21:::1;:37:::0;;;35870:16:::1;:27:::0;;;35908:68:::1;35889:8:::0;35846:13;35925:23:::1;35804:7:::0;35762:13;35925:23:::1;:::i;29211:116::-:0;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;29310:9:::1;::::0;29304:15:::1;::::0;29310:9:::1;;29304:2;:15;:::i;:::-;29290:29;::::0;:11;:29:::1;:::i;:::-;29282:5;:37:::0;-1:-1:-1;29211:116:0:o;37196:173::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;37275:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37275:32:0;;::::1;;::::0;;37323:38:::1;::::0;::::1;::::0;::::1;::::0;37299:8;1494:14:1;1487:22;1469:41;;1457:2;1442:18;;1329:187;37323:38:0::1;;;;;;;;37196:173:::0;:::o;49934:113::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50007:25:0::1;;::::0;;;:16:::1;:25;::::0;;;;:32;;-1:-1:-1;;50007:32:0::1;50035:4;50007:32;::::0;;49934:113::o;49661:136::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;49780:9:::1;::::0;49774:15:::1;::::0;49780:9:::1;;49774:2;:15;:::i;:::-;49757:32;::::0;:14;:32:::1;:::i;:::-;49741:13;:48:::0;-1:-1:-1;49661:136:0:o;34529:112::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34598:27:0::1;34628:5;34598:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;34598:35:0::1;::::0;;34529:112::o;22632:201::-;21769:7;21796:6;-1:-1:-1;;;;;21796:6:0;21045:10;21943:23;21935:68;;;;-1:-1:-1;;;21935:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22721:22:0;::::1;22713:73;;;::::0;-1:-1:-1;;;22713:73:0;;11687:2:1;22713:73:0::1;::::0;::::1;11669:21:1::0;11726:2;11706:18;;;11699:30;11765:34;11745:18;;;11738:62;-1:-1:-1;;;11816:18:1;;;11809:36;11862:19;;22713:73:0::1;11485:402:1::0;22713:73:0::1;22797:28;22816:8;22797:18;:28::i;7061:132::-:0;7119:7;7146:39;7150:1;7153;7146:39;;;;;;;;;;;;;;;;;:3;:39::i;5224:136::-;5282:7;5309:43;5313:1;5316;5309:43;;;;;;;;;;;;;;;;;:3;:43::i;41007:337::-;-1:-1:-1;;;;;41100:19:0;;41092:68;;;;-1:-1:-1;;;41092:68:0;;12094:2:1;41092:68:0;;;12076:21:1;12133:2;12113:18;;;12106:30;12172:34;12152:18;;;12145:62;-1:-1:-1;;;12223:18:1;;;12216:34;12267:19;;41092:68:0;11892:400:1;41092:68:0;-1:-1:-1;;;;;41179:21:0;;41171:68;;;;-1:-1:-1;;;41171:68:0;;12499:2:1;41171:68:0;;;12481:21:1;12538:2;12518:18;;;12511:30;12577:34;12557:18;;;12550:62;-1:-1:-1;;;12628:18:1;;;12621:32;12670:19;;41171:68:0;12297:398:1;41171:68:0;-1:-1:-1;;;;;41252:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;41304:32;;1667:25:1;;;41304:32:0;;1640:18:1;41304:32:0;;;;;;;41007:337;;;:::o;35992:124::-;36074:4;36065:5;:13;;36057:51;;;;-1:-1:-1;;;36057:51:0;;12902:2:1;36057:51:0;;;12884:21:1;12941:2;12921:18;;;12914:30;12980:27;12960:18;;;12953:55;13025:18;;36057:51:0;12700:349:1;41567:1472:0;-1:-1:-1;;;;;41689:18:0;;41681:68;;;;-1:-1:-1;;;41681:68:0;;13256:2:1;41681:68:0;;;13238:21:1;13295:2;13275:18;;;13268:30;13334:34;13314:18;;;13307:62;-1:-1:-1;;;13385:18:1;;;13378:35;13430:19;;41681:68:0;13054:401:1;41681:68:0;41777:1;41768:6;:10;41760:64;;;;-1:-1:-1;;;41760:64:0;;13662:2:1;41760:64:0;;;13644:21:1;13701:2;13681:18;;;13674:30;13740:34;13720:18;;;13713:62;-1:-1:-1;;;13791:18:1;;;13784:39;13840:19;;41760:64:0;13460:405:1;41760:64:0;-1:-1:-1;;;;;41843:7:0;;;;;;:1;:7;;;;;;:12;;:46;;-1:-1:-1;;;;;;41878:7:0;;;;;;:1;:7;;;;;;:11;;41888:1;41878:11;:::i;:::-;41859:15;:30;;41843:46;41835:55;;;;;;41924:5;;:9;;41932:1;41924:9;:::i;:::-;41905:15;:28;41901:208;;-1:-1:-1;;;;;41953:31:0;;;;;;:25;:31;;;;;;;;41950:59;;;-1:-1:-1;;;;;41986:5:0;;;;;;:1;:5;;;;;41994:15;41986:23;;41950:59;-1:-1:-1;;;;;42032:29:0;;;;;;:25;:29;;;;;;;;;:64;;-1:-1:-1;;;;;;42065:31:0;;;;;;:25;:31;;;;;;;;42032:64;42024:73;;;;;;42121:16;:14;:16::i;:::-;42148:28;42179:24;42197:4;42179:9;:24::i;:::-;42218:12;;42148:55;;-1:-1:-1;42218:12:0;;:68;;;;;42283:3;42268:12;;42257:8;;:23;;;;:::i;:::-;:29;;;;:::i;:::-;42234:20;:52;42218:68;42214:320;;;42325:16;;;;;;;42324:17;:70;;;;-1:-1:-1;;;;;;42363:31:0;;;;;;:25;:31;;;;;;;;42362:32;42324:70;:112;;;;-1:-1:-1;42415:21:0;;;;;;;42324:112;42302:221;;;42471:36;42486:20;42471:14;:36::i;:::-;-1:-1:-1;;;;;42581:24:0;;42546:12;42581:24;;;:18;:24;;;;;;42561:4;;42581:24;;;:50;;-1:-1:-1;;;;;;42609:22:0;;;;;;:18;:22;;;;;;;;42581:50;42578:97;;;-1:-1:-1;42658:5:0;42578:97;-1:-1:-1;;;;;42690:22:0;;;;;;:16;:22;;;;;;;;42689:23;:44;;;;-1:-1:-1;42717:16:0;;;;;;;42716:17;42689:44;42685:120;;;42768:5;;42758:6;:15;;42750:43;;;;-1:-1:-1;;;42750:43:0;;14294:2:1;42750:43:0;;;14276:21:1;14333:2;14313:18;;;14306:30;-1:-1:-1;;;14352:18:1;;;14345:45;14407:18;;42750:43:0;14092:339:1;42750:43:0;-1:-1:-1;;;;;42820:24:0;;;;;;:20;:24;;;;;;;;42819:25;:59;;;;-1:-1:-1;;;;;;42849:29:0;;;;;;:25;:29;;;;;;;;42848:30;42819:59;42815:168;;;42929:13;;42919:6;42903:13;42913:2;42903:9;:13::i;:::-;:22;;;;:::i;:::-;:39;;42895:76;;;;-1:-1:-1;;;42895:76:0;;14638:2:1;42895:76:0;;;14620:21:1;14677:2;14657:18;;;14650:30;14716:26;14696:18;;;14689:54;14760:18;;42895:76:0;14436:348:1;42895:76:0;42993:38;43008:4;43013:2;43016:6;43023:7;42993:14;:38::i;:::-;41670:1369;;41567:1472;;;:::o;5663:192::-;5749:7;5785:12;5777:6;;;;5769:29;;;;-1:-1:-1;;;5769:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5809:9:0;5821:5;5825:1;5821;:5;:::i;:::-;5809:17;5663:192;-1:-1:-1;;;;;5663:192:0:o;38772:163::-;38813:7;38834:15;38851;38870:19;:17;:19::i;:::-;38833:56;;-1:-1:-1;38833:56:0;-1:-1:-1;38907:20:0;38833:56;;38907:11;:20::i;:::-;38900:27;;;;38772:163;:::o;4760:181::-;4818:7;;4850:5;4854:1;4850;:5;:::i;:::-;4838:17;;4879:1;4874;:6;;4866:46;;;;-1:-1:-1;;;4866:46:0;;14991:2:1;4866:46:0;;;14973:21:1;15030:2;15010:18;;;15003:30;15069:29;15049:18;;;15042:57;15116:18;;4866:46:0;14789:351:1;17557:211:0;17701:58;;;-1:-1:-1;;;;;15337:32:1;;17701:58:0;;;15319:51:1;15386:18;;;;15379:34;;;17701:58:0;;;;;;;;;;15292:18:1;;;;17701:58:0;;;;;;;;-1:-1:-1;;;;;17701:58:0;-1:-1:-1;;;17701:58:0;;;17674:86;;17694:5;;17674:19;:86::i;:::-;17557:211;;;:::o;37573:419::-;37632:7;37641;37650;37659;37668;37677;37698:23;37723:12;37737:18;37759:20;37771:7;37759:11;:20::i;:::-;37697:82;;;;;;37791:15;37808:23;37833:12;37849:50;37861:7;37870:4;37876:10;37888;:8;:10::i;:::-;37849:11;:50::i;:::-;37790:109;;;;-1:-1:-1;37790:109:0;;-1:-1:-1;37950:15:0;;-1:-1:-1;37967:4:0;;-1:-1:-1;37973:10:0;;-1:-1:-1;37573:419:0;;-1:-1:-1;;;;;37573:419:0:o;22993:191::-;23067:16;23086:6;;-1:-1:-1;;;;;23103:17:0;;;-1:-1:-1;;;;;;23103:17:0;;;;;;23136:40;;23086:6;;;;;;;23136:40;;23067:16;23136:40;23056:128;22993:191;:::o;7689:278::-;7775:7;7810:12;7803:5;7795:28;;;;-1:-1:-1;;;7795:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7834:9:0;7846:5;7850:1;7846;:5;:::i;29360:347::-;29407:10;29419;29450:11;;;;;;;;;-1:-1:-1;;;;;29450:11:0;-1:-1:-1;;;;;29435:39:0;;:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29406:70;-1:-1:-1;;;;;29406:70:0;;;-1:-1:-1;;;;;29406:70:0;;;29500:22;29510:11;;;;;;;;;-1:-1:-1;;;;;29510:11:0;29500:9;:22::i;:::-;29489:8;:33;29668:6;;;;;:16;;;29683:1;29678:2;:6;29668:16;:31;;29694:5;29668:31;;;29687:4;29668:31;29653:12;:46;;-1:-1:-1;;29653:46:0;;;;;;;;;;-1:-1:-1;;29360:347:0:o;43047:1476::-;26772:16;:23;;-1:-1:-1;;26772:23:0;;;;;43208:17:::1;::::0;43180:22:::1;::::0;43153::::1;::::0;26772:23;;43153:73:::1;::::0;43208:17;;43153:50:::1;::::0;:26:::1;:50::i;:::-;:54:::0;::::1;:73::i;:::-;43132:94:::0;-1:-1:-1;43241:15:0;43237:28:::1;;43258:7;;;43237:28;43275:20;43298:64;43351:10;43298:48;43323:22;;43298:20;:24;;:48;;;;:::i;:::-;:52:::0;::::1;:64::i;:::-;43275:87;;43373:20;43396:64;43449:10;43396:48;43421:22;;43396:20;:24;;:48;;;;:::i;:64::-;43373:87:::0;-1:-1:-1;43471:15:0::1;43373:87:::0;43489:35:::1;43512:12:::0;43489:20;:35:::1;:::i;:::-;:50;;;;:::i;:::-;43471:68:::0;-1:-1:-1;43550:12:0::1;43565:19;:12:::0;43582:1:::1;43565:16;:19::i;:::-;43550:34:::0;-1:-1:-1;43595:17:0::1;43615:22;:12:::0;43550:34;43615:16:::1;:22::i;:::-;43595:42:::0;-1:-1:-1;43675:21:0::1;43650:22;43724;:4:::0;43733:12;43724:8:::1;:22::i;:::-;43707:39;;43757:24;43774:6;43757:16;:24::i;:::-;43794:18;43815:41;:21;43841:14:::0;43815:25:::1;:41::i;:::-;43794:62:::0;-1:-1:-1;43867:22:0::1;43892:40;43925:6:::0;43892:28:::1;43794:62:::0;43907:12;43892:14:::1;:28::i;:40::-;43951:15;::::0;43943:49:::1;::::0;43867:65;;-1:-1:-1;;;;;;43951:15:0::1;::::0;43943:49;::::1;;;::::0;43867:65;;43951:15:::1;43943:49:::0;43951:15;43943:49;43867:65;43951:15;43943:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;44003:28:0::1;44017:14:::0;44003:28;::::1;:::i;:::-;;;44044:35;44057:9;44068:10;44044:12;:35::i;:::-;44090:27;44109:7;44090:18;:27::i;:::-;44168:22;;44153:12;:37;:82;;44234:1;44153:82;;;44219:12;44194:22;;:37;;;;:::i;:::-;44128:22;:107:::0;44286:22:::1;::::0;44271:37;::::1;:82;;44352:1;44271:82;;;44337:12;44312:22;;:37;;;;:::i;:::-;44246:22;:107:::0;44394:17:::1;::::0;44384:27;::::1;:62;;44445:1;44384:62;;;44435:7;44415:17;;:27;;;;:::i;:::-;44364:17;:82:::0;44472:43:::1;::::0;;16274:25:1;;;16330:2;16315:18;;16308:34;;;16358:18;;;16351:34;;;44472:43:0::1;::::0;16262:2:1;16247:18;44472:43:0::1;;;;;;;43121:1402;;;;;;;;;;26806:1;-1:-1:-1::0;26818:16:0;:24;;-1:-1:-1;;26818:24:0;;;43047:1476::o;45570:835::-;45681:8;;;;45677:107;;-1:-1:-1;;;;;45699:26:0;;;;;;:18;:26;;;;;;;;;:59;;-1:-1:-1;;;;;;45729:29:0;;;;;;:18;:29;;;;;;;;45699:59;45691:93;;;;-1:-1:-1;;;45691:93:0;;16598:2:1;45691:93:0;;;16580:21:1;16637:2;16617:18;;;16610:30;-1:-1:-1;;;16656:18:1;;;16649:51;16717:18;;45691:93:0;16396:345:1;45691:93:0;45795:36;45813:6;45821:9;45795:17;:36::i;:::-;45846:7;45842:27;;45855:14;:12;:14::i;:::-;-1:-1:-1;;;;;45886:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;45910:22:0;;;;;;:11;:22;;;;;;;;45909:23;45886:46;45882:467;;;45949:48;45971:6;45979:9;45990:6;45949:21;:48::i;:::-;45882:467;;;-1:-1:-1;;;;;46020:19:0;;;;;;:11;:19;;;;;;;;46019:20;:46;;;;-1:-1:-1;;;;;;46043:22:0;;;;;;:11;:22;;;;;;;;46019:46;46015:334;;;46082:46;46102:6;46110:9;46121:6;46082:19;:46::i;46015:334::-;-1:-1:-1;;;;;46150:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;46173:22:0;;;;;;:11;:22;;;;;;;;46150:45;46146:203;;;46212:48;46234:6;46242:9;46253:6;46212:21;:48::i;46146:203::-;46293:44;46311:6;46319:9;46330:6;46293:17;:44::i;:::-;46373:7;46369:28;;46382:15;40705;;40695:7;:25;40747:21;;40731:13;:37;40795:21;;40779:13;:37;40838:16;;40827:8;:27;40651:211;38943:561;39040:7;;39076;;38993;;;;;39100:289;39124:9;:16;39120:20;;39100:289;;;39190:7;39166;:21;39174:9;39184:1;39174:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;39174:12:0;39166:21;;;;;;;;;;;;;:31;;:66;;;39225:7;39201;:21;39209:9;39219:1;39209:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;39209:12:0;39201:21;;;;;;;;;;;;;:31;39166:66;39162:97;;;39242:7;;39251;;39234:25;;;;;;;38943:561;;:::o;39162:97::-;39284:34;39296:7;:21;39304:9;39314:1;39304:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;39304:12:0;39296:21;;;;;;;;;;;;;39284:7;;:11;:34::i;:::-;39274:44;;39343:34;39355:7;:21;39363:9;39373:1;39363:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;39363:12:0;39355:21;;;;;;;;;;;;;39343:7;;:11;:34::i;:::-;39333:44;-1:-1:-1;39142:3:0;;;;:::i;:::-;;;;39100:289;;;-1:-1:-1;39425:7:0;;39413;;:20;;:11;:20::i;:::-;39403:7;:30;39399:61;;;39443:7;;39452;;39435:25;;;;;;38943:561;;:::o;39399:61::-;39479:7;;39488;;-1:-1:-1;38943:561:0;-1:-1:-1;38943:561:0:o;20130:716::-;20554:23;20580:69;20608:4;20580:69;;;;;;;;;;;;;;;;;20588:5;-1:-1:-1;;;;;20580:27:0;;;:69;;;;;:::i;:::-;20664:17;;20554:95;;-1:-1:-1;20664:21:0;20660:179;;20761:10;20750:30;;;;;;;;;;;;:::i;:::-;20742:85;;;;-1:-1:-1;;;20742:85:0;;17198:2:1;20742:85:0;;;17180:21:1;17237:2;17217:18;;;17210:30;17276:34;17256:18;;;17249:62;-1:-1:-1;;;17327:18:1;;;17320:40;17377:19;;20742:85:0;16996:406:1;38000:327:0;38060:7;38069;38078;38098:12;38113:24;38129:7;38113:15;:24::i;:::-;38098:39;;38148:18;38169:27;38188:7;38169:18;:27::i;:::-;38148:48;-1:-1:-1;38207:23:0;38233:33;38148:48;38233:17;:7;38245:4;38233:11;:17::i;:::-;:21;;:33::i;:::-;38207:59;38302:4;;-1:-1:-1;38308:10:0;;-1:-1:-1;38000:327:0;;-1:-1:-1;;;38000:327:0:o;38335:429::-;38450:7;;;;38506:24;:7;38518:11;38506;:24::i;:::-;38488:42;-1:-1:-1;38541:12:0;38556:21;:4;38565:11;38556:8;:21::i;:::-;38541:36;-1:-1:-1;38588:18:0;38609:27;:10;38624:11;38609:14;:27::i;:::-;38588:48;-1:-1:-1;38647:23:0;38673:33;38588:48;38673:17;:7;38685:4;38673:11;:17::i;:33::-;38725:7;;;;-1:-1:-1;38751:4:0;;-1:-1:-1;38335:429:0;;-1:-1:-1;;;;;;;38335:429:0:o;6114:471::-;6172:7;6417:6;6413:47;;-1:-1:-1;6447:1:0;6440:8;;6413:47;6472:9;6484:5;6488:1;6484;:5;:::i;:::-;6472:17;-1:-1:-1;6517:1:0;6508:5;6512:1;6472:17;6508:5;:::i;:::-;:10;6500:56;;;;-1:-1:-1;;;6500:56:0;;17609:2:1;6500:56:0;;;17591:21:1;17648:2;17628:18;;;17621:30;17687:34;17667:18;;;17660:62;-1:-1:-1;;;17738:18:1;;;17731:31;17779:19;;6500:56:0;17407:397:1;44531:475:0;44621:16;;;44635:1;44621:16;;;;;;;;44597:21;;44621:16;;;;;;;;;;-1:-1:-1;44621:16:0;44597:40;;44666:4;44648;44653:1;44648:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44648:23:0;;;-1:-1:-1;;;;;44648:23:0;;;;;44692:15;-1:-1:-1;;;;;44692:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44682:4;44687:1;44682:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44682:32:0;;;-1:-1:-1;;;;;44682:32:0;;;;;44727:62;44744:4;44759:15;44777:11;44727:8;:62::i;:::-;44802:196;;-1:-1:-1;;;44802:196:0;;-1:-1:-1;;;;;44802:15:0;:66;;;;:196;;44883:11;;44909:1;;44925:4;;44952;;44972:15;;44802:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44586:420;44531:475;:::o;45014:370::-;45095:62;45112:4;45127:15;45145:11;45095:8;:62::i;:::-;45168:15;-1:-1:-1;;;;;45168:31:0;;45207:9;45240:4;45260:11;45286:1;45302;45318:7;21769;21796:6;-1:-1:-1;;;;;21796:6:0;;21723:87;45318:7;45168:198;;;;;;-1:-1:-1;;;;;;45168:198:0;;;-1:-1:-1;;;;;19541:15:1;;;45168:198:0;;;19523:34:1;19573:18;;;19566:34;;;;19616:18;;;19609:34;;;;19659:18;;;19652:34;19723:15;;;19702:19;;;19695:44;45340:15:0;19755:19:1;;;19748:35;19457:19;;45168:198:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;45392:170::-;45461:12;;45457:98;;45489:54;45512:4;25006:42;45529:7;45537:5;45489:14;:54::i;46413:722::-;-1:-1:-1;;;;;46489:31:0;;;;;;:25;:31;;;;;;;;46485:643;;;46547:10;;46537:7;:20;46588:16;;46572:13;:32;46635:16;;46619:13;:32;46678:11;;46667:8;:22;33293:327:::1;33069:558:::0;:::o;46485:643::-;-1:-1:-1;;;;;46711:29:0;;;;;;:25;:29;;;;;;;;46707:421;;;46767:11;;46757:7;:21;46809:17;;46793:13;:33;46857:17;;46841:13;:33;46900:12;;46889:8;:23;33293:327:::1;33069:558:::0;:::o;46707:421::-;46955:15;;46945:7;:25;47001:21;;46985:13;:37;47053:21;;47037:13;:37;47100:16;;47089:8;:27;46413:722;;:::o;40221:418::-;40267:7;;:12;:34;;;;-1:-1:-1;40283:13:0;;:18;40267:34;:56;;;;-1:-1:-1;40305:13:0;;:18;40267:56;:73;;;;-1:-1:-1;40327:8:0;;:13;40267:73;40264:85;;;40221:418::o;40264:85::-;40387:7;;;40369:15;:25;40429:13;;;40405:21;:37;40477:13;;;40453:21;:37;40520:8;;;40501:16;:27;-1:-1:-1;40541:11:0;;;;40563:17;;;;40591;;;40619:12;40221:418::o;48477:681::-;48580:15;48597:23;48622:12;48636:23;48661:12;48675:18;48697:19;48708:7;48697:10;:19::i;:::-;-1:-1:-1;;;;;48745:15:0;;;;;;:7;:15;;;;;;48579:137;;-1:-1:-1;48579:137:0;;-1:-1:-1;48579:137:0;;-1:-1:-1;48579:137:0;-1:-1:-1;48579:137:0;-1:-1:-1;48579:137:0;-1:-1:-1;48745:28:0;;48765:7;48745:19;:28::i;:::-;-1:-1:-1;;;;;48727:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48802:7;:15;;;;:28;;48822:7;48802:19;:28::i;:::-;-1:-1:-1;;;;;48784:15:0;;;;;;;:7;:15;;;;;;:46;;;;48862:18;;;;;;;:39;;48885:15;48862:22;:39::i;:::-;-1:-1:-1;;;;;48841:18:0;;;;;;:7;:18;;;;;:60;48915:26;48930:10;48915:14;:26::i;:::-;48952:23;48964:4;48970;48952:11;:23::i;:::-;48986:25;49000:10;48986:13;:25::i;:::-;49026:14;;49022:68;;49047:43;;1667:25:1;;;49072:4:0;;-1:-1:-1;;;;;49047:43:0;;;;;1655:2:1;1640:18;49047:43:0;;;;;;;49022:68;49123:9;-1:-1:-1;;;;;49106:44:0;49115:6;-1:-1:-1;;;;;49106:44:0;;49134:15;49106:44;;;;1667:25:1;;1655:2;1640:18;;1521:177;49106:44:0;;;;;;;;48568:590;;;;;;48477:681;;;:::o;47768:701::-;47869:15;47886:23;47911:12;47925:23;47950:12;47964:18;47986:19;47997:7;47986:10;:19::i;:::-;-1:-1:-1;;;;;48034:15:0;;;;;;:7;:15;;;;;;47868:137;;-1:-1:-1;47868:137:0;;-1:-1:-1;47868:137:0;;-1:-1:-1;47868:137:0;-1:-1:-1;47868:137:0;-1:-1:-1;47868:137:0;-1:-1:-1;48034:28:0;;47868:137;48034:19;:28::i;:::-;-1:-1:-1;;;;;48016:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;48094:18;;;;;:7;:18;;;;;:39;;48117:15;48094:22;:39::i;:::-;-1:-1:-1;;;;;48073:18:0;;;;;;:7;:18;;;;;;;;:60;;;;48165:7;:18;;;;:39;;48188:15;48165:22;:39::i;33635:757::-;33738:15;33755:23;33780:12;33794:23;33819:12;33833:18;33855:19;33866:7;33855:10;:19::i;:::-;-1:-1:-1;;;;;33903:15:0;;;;;;:7;:15;;;;;;33737:137;;-1:-1:-1;33737:137:0;;-1:-1:-1;33737:137:0;;-1:-1:-1;33737:137:0;-1:-1:-1;33737:137:0;-1:-1:-1;33737:137:0;-1:-1:-1;33903:28:0;;33923:7;33903:19;:28::i;:::-;-1:-1:-1;;;;;33885:15:0;;;;;;:7;:15;;;;;;;;:46;;;;33960:7;:15;;;;:28;;33980:7;33960:19;:28::i;47143:617::-;47242:15;47259:23;47284:12;47298:23;47323:12;47337:18;47359:19;47370:7;47359:10;:19::i;:::-;-1:-1:-1;;;;;47407:15:0;;;;;;:7;:15;;;;;;47241:137;;-1:-1:-1;47241:137:0;;-1:-1:-1;47241:137:0;;-1:-1:-1;47241:137:0;-1:-1:-1;47241:137:0;-1:-1:-1;47241:137:0;-1:-1:-1;47407:28:0;;47241:137;47407:19;:28::i;12973:229::-;13110:12;13142:52;13164:6;13172:4;13178:1;13181:12;13142:21;:52::i;:::-;13135:59;12973:229;-1:-1:-1;;;;12973:229:0:o;39883:140::-;39947:7;39974:41;39999:15;;39974:20;39986:7;;39974;:11;;:20;;;;:::i;40031:182::-;40098:7;40125:80;40189:15;;40125:59;40137:46;40174:8;;40137:32;40155:13;;40137;;:17;;:32;;;;:::i;:46::-;40125:7;;:11;:59::i;39516:355::-;39579:19;39602:10;:8;:10::i;:::-;39579:33;-1:-1:-1;39623:18:0;39644:27;:10;39579:33;39644:14;:27::i;:::-;39723:4;39707:22;;;;:7;:22;;;;;;39623:48;;-1:-1:-1;39707:38:0;;39623:48;39707:26;:38::i;:::-;39698:4;39682:22;;;;:7;:22;;;;;;;;:63;;;;39759:11;:26;;;;;;39756:107;;;39841:4;39825:22;;;;:7;:22;;;;;;:38;;39852:10;39825:26;:38::i;:::-;39816:4;39800:22;;;;:7;:22;;;;;:63;39568:303;;39516:355;:::o;37418:147::-;37496:7;;:17;;37508:4;37496:11;:17::i;:::-;37486:7;:27;37537:10;;:20;;37552:4;37537:14;:20::i;:::-;37524:10;:33;-1:-1:-1;;37418:147:0:o;49166:487::-;49228:18;49249:46;49286:8;;49249:32;49267:13;;49249;;:17;;:32;;;;:::i;:46::-;49228:67;-1:-1:-1;49310:15:0;49306:28;;49327:7;49166:487;:::o;49306:28::-;49369:73;49396:45;49430:10;49396:29;49411:13;;49396:10;:14;;:29;;;;:::i;:45::-;49369:22;;;:26;:73::i;:::-;49344:22;:98;49520:13;;49478:73;;49505:45;;49539:10;;49505:29;;:10;;:14;:29::i;:45::-;49478:22;;;:26;:73::i;:::-;49453:22;:98;49619:8;;49582:63;;49604:40;;49633:10;;49604:24;;:10;;:14;:24::i;:40::-;49582:17;;;:21;:63::i;:::-;49562:17;:83;-1:-1:-1;;49166:487:0:o;14093:510::-;14263:12;14321:5;14296:21;:30;;14288:81;;;;-1:-1:-1;;;14288:81:0;;20307:2:1;14288:81:0;;;20289:21:1;20346:2;20326:18;;;20319:30;20385:34;20365:18;;;20358:62;-1:-1:-1;;;20436:18:1;;;20429:36;20482:19;;14288:81:0;20105:402:1;14288:81:0;-1:-1:-1;;;;;10523:19:0;;;14380:60;;;;-1:-1:-1;;;14380:60:0;;20714:2:1;14380:60:0;;;20696:21:1;20753:2;20733:18;;;20726:30;20792:31;20772:18;;;20765:59;20841:18;;14380:60:0;20512:353:1;14380:60:0;14454:12;14468:23;14495:6;-1:-1:-1;;;;;14495:11:0;14514:5;14521:4;14495:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14453:73;;;;14544:51;14561:7;14570:10;14582:12;14544:16;:51::i;:::-;14537:58;14093:510;-1:-1:-1;;;;;;;14093:510:0:o;16779:712::-;16929:12;16958:7;16954:530;;;-1:-1:-1;16989:10:0;16982:17;;16954:530;17103:17;;:21;17099:374;;17301:10;17295:17;17362:15;17349:10;17345:2;17341:19;17334:44;17099:374;17444:12;17437:20;;-1:-1:-1;;;17437:20:0;;;;;;;;:::i;222:258:1:-;294:1;304:113;318:6;315:1;312:13;304:113;;;394:11;;;388:18;375:11;;;368:39;340:2;333:10;304:113;;;435:6;432:1;429:13;426:48;;;-1:-1:-1;;470:1:1;452:16;;445:27;222:258::o;485:383::-;634:2;623:9;616:21;597:4;666:6;660:13;709:6;704:2;693:9;689:18;682:34;725:66;784:6;779:2;768:9;764:18;759:2;751:6;747:15;725:66;:::i;:::-;852:2;831:15;-1:-1:-1;;827:29:1;812:45;;;;859:2;808:54;;485:383;-1:-1:-1;;485:383:1:o;873:131::-;-1:-1:-1;;;;;948:31:1;;938:42;;928:70;;994:1;991;984:12;1009:315;1077:6;1085;1138:2;1126:9;1117:7;1113:23;1109:32;1106:52;;;1154:1;1151;1144:12;1106:52;1193:9;1180:23;1212:31;1237:5;1212:31;:::i;:::-;1262:5;1314:2;1299:18;;;;1286:32;;-1:-1:-1;;;1009:315:1:o;1937:385::-;2023:6;2031;2039;2047;2100:3;2088:9;2079:7;2075:23;2071:33;2068:53;;;2117:1;2114;2107:12;2068:53;-1:-1:-1;;2140:23:1;;;2210:2;2195:18;;2182:32;;-1:-1:-1;2261:2:1;2246:18;;2233:32;;2312:2;2297:18;2284:32;;-1:-1:-1;1937:385:1;-1:-1:-1;1937:385:1:o;2327:247::-;2386:6;2439:2;2427:9;2418:7;2414:23;2410:32;2407:52;;;2455:1;2452;2445:12;2407:52;2494:9;2481:23;2513:31;2538:5;2513:31;:::i;2579:456::-;2656:6;2664;2672;2725:2;2713:9;2704:7;2700:23;2696:32;2693:52;;;2741:1;2738;2731:12;2693:52;2780:9;2767:23;2799:31;2824:5;2799:31;:::i;:::-;2849:5;-1:-1:-1;2906:2:1;2891:18;;2878:32;2919:33;2878:32;2919:33;:::i;:::-;2579:456;;2971:7;;-1:-1:-1;;;3025:2:1;3010:18;;;;2997:32;;2579:456::o;3040:180::-;3099:6;3152:2;3140:9;3131:7;3127:23;3123:32;3120:52;;;3168:1;3165;3158:12;3120:52;-1:-1:-1;3191:23:1;;3040:180;-1:-1:-1;3040:180:1:o;3414:401::-;3495:6;3503;3556:2;3544:9;3535:7;3531:23;3527:32;3524:52;;;3572:1;3569;3562:12;3524:52;3611:9;3598:23;3630:31;3655:5;3630:31;:::i;:::-;3680:5;-1:-1:-1;3737:2:1;3722:18;;3709:32;3750:33;3709:32;3750:33;:::i;:::-;3802:7;3792:17;;;3414:401;;;;;:::o;3820:118::-;3906:5;3899:13;3892:21;3885:5;3882:32;3872:60;;3928:1;3925;3918:12;3943:309;4008:6;4016;4069:2;4057:9;4048:7;4044:23;4040:32;4037:52;;;4085:1;4082;4075:12;4037:52;4121:9;4108:23;4098:33;;4181:2;4170:9;4166:18;4153:32;4194:28;4216:5;4194:28;:::i;4517:382::-;4582:6;4590;4643:2;4631:9;4622:7;4618:23;4614:32;4611:52;;;4659:1;4656;4649:12;4611:52;4698:9;4685:23;4717:31;4742:5;4717:31;:::i;:::-;4767:5;-1:-1:-1;4824:2:1;4809:18;;4796:32;4837:30;4796:32;4837:30;:::i;4904:241::-;4960:6;5013:2;5001:9;4992:7;4988:23;4984:32;4981:52;;;5029:1;5026;5019:12;4981:52;5068:9;5055:23;5087:28;5109:5;5087:28;:::i;5543:380::-;5622:1;5618:12;;;;5665;;;5686:61;;5740:4;5732:6;5728:17;5718:27;;5686:61;5793:2;5785:6;5782:14;5762:18;5759:38;5756:161;;;5839:10;5834:3;5830:20;5827:1;5820:31;5874:4;5871:1;5864:15;5902:4;5899:1;5892:15;5756:161;;5543:380;;;:::o;5928:356::-;6130:2;6112:21;;;6149:18;;;6142:30;6208:34;6203:2;6188:18;;6181:62;6275:2;6260:18;;5928:356::o;6289:127::-;6350:10;6345:3;6341:20;6338:1;6331:31;6381:4;6378:1;6371:15;6405:4;6402:1;6395:15;6421:128;6461:3;6492:1;6488:6;6485:1;6482:13;6479:39;;;6498:18;;:::i;:::-;-1:-1:-1;6534:9:1;;6421:128::o;7724:127::-;7785:10;7780:3;7776:20;7773:1;7766:31;7816:4;7813:1;7806:15;7840:4;7837:1;7830:15;7856:125;7896:4;7924:1;7921;7918:8;7915:34;;;7929:18;;:::i;:::-;-1:-1:-1;7966:9:1;;7856:125::o;7986:127::-;8047:10;8042:3;8038:20;8035:1;8028:31;8078:4;8075:1;8068:15;8102:4;8099:1;8092:15;8118:135;8157:3;-1:-1:-1;;8178:17:1;;8175:43;;;8198:18;;:::i;:::-;-1:-1:-1;8245:1:1;8234:13;;8118:135::o;8258:356::-;8460:2;8442:21;;;8479:18;;;8472:30;8538:34;8533:2;8518:18;;8511:62;8605:2;8590:18;;8258:356::o;8619:184::-;8689:6;8742:2;8730:9;8721:7;8717:23;8713:32;8710:52;;;8758:1;8755;8748:12;8710:52;-1:-1:-1;8781:16:1;;8619:184;-1:-1:-1;8619:184:1:o;9929:422::-;10018:1;10061:5;10018:1;10075:270;10096:7;10086:8;10083:21;10075:270;;;10155:4;10151:1;10147:6;10143:17;10137:4;10134:27;10131:53;;;10164:18;;:::i;:::-;10214:7;10204:8;10200:22;10197:55;;;10234:16;;;;10197:55;10313:22;;;;10273:15;;;;10075:270;;;10079:3;9929:422;;;;;:::o;10356:806::-;10405:5;10435:8;10425:80;;-1:-1:-1;10476:1:1;10490:5;;10425:80;10524:4;10514:76;;-1:-1:-1;10561:1:1;10575:5;;10514:76;10606:4;10624:1;10619:59;;;;10692:1;10687:130;;;;10599:218;;10619:59;10649:1;10640:10;;10663:5;;;10687:130;10724:3;10714:8;10711:17;10708:43;;;10731:18;;:::i;:::-;-1:-1:-1;;10787:1:1;10773:16;;10802:5;;10599:218;;10901:2;10891:8;10888:16;10882:3;10876:4;10873:13;10869:36;10863:2;10853:8;10850:16;10845:2;10839:4;10836:12;10832:35;10829:77;10826:159;;;-1:-1:-1;10938:19:1;;;10970:5;;10826:159;11017:34;11042:8;11036:4;11017:34;:::i;:::-;11087:6;11083:1;11079:6;11075:19;11066:7;11063:32;11060:58;;;11098:18;;:::i;:::-;11136:20;;10356:806;-1:-1:-1;;;10356:806:1:o;11167:140::-;11225:5;11254:47;11295:4;11285:8;11281:19;11275:4;11254:47;:::i;11312:168::-;11352:7;11418:1;11414;11410:6;11406:14;11403:1;11400:21;11395:1;11388:9;11381:17;11377:45;11374:71;;;11425:18;;:::i;:::-;-1:-1:-1;11465:9:1;;11312:168::o;13870:217::-;13910:1;13936;13926:132;;13980:10;13975:3;13971:20;13968:1;13961:31;14015:4;14012:1;14005:15;14043:4;14040:1;14033:15;13926:132;-1:-1:-1;14072:9:1;;13870:217::o;15424:188::-;15503:13;;-1:-1:-1;;;;;15545:42:1;;15535:53;;15525:81;;15602:1;15599;15592:12;15525:81;15424:188;;;:::o;15617:450::-;15704:6;15712;15720;15773:2;15761:9;15752:7;15748:23;15744:32;15741:52;;;15789:1;15786;15779:12;15741:52;15812:40;15842:9;15812:40;:::i;:::-;15802:50;;15871:49;15916:2;15905:9;15901:18;15871:49;:::i;:::-;15861:59;;15963:2;15952:9;15948:18;15942:25;16007:10;16000:5;15996:22;15989:5;15986:33;15976:61;;16033:1;16030;16023:12;15976:61;16056:5;16046:15;;;15617:450;;;;;:::o;16746:245::-;16813:6;16866:2;16854:9;16845:7;16841:23;16837:32;16834:52;;;16882:1;16879;16872:12;16834:52;16914:9;16908:16;16933:28;16955:5;16933:28;:::i;17941:251::-;18011:6;18064:2;18052:9;18043:7;18039:23;18035:32;18032:52;;;18080:1;18077;18070:12;18032:52;18112:9;18106:16;18131:31;18156:5;18131:31;:::i;18197:980::-;18459:4;18507:3;18496:9;18492:19;18538:6;18527:9;18520:25;18564:2;18602:6;18597:2;18586:9;18582:18;18575:34;18645:3;18640:2;18629:9;18625:18;18618:31;18669:6;18704;18698:13;18735:6;18727;18720:22;18773:3;18762:9;18758:19;18751:26;;18812:2;18804:6;18800:15;18786:29;;18833:1;18843:195;18857:6;18854:1;18851:13;18843:195;;;18922:13;;-1:-1:-1;;;;;18918:39:1;18906:52;;19013:15;;;;18978:12;;;;18954:1;18872:9;18843:195;;;-1:-1:-1;;;;;;;19094:32:1;;;;19089:2;19074:18;;19067:60;-1:-1:-1;;;19158:3:1;19143:19;19136:35;19055:3;18197:980;-1:-1:-1;;;18197:980:1:o;19794:306::-;19882:6;19890;19898;19951:2;19939:9;19930:7;19926:23;19922:32;19919:52;;;19967:1;19964;19957:12;19919:52;19996:9;19990:16;19980:26;;20046:2;20035:9;20031:18;20025:25;20015:35;;20090:2;20079:9;20075:18;20069:25;20059:35;;19794:306;;;;;:::o;20870:274::-;20999:3;21037:6;21031:13;21053:53;21099:6;21094:3;21087:4;21079:6;21075:17;21053:53;:::i;:::-;21122:16;;;;;20870:274;-1:-1:-1;;20870:274:1:o

Swarm Source

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