ETH Price: $3,391.77 (-1.60%)
Gas: 1 Gwei

Token

Intellexus (IXC)
 

Overview

Max Total Supply

100,000,000 IXC

Holders

85

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
341,782.311634787 IXC

Value
$0.00
0x4dfbb14040c6840884a3acf135c5ff6976a46406
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:
Intellexus

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-11
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.24;

/* @title The Intellective Collective 
 * More info at: https://www.intellexuscollective.com
 * 
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 */

abstract contract Context {
    /// @dev Returns the address of the current message sender, which is available for internal functions.
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

/// @title ERC-20 Interface
/// @notice Interface for the compliance with the ERC-20 standard for fungible tokens.
interface IERC20 {
    /// @dev Returns the total token supply.
    function totalSupply() external view returns (uint256);

    /// @dev Returns the account balance of another account with address `account`.
    function balanceOf(address account) external view returns (uint256);

    /// @dev Transfers `amount` tokens to address `recipient`, and MUST fire the `Transfer` event.
    function transfer(address recipient, uint256 amount) external returns (bool);

    /// @dev Returns the remaining number of tokens that the `spender` will be allowed to spend on behalf of `owner`.
    function allowance(address owner, address spender) external view returns (uint256);

    /// @dev Sets `amount` as the allowance of `spender` over the caller's tokens, and MUST fire the `Approval` event.
    function approve(address spender, uint256 amount) external returns (bool);

    /// @dev Moves `amount` tokens from `sender` to `recipient` using the allowance mechanism and MUST fire the `Transfer` event.
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /// @notice Emitted when `value` tokens are moved from one account (`from`) to another (`to`).
    /// @dev MUST trigger when tokens are transferred, including zero value transfers.
    event Transfer(address indexed from, address indexed to, uint256 value);

    /// @notice Emitted when the allowance of a `spender` for an `owner` is set by a call to `approve`.
    /// @dev MUST trigger on any successful call to `approve`.
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

/**
 * @title Ownable
 * @dev A contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;

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

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

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

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

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

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

/**
 * @title IUniswapV2Factory
 * @dev Interface for Uniswap V2 Factory.
 */
interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

/**
 * @title IUniswapV2Router02
 * @dev Interface for Uniswap V2 Router.
 */
interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);
}

/**
 * @title Intellexus Token Contract
 * @dev Implements the {IERC20} interface with additional features such as ownership and fee management.
 */
contract Intellexus is Context, IERC20, Ownable {
    string private constant _name = "Intellexus";
    string private constant _symbol = "IXC";
    uint8 private constant _decimals = 9;

    mapping(address => uint256) private _rOwned; // Reflective tokens owned by each account
    mapping(address => uint256) private _tOwned; // Total tokens owned by each account, including reflections
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee; // Accounts excluded from fee
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 100000000 * 10**9; // Total supply
    uint256 private _rTotal = (MAX - (MAX % _tTotal)); // Total reflective tokens
    uint256 private _tFeeTotal; // Total fees
    uint256 private _redisFeeOnBuy = 0; // Reflection fee on buy
    uint256 private _taxFeeOnBuy = 0; // Tax fee on buy
    uint256 private _redisFeeOnSell = 0; // Reflection fee on sell
    uint256 private _taxFeeOnSell = 0; // Tax fee on sell

    // Original Fee
    uint256 private _redisFee = _redisFeeOnSell; // Current reflection fee
    uint256 private _taxFee = _taxFeeOnSell; // Current tax fee

    uint256 private _previousredisFee = _redisFee; // Previous reflection fee for restoring after transactions
    uint256 private _previoustaxFee = _taxFee; // Previous tax fee for restoring after transactions

    mapping (address => bool) public preTrader; // Pre-trading whitelist
    address payable private _developmentAddress = payable(0x47F84d4307FEEBDeDC7426931EE1068c4142CD37); // Treasury MultiSig
    address payable private _marketingAddress = payable(0x47F84d4307FEEBDeDC7426931EE1068c4142CD37); // Treasury MultiSig

    IUniswapV2Router02 public uniswapV2Router; // Uniswap V2 Router
    address public uniswapV2Pair; // Uniswap V2 Pair for this token

    bool private tradingOpen; // Flag to control trading status
    bool private inSwap = false; // Lock to prevent re-entrance in swap function
    bool private swapEnabled = true; // Flag to enable/disable swapping mechanism

    uint256 public _maxTxAmount = 1000000 * 10**9; // Max transaction amount
    uint256 public _maxWalletSize = 2000000 * 10**9; // Max wallet holding amount
    uint256 public _swapTokensAtAmount = 400000 * 10**9; // Amount at which swap is triggered

    event MaxTxAmountUpdated(uint256 _maxTxAmount); // Event for updating max transaction amount

    /**
     * @dev Locks the swap during the execution of swap functions to prevent re-entrancy.
     */
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    /**
     * @dev Sets the values for {_name}, {_symbol}, and {_decimals}.
     * Initializes the contract setting the deployer as the initial owner.
     */

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

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_developmentAddress] = true;
        _isExcludedFromFee[_marketingAddress] = true;

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

    /**
     * @dev Returns the name of the token.
     */
    function name() public pure returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the name.
     */
    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for display purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public pure override returns (uint256) {
        return _tTotal;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return tokenFromReflection(_rOwned[account]);
    }

    /**
     * @dev Transfers `amount` tokens from the caller's account to `recipient`.
     *
     * Emits a {Transfer} event.
     * Requirements:
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @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) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits an {Approval} event.
     * Requirements:
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @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.
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount);
        return true;
    }

    /**
     * @dev Internal function to convert a reflected amount to its corresponding token amount.
     * @param rAmount Amount of tokens in reflections.
     * @return uint256 The resulting token amount.
     */
    function tokenFromReflection(uint256 rAmount) private view returns (uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate = _getRate();
        return rAmount / currentRate;
    }

    /**
     * @dev Internal function to remove all fee settings temporarily. Used for special transactions
     * where fees should not be applied.
     */
    function removeAllFee() private {
        if (_redisFee == 0 && _taxFee == 0) return;

        _previousredisFee = _redisFee;
        _previoustaxFee = _taxFee;

        _redisFee = 0;
        _taxFee = 0;
    }

    /**
     * @dev Restores the fee settings to their previous values. Used after special transactions
     * to reinstate the fee mechanism.
     */
    function restoreAllFee() private {
        _redisFee = _previousredisFee;
        _taxFee = _previoustaxFee;
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is an internal function that emits an {Approval} event.
     * Requirements:
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) 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);
    }

    /**
    * @dev Internal function to handle token transfers, including business logic for trading restrictions,
    * fee application, and swapping tokens for ETH under specific conditions.
    * 
    * This function includes checks for trading status, max transaction amounts, wallet size restrictions,
    * and applies fees or swaps tokens based on the contract's state and the nature of the transfer.
    *
    * @param from The address sending the tokens.
    * @param to The address receiving the tokens.
    * @param amount The amount of tokens to be transferred.
    */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

    // Checks if the addresses are eligible for trading, enforcing restrictions before trading opens.
    if (from != owner() && to != owner() && !preTrader[from] && !preTrader[to]) {
        // Check if trading is open
        if (!tradingOpen) {
            require(preTrader[from], "TOKEN: This account cannot send tokens until trading is enabled");
        }

        require(amount <= _maxTxAmount, "TOKEN: Max Transaction Limit");

        // Ensure the recipient's balance does not exceed the maximum wallet size unless adding liquidity.
        if(to != uniswapV2Pair) {
            require(balanceOf(to) + amount <= _maxWalletSize, "TOKEN: Balance exceeds wallet size!");
        }

        // Logic to handle swapping tokens for ETH if certain conditions are met.
        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = contractTokenBalance >= _swapTokensAtAmount;

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

        if (canSwap && !inSwap && from != uniswapV2Pair && swapEnabled && !_isExcludedFromFee[from] && !_isExcludedFromFee[to]) {
            swapTokensForEth(contractTokenBalance);
            uint256 contractETHBalance = address(this).balance;
            if (contractETHBalance > 0) {
                sendETHToFee(address(this).balance);
            }
        }
    }

    bool takeFee = true;

    // Determine if the transaction should take a fee.
    if ((_isExcludedFromFee[from] || _isExcludedFromFee[to]) || (from != uniswapV2Pair && to != uniswapV2Pair)) {
        takeFee = false;
    } else {
        // Set Fee for Buys
        if(from == uniswapV2Pair && to != address(uniswapV2Router)) {
            _redisFee = _redisFeeOnBuy;
            _taxFee = _taxFeeOnBuy;
        }

        // Set Fee for Sells
        if (to == uniswapV2Pair && from != address(uniswapV2Router)) {
            _redisFee = _redisFeeOnSell;
            _taxFee = _taxFeeOnSell;
        }
    }

    _tokenTransfer(from, to, amount, takeFee);
}

    /**
    * @dev Swaps tokens for Ethereum (ETH) using the Uniswap protocol.
    * This function is marked with `lockTheSwap` to prevent reentrancy.
    * @param tokenAmount Amount of tokens to swap for ETH.
    */
    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // Minimum amount of tokens to accept in swap
            path,
            address(this), // Recipient of the ETH
            block.timestamp // Deadline for the swap
        );
    }

    /**
    * @dev Sends ETH to the marketing address.
    * @param amount Amount of ETH to send.
    */
    function sendETHToFee(uint256 amount) private {
        _marketingAddress.transfer(amount);
    }

    /**
    * @dev Enables or disables trading. Only callable by the contract owner.
    * @param _tradingOpen The new trading state.
    */
    function setTrading(bool _tradingOpen) public onlyOwner {
        tradingOpen = _tradingOpen;
    }

    /**
    * @dev Allows manual swapping of contract tokens for ETH. Restricted to development or marketing addresses.
    */
    function manualswap() external {
        require(_msgSender() == _developmentAddress || _msgSender() == _marketingAddress, "Only authorized addresses can initiate swap");
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    /**
    * @dev Allows manual sending of ETH to the marketing address. Restricted to development or marketing addresses.
    */
    function manualsend() external {
        require(_msgSender() == _developmentAddress || _msgSender() == _marketingAddress, "Only authorized addresses can send ETH");
        uint256 contractETHBalance = address(this).balance;
        sendETHToFee(contractETHBalance);
    }

    /**
    * @dev Handles token transfers, applying fee logic based on the transaction context.
    * @param sender The address sending the tokens.
    * @param recipient The address receiving the tokens.
    * @param amount The amount of tokens to transfer.
    * @param takeFee Specifies whether to apply transaction fees.
    */
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (!takeFee) removeAllFee();
        _transferStandard(sender, recipient, amount);
        if (!takeFee) restoreAllFee();
    }

    /**
    * @dev Performs the standard token transfer operation and applies fees.
    * @param sender The address sending the tokens.
    * @param recipient The address receiving the tokens.
    * @param tAmount The amount of tokens to transfer, including any fees.
    */
    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tTeam
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender] - rAmount;
        _rOwned[recipient] = _rOwned[recipient] + rTransferAmount;
        _takeTeam(tTeam);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    /**
    * @dev Allocates a portion of the transaction fees to the team's address.
    * @param tTeam The amount of tokens designated for the team.
    */
    function _takeTeam(uint256 tTeam) private {
        uint256 currentRate = _getRate();
        uint256 rTeam = tTeam * currentRate;
        _rOwned[address(this)] = _rOwned[address(this)] + rTeam;
    }


    /**
     * @dev Private function to reflect fees by decreasing `_rTotal` and increasing `_tFeeTotal`.
     * @param rFee Reflect fees in reflection tokens.
     * @param tFee Transaction fees in tokens to be added to total fees.
     */
    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal -= rFee;
        _tFeeTotal += tFee;
    }

    /**
     * @dev External payable function to receive ETH when sending directly to the contract's address.
     */
    receive() external payable {}

    /**
     * @dev Calculates and returns all necessary transaction values based on the transfer amount.
     * @param tAmount Amount of tokens to transfer.
     * @return rAmount Reflect amount.
     * @return rTransferAmount Reflect transfer amount.
     * @return rFee Reflect fee.
     * @return tTransferAmount Token transfer amount.
     * @return tFee Token fee.
     * @return tTeam Team tokens.
     */
    function _getValues(uint256 tAmount)
        private
        view
        returns (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tTeam
        )
    {
        (tTransferAmount, tFee, tTeam) = _getTValues(tAmount, _redisFee, _taxFee);
        uint256 currentRate = _getRate();
        (rAmount, rTransferAmount, rFee) = _getRValues(tAmount, tFee, tTeam, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam);
    }

    /**
     * @dev Calculates token transfer amount, fee, and team allocation.
     * @param tAmount Transfer amount.
     * @param redisFee Reflection fee.
     * @param taxFee Tax fee.
     * @return tTransferAmount Total transfer amount after fees.
     * @return tFee Total reflection fee.
     * @return tTeam Total team allocation.
     */
    function _getTValues(
        uint256 tAmount,
        uint256 redisFee,
        uint256 taxFee
    )
        private
        pure
        returns (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tTeam
        )
    {
        tFee = (tAmount * redisFee) / 100;
        tTeam = (tAmount * taxFee) / 100;
        tTransferAmount = tAmount - tFee - tTeam;
        return (tTransferAmount, tFee, tTeam);
    }

    /**
     * @dev Calculates reflect values based on token amounts and current rate.
     * @param tAmount Token amount.
     * @param tFee Token fee.
     * @param tTeam Team token allocation.
     * @param currentRate Current reflect rate.
     * @return rAmount Reflect amount.
     * @return rTransferAmount Reflect transfer amount.
     * @return rFee Reflect fee.
     */
    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tTeam,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee
        )
    {
        rAmount = tAmount * currentRate;
        rFee = tFee * currentRate;
        uint256 rTeam = tTeam * currentRate;
        rTransferAmount = rAmount - rFee - rTeam;
        return (rAmount, rTransferAmount, rFee);
    }

    /**
     * @dev Returns the current rate of tokens to reflections.
     * @return The current rate of tokens to reflections.
     */
    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply / tSupply;
    }

    /**
     * @dev Calculates the current supply of tokens and reflections, accounting for excluded accounts.
     * @return rSupply Current reflection supply.
     * @return tSupply Current token supply.
     */
    function _getCurrentSupply() private view returns (uint256 rSupply, uint256 tSupply) {
        rSupply = _rTotal;
        tSupply = _tTotal;
        // Here, additional logic could account for excluded accounts if necessary.
        return (rSupply, tSupply);
    }

    /**
     * @notice Sets the transaction fees for buys and sells.
     * @dev Only callable by the contract owner.
     * @param redisFeeOnBuy Reflection fee for buying transactions.
     * @param redisFeeOnSell Reflection fee for selling transactions.
     * @param taxFeeOnBuy Additional tax fee for buying transactions.
     * @param taxFeeOnSell Additional tax fee for selling transactions.
     */
    function setFee(uint256 redisFeeOnBuy, uint256 redisFeeOnSell, uint256 taxFeeOnBuy, uint256 taxFeeOnSell) public onlyOwner {
        _redisFeeOnBuy = redisFeeOnBuy;
        _redisFeeOnSell = redisFeeOnSell;
        _taxFeeOnBuy = taxFeeOnBuy;
        _taxFeeOnSell = taxFeeOnSell;
    }

    /**
     * @notice Sets the threshold amount of tokens required for swap and liquidity operations.
     * @dev Only callable by the contract owner.
     * @param swapTokensAtAmount The minimum token amount for swaps to occur.
     */
    function setMinSwapTokensThreshold(uint256 swapTokensAtAmount) public onlyOwner {
        _swapTokensAtAmount = swapTokensAtAmount;
    }

    /**
     * @notice Toggles the swap functionality on or off.
     * @dev Only callable by the contract owner.
     * @param _swapEnabled Boolean value to enable or disable swapping.
     */
    function toggleSwap(bool _swapEnabled) public onlyOwner {
        swapEnabled = _swapEnabled;
    }

    /**
     * @notice Sets the maximum transaction amount allowed in a transfer.
     * @dev Only callable by the contract owner.
     * @param maxTxAmount The maximum amount of tokens that can be transferred in a transaction.
     */
    function setMaxTxnAmount(uint256 maxTxAmount) public onlyOwner {
        _maxTxAmount = maxTxAmount;
    }

    /**
     * @notice Sets the maximum wallet size to prevent large holdings in a single wallet.
     * @dev Only callable by the contract owner.
     * @param maxWalletSize The maximum token amount a wallet can hold.
     */
    function setMaxWalletSize(uint256 maxWalletSize) public onlyOwner {
        _maxWalletSize = maxWalletSize;
    }

    /**
     * @notice Excludes or includes multiple accounts from transaction fees.
     * @dev Only callable by the contract owner.
     * @param accounts The addresses to be excluded or included.
     * @param excluded Whether the accounts should be excluded from fees.
     */
    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFee[accounts[i]] = excluded;
        }
    }

    /**
     * @notice Allows specified accounts to participate in trading before trading is opened to the public.
     * @dev Only callable by the contract owner.
     * @param accounts The addresses to be allowed for pre-trading.
     */
    function allowPreTrading(address[] calldata accounts) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            preTrader[accounts[i]] = true;
        }
    }

    /**
     * @notice Removes the ability of specified accounts to participate in pre-trading.
     * @dev Only callable by the contract owner.
     * @param accounts The addresses to have pre-trading permissions removed.
     */
    function removePreTrading(address[] calldata accounts) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            delete preTrader[accounts[i]];
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTxAmount","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":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"allowPreTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preTrader","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removePreTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"redisFeeOnBuy","type":"uint256"},{"internalType":"uint256","name":"redisFeeOnSell","type":"uint256"},{"internalType":"uint256","name":"taxFeeOnBuy","type":"uint256"},{"internalType":"uint256","name":"taxFeeOnSell","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"}],"name":"setMinSwapTokensThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradingOpen","type":"bool"}],"name":"setTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapEnabled","type":"bool"}],"name":"toggleSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526200001967016345785d8a00005f1962000357565b62000026905f1962000377565b6006555f60088190556009819055600a819055600b819055600c819055600d819055600e819055600f55601180546001600160a01b03199081167347f84d4307feebdedc7426931ee1068c4142cd379081179092556012805490911690911790556014805461ffff60a81b1916600160b01b17905566038d7ea4c6800060155566071afd498d000060165566016bcc41e90000601755348015620000c8575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600654335f9081526002602090815260409182902092909255601380546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155815163c45a015560e01b815291519092839263c45a015592600480830193928290030181865afa15801562000182573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a891906200039d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200021a91906200039d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000265573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200028b91906200039d565b601480546001600160a01b0319166001600160a01b039283161790555f80548216815260056020526040808220805460ff1990811660019081179092553084528284208054821683179055601154851684528284208054821683179055601254909416835291208054909216179055336001600160a01b03165f6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef67016345785d8a00006040516200034891815260200190565b60405180910390a350620003cc565b5f826200037257634e487b7160e01b5f52601260045260245ffd5b500690565b818103818111156200039757634e487b7160e01b5f52601160045260245ffd5b92915050565b5f60208284031215620003ae575f80fd5b81516001600160a01b0381168114620003c5575f80fd5b9392505050565b611ac380620003da5f395ff3fe6080604052600436106101bd575f3560e01c80637d1db4a5116100f2578063a9059cbb11610092578063c492f04611610062578063c492f046146104f8578063dd62ed3e14610517578063ea1644d51461055b578063f2fde38b1461057a575f80fd5b8063a9059cbb14610478578063b5a6522314610497578063bdd795ef146104b6578063c3c8cd80146104e4575f80fd5b80638f9a55c0116100cd5780638f9a55c0146103fa57806395d89b411461040f57806398a5c3151461043a578063a2a957bb14610459575f80fd5b80637d1db4a5146103aa5780638da5cb5b146103bf5780638f70ccf7146103db575f80fd5b806349bd5a5e1161015d5780636fc3eaec116101385780636fc3eaec1461034457806370a0823114610358578063715018a61461037757806374010ece1461038b575f80fd5b806349bd5a5e146102e557806367aadb7e146103045780636d8aa8f814610325575f80fd5b806318160ddd1161019857806318160ddd1461027257806323b872dd146102965780632fd689e3146102b5578063313ce567146102ca575f80fd5b806306fdde03146101c8578063095ea7b31461020c5780631694505e1461023b575f80fd5b366101c457005b5f80fd5b3480156101d3575f80fd5b5060408051808201909152600a815269496e74656c6c6578757360b01b60208201525b60405161020391906116e4565b60405180910390f35b348015610217575f80fd5b5061022b610226366004611744565b610599565b6040519015158152602001610203565b348015610246575f80fd5b5060135461025a906001600160a01b031681565b6040516001600160a01b039091168152602001610203565b34801561027d575f80fd5b5067016345785d8a00005b604051908152602001610203565b3480156102a1575f80fd5b5061022b6102b036600461176e565b6105af565b3480156102c0575f80fd5b5061028860175481565b3480156102d5575f80fd5b5060405160098152602001610203565b3480156102f0575f80fd5b5060145461025a906001600160a01b031681565b34801561030f575f80fd5b5061032361031e3660046117f4565b6105ff565b005b348015610330575f80fd5b5061032361033f366004611847565b610692565b34801561034f575f80fd5b506103236106d9565b348015610363575f80fd5b50610288610372366004611860565b610776565b348015610382575f80fd5b50610323610797565b348015610396575f80fd5b506103236103a536600461187b565b610808565b3480156103b5575f80fd5b5061028860155481565b3480156103ca575f80fd5b505f546001600160a01b031661025a565b3480156103e6575f80fd5b506103236103f5366004611847565b610836565b348015610405575f80fd5b5061028860165481565b34801561041a575f80fd5b5060408051808201909152600381526249584360e81b60208201526101f6565b348015610445575f80fd5b5061032361045436600461187b565b61087d565b348015610464575f80fd5b50610323610473366004611892565b6108ab565b348015610483575f80fd5b5061022b610492366004611744565b6108e8565b3480156104a2575f80fd5b506103236104b13660046117f4565b6108f4565b3480156104c1575f80fd5b5061022b6104d0366004611860565b60106020525f908152604090205460ff1681565b3480156104ef575f80fd5b50610323610982565b348015610503575f80fd5b506103236105123660046118c1565b610a2c565b348015610522575f80fd5b50610288610531366004611911565b6001600160a01b039182165f90815260046020908152604080832093909416825291909152205490565b348015610566575f80fd5b5061032361057536600461187b565b610abf565b348015610585575f80fd5b50610323610594366004611860565b610aed565b5f6105a5338484610bd4565b5060015b92915050565b5f6105bb848484610cf7565b6001600160a01b0384165f908152600460209081526040808320338085529252909120546105f59186916105f090869061195c565b610bd4565b5060019392505050565b5f546001600160a01b031633146106315760405162461bcd60e51b81526004016106289061196f565b60405180910390fd5b5f5b8181101561068d5760105f848484818110610650576106506119a4565b90506020020160208101906106659190611860565b6001600160a01b0316815260208101919091526040015f20805460ff19169055600101610633565b505050565b5f546001600160a01b031633146106bb5760405162461bcd60e51b81526004016106289061196f565b60148054911515600160b01b0260ff60b01b19909216919091179055565b6011546001600160a01b0316336001600160a01b0316148061070e57506012546001600160a01b0316336001600160a01b0316145b6107695760405162461bcd60e51b815260206004820152602660248201527f4f6e6c7920617574686f72697a6564206164647265737365732063616e2073656044820152650dcc8408aa8960d31b6064820152608401610628565b47610773816111e3565b50565b6001600160a01b0381165f908152600260205260408120546105a99061121e565b5f546001600160a01b031633146107c05760405162461bcd60e51b81526004016106289061196f565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146108315760405162461bcd60e51b81526004016106289061196f565b601555565b5f546001600160a01b0316331461085f5760405162461bcd60e51b81526004016106289061196f565b60148054911515600160a01b0260ff60a01b19909216919091179055565b5f546001600160a01b031633146108a65760405162461bcd60e51b81526004016106289061196f565b601755565b5f546001600160a01b031633146108d45760405162461bcd60e51b81526004016106289061196f565b600893909355600a91909155600955600b55565b5f6105a5338484610cf7565b5f546001600160a01b0316331461091d5760405162461bcd60e51b81526004016106289061196f565b5f5b8181101561068d57600160105f85858581811061093e5761093e6119a4565b90506020020160208101906109539190611860565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905560010161091f565b6011546001600160a01b0316336001600160a01b031614806109b757506012546001600160a01b0316336001600160a01b0316145b610a175760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c7920617574686f72697a6564206164647265737365732063616e20696e60448201526a069746961746520737761760ac1b6064820152608401610628565b5f610a2130610776565b9050610773816112a0565b5f546001600160a01b03163314610a555760405162461bcd60e51b81526004016106289061196f565b5f5b82811015610ab9578160055f868685818110610a7557610a756119a4565b9050602002016020810190610a8a9190611860565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055600101610a57565b50505050565b5f546001600160a01b03163314610ae85760405162461bcd60e51b81526004016106289061196f565b601655565b5f546001600160a01b03163314610b165760405162461bcd60e51b81526004016106289061196f565b6001600160a01b038116610b7b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610628565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610c365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610628565b6001600160a01b038216610c975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610628565b6001600160a01b038381165f8181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d5b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610628565b6001600160a01b038216610dbd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610628565b5f8111610e1e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610628565b5f546001600160a01b03848116911614801590610e4857505f546001600160a01b03838116911614155b8015610e6c57506001600160a01b0383165f9081526010602052604090205460ff16155b8015610e9057506001600160a01b0382165f9081526010602052604090205460ff16155b156110df57601454600160a01b900460ff16610f33576001600160a01b0383165f9081526010602052604090205460ff16610f335760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c6564006064820152608401610628565b601554811115610f855760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204d6178205472616e73616374696f6e204c696d6974000000006044820152606401610628565b6014546001600160a01b0383811691161461100b5760165481610fa784610776565b610fb191906119b8565b111561100b5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610628565b5f61101530610776565b60175460155491925082101590821061102e5760155491505b8080156110455750601454600160a81b900460ff16155b801561105f57506014546001600160a01b03868116911614155b80156110745750601454600160b01b900460ff165b801561109857506001600160a01b0385165f9081526005602052604090205460ff16155b80156110bc57506001600160a01b0384165f9081526005602052604090205460ff16155b156110dc576110ca826112a0565b4780156110da576110da476111e3565b505b50505b6001600160a01b0383165f9081526005602052604090205460019060ff168061111f57506001600160a01b0383165f9081526005602052604090205460ff165b8061115157506014546001600160a01b0385811691161480159061115157506014546001600160a01b03848116911614155b1561115d57505f6111d7565b6014546001600160a01b03858116911614801561118857506013546001600160a01b03848116911614155b1561119a57600854600c55600954600d555b6014546001600160a01b0384811691161480156111c557506013546001600160a01b03858116911614155b156111d757600a54600c55600b54600d555b610ab984848484611410565b6012546040516001600160a01b039091169082156108fc029083905f818181858888f1935050505015801561121a573d5f803e3d5ffd5b5050565b5f6006548211156112845760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610628565b5f61128d61143e565b905061129981846119cb565b9392505050565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106112e6576112e66119a4565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561133d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061136191906119ea565b81600181518110611374576113746119a4565b6001600160a01b03928316602091820292909201015260135461139a9130911684610bd4565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906113d29085905f90869030904290600401611a05565b5f604051808303815f87803b1580156113e9575f80fd5b505af11580156113fb573d5f803e3d5ffd5b50506014805460ff60a81b1916905550505050565b8061141d5761141d61146a565b611428848484611497565b80610ab957610ab9600e54600c55600f54600d55565b5f805f6114546006549067016345785d8a000090565b909250905061146381836119cb565b9250505090565b600c5415801561147a5750600d54155b1561148157565b600c8054600e55600d8054600f555f9182905555565b5f805f805f806114a68761158a565b6001600160a01b038f165f90815260026020526040902054959b509399509197509550935091506114d890879061195c565b6001600160a01b03808b165f9081526002602052604080822093909355908a16815220546115079086906119b8565b6001600160a01b0389165f90815260026020526040902055611528816115ce565b6115328483611615565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161157791815260200190565b60405180910390a3505050505050505050565b5f805f805f8061159f87600c54600d54611647565b919450925090505f6115af61143e565b90506115bd8884848461169a565b919850965094505091939550919395565b5f6115d761143e565b90505f6115e48284611a76565b305f908152600260205260409020549091506116019082906119b8565b305f90815260026020526040902055505050565b8160065f828254611626919061195c565b925050819055508060075f82825461163e91906119b8565b90915550505050565b5f808060646116568688611a76565b61166091906119cb565b9150606461166e8588611a76565b61167891906119cb565b905080611685838861195c565b61168f919061195c565b925093509350939050565b5f80806116a78488611a76565b92506116b38487611a76565b90505f6116c08587611a76565b9050806116cd838661195c565b6116d7919061195c565b9250509450945094915050565b5f602080835283518060208501525f5b81811015611710578581018301518582016040015282016116f4565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610773575f80fd5b5f8060408385031215611755575f80fd5b823561176081611730565b946020939093013593505050565b5f805f60608486031215611780575f80fd5b833561178b81611730565b9250602084013561179b81611730565b929592945050506040919091013590565b5f8083601f8401126117bc575f80fd5b50813567ffffffffffffffff8111156117d3575f80fd5b6020830191508360208260051b85010111156117ed575f80fd5b9250929050565b5f8060208385031215611805575f80fd5b823567ffffffffffffffff81111561181b575f80fd5b611827858286016117ac565b90969095509350505050565b80358015158114611842575f80fd5b919050565b5f60208284031215611857575f80fd5b61129982611833565b5f60208284031215611870575f80fd5b813561129981611730565b5f6020828403121561188b575f80fd5b5035919050565b5f805f80608085870312156118a5575f80fd5b5050823594602084013594506040840135936060013592509050565b5f805f604084860312156118d3575f80fd5b833567ffffffffffffffff8111156118e9575f80fd5b6118f5868287016117ac565b9094509250611908905060208501611833565b90509250925092565b5f8060408385031215611922575f80fd5b823561192d81611730565b9150602083013561193d81611730565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156105a9576105a9611948565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b808201808211156105a9576105a9611948565b5f826119e557634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156119fa575f80fd5b815161129981611730565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611a555784516001600160a01b031683529383019391830191600101611a30565b50506001600160a01b03969096166060850152505050608001529392505050565b80820281158282048414176105a9576105a961194856fea264697066735822122001e5692184bfccf82a427ef360ae80e3b105de03a8de148915b34a2c39350e3864736f6c63430008180033

Deployed Bytecode

0x6080604052600436106101bd575f3560e01c80637d1db4a5116100f2578063a9059cbb11610092578063c492f04611610062578063c492f046146104f8578063dd62ed3e14610517578063ea1644d51461055b578063f2fde38b1461057a575f80fd5b8063a9059cbb14610478578063b5a6522314610497578063bdd795ef146104b6578063c3c8cd80146104e4575f80fd5b80638f9a55c0116100cd5780638f9a55c0146103fa57806395d89b411461040f57806398a5c3151461043a578063a2a957bb14610459575f80fd5b80637d1db4a5146103aa5780638da5cb5b146103bf5780638f70ccf7146103db575f80fd5b806349bd5a5e1161015d5780636fc3eaec116101385780636fc3eaec1461034457806370a0823114610358578063715018a61461037757806374010ece1461038b575f80fd5b806349bd5a5e146102e557806367aadb7e146103045780636d8aa8f814610325575f80fd5b806318160ddd1161019857806318160ddd1461027257806323b872dd146102965780632fd689e3146102b5578063313ce567146102ca575f80fd5b806306fdde03146101c8578063095ea7b31461020c5780631694505e1461023b575f80fd5b366101c457005b5f80fd5b3480156101d3575f80fd5b5060408051808201909152600a815269496e74656c6c6578757360b01b60208201525b60405161020391906116e4565b60405180910390f35b348015610217575f80fd5b5061022b610226366004611744565b610599565b6040519015158152602001610203565b348015610246575f80fd5b5060135461025a906001600160a01b031681565b6040516001600160a01b039091168152602001610203565b34801561027d575f80fd5b5067016345785d8a00005b604051908152602001610203565b3480156102a1575f80fd5b5061022b6102b036600461176e565b6105af565b3480156102c0575f80fd5b5061028860175481565b3480156102d5575f80fd5b5060405160098152602001610203565b3480156102f0575f80fd5b5060145461025a906001600160a01b031681565b34801561030f575f80fd5b5061032361031e3660046117f4565b6105ff565b005b348015610330575f80fd5b5061032361033f366004611847565b610692565b34801561034f575f80fd5b506103236106d9565b348015610363575f80fd5b50610288610372366004611860565b610776565b348015610382575f80fd5b50610323610797565b348015610396575f80fd5b506103236103a536600461187b565b610808565b3480156103b5575f80fd5b5061028860155481565b3480156103ca575f80fd5b505f546001600160a01b031661025a565b3480156103e6575f80fd5b506103236103f5366004611847565b610836565b348015610405575f80fd5b5061028860165481565b34801561041a575f80fd5b5060408051808201909152600381526249584360e81b60208201526101f6565b348015610445575f80fd5b5061032361045436600461187b565b61087d565b348015610464575f80fd5b50610323610473366004611892565b6108ab565b348015610483575f80fd5b5061022b610492366004611744565b6108e8565b3480156104a2575f80fd5b506103236104b13660046117f4565b6108f4565b3480156104c1575f80fd5b5061022b6104d0366004611860565b60106020525f908152604090205460ff1681565b3480156104ef575f80fd5b50610323610982565b348015610503575f80fd5b506103236105123660046118c1565b610a2c565b348015610522575f80fd5b50610288610531366004611911565b6001600160a01b039182165f90815260046020908152604080832093909416825291909152205490565b348015610566575f80fd5b5061032361057536600461187b565b610abf565b348015610585575f80fd5b50610323610594366004611860565b610aed565b5f6105a5338484610bd4565b5060015b92915050565b5f6105bb848484610cf7565b6001600160a01b0384165f908152600460209081526040808320338085529252909120546105f59186916105f090869061195c565b610bd4565b5060019392505050565b5f546001600160a01b031633146106315760405162461bcd60e51b81526004016106289061196f565b60405180910390fd5b5f5b8181101561068d5760105f848484818110610650576106506119a4565b90506020020160208101906106659190611860565b6001600160a01b0316815260208101919091526040015f20805460ff19169055600101610633565b505050565b5f546001600160a01b031633146106bb5760405162461bcd60e51b81526004016106289061196f565b60148054911515600160b01b0260ff60b01b19909216919091179055565b6011546001600160a01b0316336001600160a01b0316148061070e57506012546001600160a01b0316336001600160a01b0316145b6107695760405162461bcd60e51b815260206004820152602660248201527f4f6e6c7920617574686f72697a6564206164647265737365732063616e2073656044820152650dcc8408aa8960d31b6064820152608401610628565b47610773816111e3565b50565b6001600160a01b0381165f908152600260205260408120546105a99061121e565b5f546001600160a01b031633146107c05760405162461bcd60e51b81526004016106289061196f565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f546001600160a01b031633146108315760405162461bcd60e51b81526004016106289061196f565b601555565b5f546001600160a01b0316331461085f5760405162461bcd60e51b81526004016106289061196f565b60148054911515600160a01b0260ff60a01b19909216919091179055565b5f546001600160a01b031633146108a65760405162461bcd60e51b81526004016106289061196f565b601755565b5f546001600160a01b031633146108d45760405162461bcd60e51b81526004016106289061196f565b600893909355600a91909155600955600b55565b5f6105a5338484610cf7565b5f546001600160a01b0316331461091d5760405162461bcd60e51b81526004016106289061196f565b5f5b8181101561068d57600160105f85858581811061093e5761093e6119a4565b90506020020160208101906109539190611860565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905560010161091f565b6011546001600160a01b0316336001600160a01b031614806109b757506012546001600160a01b0316336001600160a01b0316145b610a175760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c7920617574686f72697a6564206164647265737365732063616e20696e60448201526a069746961746520737761760ac1b6064820152608401610628565b5f610a2130610776565b9050610773816112a0565b5f546001600160a01b03163314610a555760405162461bcd60e51b81526004016106289061196f565b5f5b82811015610ab9578160055f868685818110610a7557610a756119a4565b9050602002016020810190610a8a9190611860565b6001600160a01b0316815260208101919091526040015f20805460ff1916911515919091179055600101610a57565b50505050565b5f546001600160a01b03163314610ae85760405162461bcd60e51b81526004016106289061196f565b601655565b5f546001600160a01b03163314610b165760405162461bcd60e51b81526004016106289061196f565b6001600160a01b038116610b7b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610628565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610c365760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610628565b6001600160a01b038216610c975760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610628565b6001600160a01b038381165f8181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d5b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610628565b6001600160a01b038216610dbd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610628565b5f8111610e1e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610628565b5f546001600160a01b03848116911614801590610e4857505f546001600160a01b03838116911614155b8015610e6c57506001600160a01b0383165f9081526010602052604090205460ff16155b8015610e9057506001600160a01b0382165f9081526010602052604090205460ff16155b156110df57601454600160a01b900460ff16610f33576001600160a01b0383165f9081526010602052604090205460ff16610f335760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c6564006064820152608401610628565b601554811115610f855760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204d6178205472616e73616374696f6e204c696d6974000000006044820152606401610628565b6014546001600160a01b0383811691161461100b5760165481610fa784610776565b610fb191906119b8565b111561100b5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610628565b5f61101530610776565b60175460155491925082101590821061102e5760155491505b8080156110455750601454600160a81b900460ff16155b801561105f57506014546001600160a01b03868116911614155b80156110745750601454600160b01b900460ff165b801561109857506001600160a01b0385165f9081526005602052604090205460ff16155b80156110bc57506001600160a01b0384165f9081526005602052604090205460ff16155b156110dc576110ca826112a0565b4780156110da576110da476111e3565b505b50505b6001600160a01b0383165f9081526005602052604090205460019060ff168061111f57506001600160a01b0383165f9081526005602052604090205460ff165b8061115157506014546001600160a01b0385811691161480159061115157506014546001600160a01b03848116911614155b1561115d57505f6111d7565b6014546001600160a01b03858116911614801561118857506013546001600160a01b03848116911614155b1561119a57600854600c55600954600d555b6014546001600160a01b0384811691161480156111c557506013546001600160a01b03858116911614155b156111d757600a54600c55600b54600d555b610ab984848484611410565b6012546040516001600160a01b039091169082156108fc029083905f818181858888f1935050505015801561121a573d5f803e3d5ffd5b5050565b5f6006548211156112845760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610628565b5f61128d61143e565b905061129981846119cb565b9392505050565b6014805460ff60a81b1916600160a81b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106112e6576112e66119a4565b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561133d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061136191906119ea565b81600181518110611374576113746119a4565b6001600160a01b03928316602091820292909201015260135461139a9130911684610bd4565b60135460405163791ac94760e01b81526001600160a01b039091169063791ac947906113d29085905f90869030904290600401611a05565b5f604051808303815f87803b1580156113e9575f80fd5b505af11580156113fb573d5f803e3d5ffd5b50506014805460ff60a81b1916905550505050565b8061141d5761141d61146a565b611428848484611497565b80610ab957610ab9600e54600c55600f54600d55565b5f805f6114546006549067016345785d8a000090565b909250905061146381836119cb565b9250505090565b600c5415801561147a5750600d54155b1561148157565b600c8054600e55600d8054600f555f9182905555565b5f805f805f806114a68761158a565b6001600160a01b038f165f90815260026020526040902054959b509399509197509550935091506114d890879061195c565b6001600160a01b03808b165f9081526002602052604080822093909355908a16815220546115079086906119b8565b6001600160a01b0389165f90815260026020526040902055611528816115ce565b6115328483611615565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161157791815260200190565b60405180910390a3505050505050505050565b5f805f805f8061159f87600c54600d54611647565b919450925090505f6115af61143e565b90506115bd8884848461169a565b919850965094505091939550919395565b5f6115d761143e565b90505f6115e48284611a76565b305f908152600260205260409020549091506116019082906119b8565b305f90815260026020526040902055505050565b8160065f828254611626919061195c565b925050819055508060075f82825461163e91906119b8565b90915550505050565b5f808060646116568688611a76565b61166091906119cb565b9150606461166e8588611a76565b61167891906119cb565b905080611685838861195c565b61168f919061195c565b925093509350939050565b5f80806116a78488611a76565b92506116b38487611a76565b90505f6116c08587611a76565b9050806116cd838661195c565b6116d7919061195c565b9250509450945094915050565b5f602080835283518060208501525f5b81811015611710578581018301518582016040015282016116f4565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610773575f80fd5b5f8060408385031215611755575f80fd5b823561176081611730565b946020939093013593505050565b5f805f60608486031215611780575f80fd5b833561178b81611730565b9250602084013561179b81611730565b929592945050506040919091013590565b5f8083601f8401126117bc575f80fd5b50813567ffffffffffffffff8111156117d3575f80fd5b6020830191508360208260051b85010111156117ed575f80fd5b9250929050565b5f8060208385031215611805575f80fd5b823567ffffffffffffffff81111561181b575f80fd5b611827858286016117ac565b90969095509350505050565b80358015158114611842575f80fd5b919050565b5f60208284031215611857575f80fd5b61129982611833565b5f60208284031215611870575f80fd5b813561129981611730565b5f6020828403121561188b575f80fd5b5035919050565b5f805f80608085870312156118a5575f80fd5b5050823594602084013594506040840135936060013592509050565b5f805f604084860312156118d3575f80fd5b833567ffffffffffffffff8111156118e9575f80fd5b6118f5868287016117ac565b9094509250611908905060208501611833565b90509250925092565b5f8060408385031215611922575f80fd5b823561192d81611730565b9150602083013561193d81611730565b809150509250929050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156105a9576105a9611948565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52603260045260245ffd5b808201808211156105a9576105a9611948565b5f826119e557634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156119fa575f80fd5b815161129981611730565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611a555784516001600160a01b031683529383019391830191600101611a30565b50506001600160a01b03969096166060850152505050608001529392505050565b80820281158282048414176105a9576105a961194856fea264697066735822122001e5692184bfccf82a427ef360ae80e3b105de03a8de148915b34a2c39350e3864736f6c63430008180033

Deployed Bytecode Sourcemap

5967:23664:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9545:83;;;;;;;;;;-1:-1:-1;9615:5:0;;;;;;;;;;;;-1:-1:-1;;;9615:5:0;;;;9545:83;;;;;;;:::i;:::-;;;;;;;;12091:161;;;;;;;;;;-1:-1:-1;12091:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12091:161:0;1023:187:1;7739:41:0;;;;;;;;;;-1:-1:-1;7739:41:0;;;;-1:-1:-1;;;;;7739:41:0;;;;;;-1:-1:-1;;;;;1405:32:1;;;1387:51;;1375:2;1360:18;7739:41:0;1215:229:1;10611:95:0;;;;;;;;;;-1:-1:-1;6614:17:0;10611:95;;;1595:25:1;;;1583:2;1568:18;10611:95:0;1449:177:1;12809:300:0;;;;;;;;;;-1:-1:-1;12809:300:0;;;;;:::i;:::-;;:::i;8272:51::-;;;;;;;;;;;;;;;;10463:83;;;;;;;;;;-1:-1:-1;10463:83:0;;6154:1;2234:36:1;;2222:2;2207:18;10463:83:0;2092:184:1;7808:28:0;;;;;;;;;;-1:-1:-1;7808:28:0;;;;-1:-1:-1;;;;;7808:28:0;;;29437:191;;;;;;;;;;-1:-1:-1;29437:191:0;;;;;:::i;:::-;;:::i;:::-;;27408:101;;;;;;;;;;-1:-1:-1;27408:101:0;;;;;:::i;:::-;;:::i;19810:277::-;;;;;;;;;;;;;:::i;10769:138::-;;;;;;;;;;-1:-1:-1;10769:138:0;;;;;:::i;:::-;;:::i;4300:148::-;;;;;;;;;;;;;:::i;27758:108::-;;;;;;;;;;-1:-1:-1;27758:108:0;;;;;:::i;:::-;;:::i;8111:45::-;;;;;;;;;;;;;;;;3658:79;;;;;;;;;;-1:-1:-1;3696:7:0;3723:6;-1:-1:-1;;;;;3723:6:0;3658:79;;19146:101;;;;;;;;;;-1:-1:-1;19146:101:0;;;;;:::i;:::-;;:::i;8189:47::-;;;;;;;;;;;;;;;;9739:87;;;;;;;;;;-1:-1:-1;9811:7:0;;;;;;;;;;;;-1:-1:-1;;;9811:7:0;;;;9739:87;;27062:139;;;;;;;;;;-1:-1:-1;27062:139:0;;;;;:::i;:::-;;:::i;26520:291::-;;;;;;;;;;-1:-1:-1;26520:291:0;;;;;:::i;:::-;;:::i;11191:167::-;;;;;;;;;;-1:-1:-1;11191:167:0;;;;;:::i;:::-;;:::i;29003:190::-;;;;;;;;;;-1:-1:-1;29003:190:0;;;;;:::i;:::-;;:::i;7415:42::-;;;;;;;;;;-1:-1:-1;7415:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;19385:283;;;;;;;;;;;;;:::i;28516:234::-;;;;;;;;;;-1:-1:-1;28516:234:0;;;;;:::i;:::-;;:::i;11642:143::-;;;;;;;;;;-1:-1:-1;11642:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;11750:18:0;;;11723:7;11750:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11642:143;28106:115;;;;;;;;;;-1:-1:-1;28106:115:0;;;;;:::i;:::-;;:::i;4603:244::-;;;;;;;;;;-1:-1:-1;4603:244:0;;;;;:::i;:::-;;:::i;12091:161::-;12166:4;12183:39;811:10;12206:7;12215:6;12183:8;:39::i;:::-;-1:-1:-1;12240:4:0;12091:161;;;;;:::o;12809:300::-;12941:4;12958:36;12968:6;12976:9;12987:6;12958:9;:36::i;:::-;-1:-1:-1;;;;;13036:19:0;;;;;;:11;:19;;;;;;;;811:10;13036:33;;;;;;;;;13005:74;;13014:6;;13036:42;;13072:6;;13036:42;:::i;:::-;13005:8;:74::i;:::-;-1:-1:-1;13097:4:0;12809:300;;;;;:::o;29437:191::-;3870:6;;-1:-1:-1;;;;;3870:6:0;811:10;3870:22;3862:67;;;;-1:-1:-1;;;3862:67:0;;;;;;;:::i;:::-;;;;;;;;;29524:9:::1;29520:101;29539:19:::0;;::::1;29520:101;;;29587:9;:22;29597:8;;29606:1;29597:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;29587:22:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;29587:22:0;29580:29;;-1:-1:-1;;29580:29:0::1;::::0;;;29560:3:::1;29520:101;;;;29437:191:::0;;:::o;27408:101::-;3870:6;;-1:-1:-1;;;;;3870:6:0;811:10;3870:22;3862:67;;;;-1:-1:-1;;;3862:67:0;;;;;;;:::i;:::-;27475:11:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;27475:26:0::1;-1:-1:-1::0;;;;27475:26:0;;::::1;::::0;;;::::1;::::0;;27408:101::o;19810:277::-;19876:19;;-1:-1:-1;;;;;19876:19:0;811:10;-1:-1:-1;;;;;19860:35:0;;:72;;;-1:-1:-1;19915:17:0;;-1:-1:-1;;;;;19915:17:0;811:10;-1:-1:-1;;;;;19899:33:0;;19860:72;19852:123;;;;-1:-1:-1;;;19852:123:0;;6343:2:1;19852:123:0;;;6325:21:1;6382:2;6362:18;;;6355:30;6421:34;6401:18;;;6394:62;-1:-1:-1;;;6472:18:1;;;6465:36;6518:19;;19852:123:0;6141:402:1;19852:123:0;20015:21;20047:32;20015:21;20047:12;:32::i;:::-;19841:246;19810:277::o;10769:138::-;-1:-1:-1;;;;;10882:16:0;;10835:7;10882:16;;;:7;:16;;;;;;10862:37;;:19;:37::i;4300:148::-;3870:6;;-1:-1:-1;;;;;3870:6:0;811:10;3870:22;3862:67;;;;-1:-1:-1;;;3862:67:0;;;;;;;:::i;:::-;4407:1:::1;4391:6:::0;;4370:40:::1;::::0;-1:-1:-1;;;;;4391:6:0;;::::1;::::0;4370:40:::1;::::0;4407:1;;4370:40:::1;4438:1;4421:19:::0;;-1:-1:-1;;;;;;4421:19:0::1;::::0;;4300:148::o;27758:108::-;3870:6;;-1:-1:-1;;;;;3870:6:0;811:10;3870:22;3862:67;;;;-1:-1:-1;;;3862:67:0;;;;;;;:::i;:::-;27832:12:::1;:26:::0;27758:108::o;19146:101::-;3870:6;;-1:-1:-1;;;;;3870:6:0;811:10;3870:22;3862:67;;;;-1:-1:-1;;;3862:67:0;;;;;;;:::i;:::-;19213:11:::1;:26:::0;;;::::1;;-1:-1:-1::0;;;19213:26:0::1;-1:-1:-1::0;;;;19213:26:0;;::::1;::::0;;;::::1;::::0;;19146:101::o;27062:139::-;3870:6;;-1:-1:-1;;;;;3870:6:0;811:10;3870:22;3862:67;;;;-1:-1:-1;;;3862:67:0;;;;;;;:::i;:::-;27153:19:::1;:40:::0;27062:139::o;26520:291::-;3870:6;;-1:-1:-1;;;;;3870:6:0;811:10;3870:22;3862:67;;;;-1:-1:-1;;;3862:67:0;;;;;;;:::i;:::-;26654:14:::1;:30:::0;;;;26695:15:::1;:32:::0;;;;26738:12:::1;:26:::0;26775:13:::1;:28:::0;26520:291::o;11191:167::-;11269:4;11286:42;811:10;11310:9;11321:6;11286:9;:42::i;29003:190::-;3870:6;;-1:-1:-1;;;;;3870:6:0;811:10;3870:22;3862:67;;;;-1:-1:-1;;;3862:67:0;;;;;;;:::i;:::-;29089:9:::1;29085:101;29104:19:::0;;::::1;29085:101;;;29170:4;29145:9;:22;29155:8;;29164:1;29155:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;29145:22:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;29145:22:0;:29;;-1:-1:-1;;29145:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;29125:3:0::1;29085:101;;19385:283:::0;19451:19;;-1:-1:-1;;;;;19451:19:0;811:10;-1:-1:-1;;;;;19435:35:0;;:72;;;-1:-1:-1;19490:17:0;;-1:-1:-1;;;;;19490:17:0;811:10;-1:-1:-1;;;;;19474:33:0;;19435:72;19427:128;;;;-1:-1:-1;;;19427:128:0;;6750:2:1;19427:128:0;;;6732:21:1;6789:2;6769:18;;;6762:30;6828:34;6808:18;;;6801:62;-1:-1:-1;;;6879:18:1;;;6872:41;6930:19;;19427:128:0;6548:407:1;19427:128:0;19566:23;19592:24;19610:4;19592:9;:24::i;:::-;19566:50;;19627:33;19644:15;19627:16;:33::i;28516:234::-;3870:6;;-1:-1:-1;;;;;3870:6:0;811:10;3870:22;3862:67;;;;-1:-1:-1;;;3862:67:0;;;;;;;:::i;:::-;28633:9:::1;28629:114;28648:19:::0;;::::1;28629:114;;;28723:8;28689:18;:31;28708:8;;28717:1;28708:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28689:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;28689:31:0;:42;;-1:-1:-1;;28689:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;28669:3:0::1;28629:114;;;;28516:234:::0;;;:::o;28106:115::-;3870:6;;-1:-1:-1;;;;;3870:6:0;811:10;3870:22;3862:67;;;;-1:-1:-1;;;3862:67:0;;;;;;;:::i;:::-;28183:14:::1;:30:::0;28106:115::o;4603:244::-;3870:6;;-1:-1:-1;;;;;3870:6:0;811:10;3870:22;3862:67;;;;-1:-1:-1;;;3862:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4692:22:0;::::1;4684:73;;;::::0;-1:-1:-1;;;4684:73:0;;7162:2:1;4684:73:0::1;::::0;::::1;7144:21:1::0;7201:2;7181:18;;;7174:30;7240:34;7220:18;;;7213:62;-1:-1:-1;;;7291:18:1;;;7284:36;7337:19;;4684:73:0::1;6960:402:1::0;4684:73:0::1;4794:6;::::0;;4773:38:::1;::::0;-1:-1:-1;;;;;4773:38:0;;::::1;::::0;4794:6;::::1;::::0;4773:38:::1;::::0;::::1;4822:6;:17:::0;;-1:-1:-1;;;;;;4822:17:0::1;-1:-1:-1::0;;;;;4822:17:0;;;::::1;::::0;;;::::1;::::0;;4603:244::o;14560:369::-;-1:-1:-1;;;;;14687:19:0;;14679:68;;;;-1:-1:-1;;;14679:68:0;;7569:2:1;14679:68:0;;;7551:21:1;7608:2;7588:18;;;7581:30;7647:34;7627:18;;;7620:62;-1:-1:-1;;;7698:18:1;;;7691:34;7742:19;;14679:68:0;7367:400:1;14679:68:0;-1:-1:-1;;;;;14766:21:0;;14758:68;;;;-1:-1:-1;;;14758:68:0;;7974:2:1;14758:68:0;;;7956:21:1;8013:2;7993:18;;;7986:30;8052:34;8032:18;;;8025:62;-1:-1:-1;;;8103:18:1;;;8096:32;8145:19;;14758:68:0;7772:398:1;14758:68:0;-1:-1:-1;;;;;14837:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14889:32;;1595:25:1;;;14889:32:0;;1568:18:1;14889:32:0;;;;;;;14560:369;;;:::o;15529:2440::-;-1:-1:-1;;;;;15651:18:0;;15643:68;;;;-1:-1:-1;;;15643:68:0;;8377:2:1;15643:68:0;;;8359:21:1;8416:2;8396:18;;;8389:30;8455:34;8435:18;;;8428:62;-1:-1:-1;;;8506:18:1;;;8499:35;8551:19;;15643:68:0;8175:401:1;15643:68:0;-1:-1:-1;;;;;15730:16:0;;15722:64;;;;-1:-1:-1;;;15722:64:0;;8783:2:1;15722:64:0;;;8765:21:1;8822:2;8802:18;;;8795:30;8861:34;8841:18;;;8834:62;-1:-1:-1;;;8912:18:1;;;8905:33;8955:19;;15722:64:0;8581:399:1;15722:64:0;15814:1;15805:6;:10;15797:64;;;;-1:-1:-1;;;15797:64:0;;9187:2:1;15797:64:0;;;9169:21:1;9226:2;9206:18;;;9199:30;9265:34;9245:18;;;9238:62;-1:-1:-1;;;9316:18:1;;;9309:39;9365:19;;15797:64:0;8985:405:1;15797:64:0;3696:7;3723:6;-1:-1:-1;;;;;15977:15:0;;;3723:6;;15977:15;;;;:32;;-1:-1:-1;3696:7:0;3723:6;-1:-1:-1;;;;;15996:13:0;;;3723:6;;15996:13;;15977:32;:52;;;;-1:-1:-1;;;;;;16014:15:0;;;;;;:9;:15;;;;;;;;16013:16;15977:52;:70;;;;-1:-1:-1;;;;;;16034:13:0;;;;;;:9;:13;;;;;;;;16033:14;15977:70;15973:1311;;;16102:11;;-1:-1:-1;;;16102:11:0;;;;16097:136;;-1:-1:-1;;;;;16138:15:0;;;;;;:9;:15;;;;;;;;16130:91;;;;-1:-1:-1;;;16130:91:0;;9597:2:1;16130:91:0;;;9579:21:1;9636:2;9616:18;;;9609:30;9675:34;9655:18;;;9648:62;9746:33;9726:18;;;9719:61;9797:19;;16130:91:0;9395:427:1;16130:91:0;16263:12;;16253:6;:22;;16245:63;;;;-1:-1:-1;;;16245:63:0;;10029:2:1;16245:63:0;;;10011:21:1;10068:2;10048:18;;;10041:30;10107;10087:18;;;10080:58;10155:18;;16245:63:0;9827:352:1;16245:63:0;16438:13;;-1:-1:-1;;;;;16432:19:0;;;16438:13;;16432:19;16429:139;;16502:14;;16492:6;16476:13;16486:2;16476:9;:13::i;:::-;:22;;;;:::i;:::-;:40;;16468:88;;;;-1:-1:-1;;;16468:88:0;;10516:2:1;16468:88:0;;;10498:21:1;10555:2;10535:18;;;10528:30;10594:34;10574:18;;;10567:62;-1:-1:-1;;;10645:18:1;;;10638:33;10688:19;;16468:88:0;10314:399:1;16468:88:0;16663:28;16694:24;16712:4;16694:9;:24::i;:::-;16768:19;;16827:12;;16663:55;;-1:-1:-1;16744:43:0;;;;16803:36;;16800:103;;16879:12;;16856:35;;16800:103;16919:7;:18;;;;-1:-1:-1;16931:6:0;;-1:-1:-1;;;16931:6:0;;;;16930:7;16919:18;:43;;;;-1:-1:-1;16949:13:0;;-1:-1:-1;;;;;16941:21:0;;;16949:13;;16941:21;;16919:43;:58;;;;-1:-1:-1;16966:11:0;;-1:-1:-1;;;16966:11:0;;;;16919:58;:87;;;;-1:-1:-1;;;;;;16982:24:0;;;;;;:18;:24;;;;;;;;16981:25;16919:87;:114;;;;-1:-1:-1;;;;;;17011:22:0;;;;;;:18;:22;;;;;;;;17010:23;16919:114;16915:362;;;17050:38;17067:20;17050:16;:38::i;:::-;17132:21;17172:22;;17168:98;;17215:35;17228:21;17215:12;:35::i;:::-;17035:242;16915:362;16049:1235;;15973:1311;-1:-1:-1;;;;;17381:24:0;;17292:12;17381:24;;;:18;:24;;;;;;17307:4;;17381:24;;;:50;;-1:-1:-1;;;;;;17409:22:0;;;;;;:18;:22;;;;;;;;17381:50;17380:102;;;-1:-1:-1;17445:13:0;;-1:-1:-1;;;;;17437:21:0;;;17445:13;;17437:21;;;;:44;;-1:-1:-1;17468:13:0;;-1:-1:-1;;;;;17462:19:0;;;17468:13;;17462:19;;17437:44;17376:540;;;-1:-1:-1;17505:5:0;17376:540;;;17575:13;;-1:-1:-1;;;;;17567:21:0;;;17575:13;;17567:21;:55;;;;-1:-1:-1;17606:15:0;;-1:-1:-1;;;;;17592:30:0;;;17606:15;;17592:30;;17567:55;17564:150;;;17651:14;;17639:9;:26;17690:12;;17680:7;:22;17564:150;17766:13;;-1:-1:-1;;;;;17760:19:0;;;17766:13;;17760:19;:55;;;;-1:-1:-1;17799:15:0;;-1:-1:-1;;;;;17783:32:0;;;17799:15;;17783:32;;17760:55;17756:153;;;17844:15;;17832:9;:27;17884:13;;17874:7;:23;17756:153;17924:41;17939:4;17945:2;17949:6;17957:7;17924:14;:41::i;18894:99::-;18951:17;;:34;;-1:-1:-1;;;;;18951:17:0;;;;:34;;;;;18978:6;;18951:17;:34;:17;:34;18978:6;18951:17;:34;;;;;;;;;;;;;;;;;;;;;18894:99;:::o;13339:251::-;13407:7;13446;;13435;:18;;13427:73;;;;-1:-1:-1;;;13427:73:0;;10920:2:1;13427:73:0;;;10902:21:1;10959:2;10939:18;;;10932:30;10998:34;10978:18;;;10971:62;-1:-1:-1;;;11049:18:1;;;11042:40;11099:19;;13427:73:0;10718:406:1;13427:73:0;13511:19;13533:10;:8;:10::i;:::-;13511:32;-1:-1:-1;13561:21:0;13511:32;13561:7;:21;:::i;:::-;13554:28;13339:251;-1:-1:-1;;;13339:251:0:o;18199:578::-;8610:6;:13;;-1:-1:-1;;;;8610:13:0;-1:-1:-1;;;8610:13:0;;;18301:16:::1;::::0;;18315:1:::1;18301:16:::0;;;;;::::1;::::0;;-1:-1:-1;;18301:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;18301:16:0::1;18277:40;;18346:4;18328;18333:1;18328:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18328:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;18372:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;18372:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;18328:7;;18372:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18362:4;18367:1;18362:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18362:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;18437:15:::1;::::0;18405:62:::1;::::0;18422:4:::1;::::0;18437:15:::1;18455:11:::0;18405:8:::1;:62::i;:::-;18478:15;::::0;:291:::1;::::0;-1:-1:-1;;;18478:291:0;;-1:-1:-1;;;;;18478:15:0;;::::1;::::0;:66:::1;::::0;:291:::1;::::0;18559:11;;18478:15:::1;::::0;18647:4;;18674::::1;::::0;18718:15:::1;::::0;18478:291:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;8646:6:0;:14;;-1:-1:-1;;;;8646:14:0;;;-1:-1:-1;;;;18199:578:0:o;20435:282::-;20591:7;20586:28;;20600:14;:12;:14::i;:::-;20625:44;20643:6;20651:9;20662:6;20625:17;:44::i;:::-;20685:7;20680:29;;20694:15;14197:17;;14185:9;:29;14235:15;;14225:7;:25;14141:117;25440:161;25482:7;25503:15;25520;25539:19;25934:7;;;6614:17;;25828:270;25539:19;25502:56;;-1:-1:-1;25502:56:0;-1:-1:-1;25576:17:0;25502:56;;25576:17;:::i;:::-;25569:24;;;;25440:161;:::o;13759:219::-;13806:9;;:14;:30;;;;-1:-1:-1;13824:7:0;;:12;13806:30;13802:43;;;13759:219::o;13802:43::-;13877:9;;;13857:17;:29;13915:7;;;13897:15;:25;-1:-1:-1;13935:13:0;;;;13959:11;13759:219::o;21006:604::-;21153:15;21183:23;21221:12;21248:23;21286:12;21313:13;21340:19;21351:7;21340:10;:19::i;:::-;-1:-1:-1;;;;;21388:15:0;;;;;;:7;:15;;;;;;21138:221;;-1:-1:-1;21138:221:0;;-1:-1:-1;21138:221:0;;-1:-1:-1;21138:221:0;-1:-1:-1;21138:221:0;-1:-1:-1;21138:221:0;-1:-1:-1;21388:25:0;;21138:221;;21388:25;:::i;:::-;-1:-1:-1;;;;;21370:15:0;;;;;;;:7;:15;;;;;;:43;;;;21445:18;;;;;;;:36;;21466:15;;21445:36;:::i;:::-;-1:-1:-1;;;;;21424:18:0;;;;;;:7;:18;;;;;:57;21492:16;21502:5;21492:9;:16::i;:::-;21519:23;21531:4;21537;21519:11;:23::i;:::-;21575:9;-1:-1:-1;;;;;21558:44:0;21567:6;-1:-1:-1;;;;;21558:44:0;;21586:15;21558:44;;;;1595:25:1;;1583:2;1568:18;;1449:177;21558:44:0;;;;;;;;21127:483;;;;;;21006:604;;;:::o;22950:597::-;23050:15;23080:23;23118:12;23145:23;23183:12;23210:13;23284:40;23296:7;23305:9;;23316:7;;23284:11;:40::i;:::-;23251:73;;-1:-1:-1;23251:73:0;-1:-1:-1;23251:73:0;-1:-1:-1;23335:19:0;23357:10;:8;:10::i;:::-;23335:32;;23413:46;23425:7;23434:4;23440:5;23447:11;23413;:46::i;:::-;23378:81;;-1:-1:-1;23378:81:0;-1:-1:-1;23378:81:0;-1:-1:-1;;22950:597:0;;;;;;;:::o;21780:205::-;21833:19;21855:10;:8;:10::i;:::-;21833:32;-1:-1:-1;21876:13:0;21892:19;21833:32;21892:5;:19;:::i;:::-;21963:4;21947:22;;;;:7;:22;;;;;;21876:35;;-1:-1:-1;21947:30:0;;21876:35;;21947:30;:::i;:::-;21938:4;21922:22;;;;:7;:22;;;;;:55;-1:-1:-1;;;21780:205:0:o;22241:120::-;22320:4;22309:7;;:15;;;;;;;:::i;:::-;;;;;;;;22349:4;22335:10;;:18;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;22241:120:0:o;23911:458::-;24080:23;;;24216:3;24194:18;24204:8;24194:7;:18;:::i;:::-;24193:26;;;;:::i;:::-;24186:33;-1:-1:-1;24259:3:0;24239:16;24249:6;24239:7;:16;:::i;:::-;24238:24;;;;:::i;:::-;24230:32;-1:-1:-1;24230:32:0;24291:14;24301:4;24291:7;:14;:::i;:::-;:22;;;;:::i;:::-;24273:40;;23911:458;;;;;;;:::o;24767:524::-;24961:15;;;25079:21;25089:11;25079:7;:21;:::i;:::-;25069:31;-1:-1:-1;25118:18:0;25125:11;25118:4;:18;:::i;:::-;25111:25;-1:-1:-1;25147:13:0;25163:19;25171:11;25163:5;:19;:::i;:::-;25147:35;-1:-1:-1;25147:35:0;25211:14;25221:4;25211:7;:14;:::i;:::-;:22;;;;:::i;:::-;25193:40;;25244:39;24767:524;;;;;;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:367::-;2552:8;2562:6;2616:3;2609:4;2601:6;2597:17;2593:27;2583:55;;2634:1;2631;2624:12;2583:55;-1:-1:-1;2657:20:1;;2700:18;2689:30;;2686:50;;;2732:1;2729;2722:12;2686:50;2769:4;2761:6;2757:17;2745:29;;2829:3;2822:4;2812:6;2809:1;2805:14;2797:6;2793:27;2789:38;2786:47;2783:67;;;2846:1;2843;2836:12;2783:67;2489:367;;;;;:::o;2861:437::-;2947:6;2955;3008:2;2996:9;2987:7;2983:23;2979:32;2976:52;;;3024:1;3021;3014:12;2976:52;3064:9;3051:23;3097:18;3089:6;3086:30;3083:50;;;3129:1;3126;3119:12;3083:50;3168:70;3230:7;3221:6;3210:9;3206:22;3168:70;:::i;:::-;3257:8;;3142:96;;-1:-1:-1;2861:437:1;-1:-1:-1;;;;2861:437:1:o;3303:160::-;3368:20;;3424:13;;3417:21;3407:32;;3397:60;;3453:1;3450;3443:12;3397:60;3303:160;;;:::o;3468:180::-;3524:6;3577:2;3565:9;3556:7;3552:23;3548:32;3545:52;;;3593:1;3590;3583:12;3545:52;3616:26;3632:9;3616:26;:::i;3653:247::-;3712:6;3765:2;3753:9;3744:7;3740:23;3736:32;3733:52;;;3781:1;3778;3771:12;3733:52;3820:9;3807:23;3839:31;3864:5;3839:31;:::i;3905:180::-;3964:6;4017:2;4005:9;3996:7;3992:23;3988:32;3985:52;;;4033:1;4030;4023:12;3985:52;-1:-1:-1;4056:23:1;;3905:180;-1:-1:-1;3905:180:1:o;4090:385::-;4176:6;4184;4192;4200;4253:3;4241:9;4232:7;4228:23;4224:33;4221:53;;;4270:1;4267;4260:12;4221:53;-1:-1:-1;;4293:23:1;;;4363:2;4348:18;;4335:32;;-1:-1:-1;4414:2:1;4399:18;;4386:32;;4465:2;4450:18;4437:32;;-1:-1:-1;4090:385:1;-1:-1:-1;4090:385:1:o;4480:505::-;4572:6;4580;4588;4641:2;4629:9;4620:7;4616:23;4612:32;4609:52;;;4657:1;4654;4647:12;4609:52;4697:9;4684:23;4730:18;4722:6;4719:30;4716:50;;;4762:1;4759;4752:12;4716:50;4801:70;4863:7;4854:6;4843:9;4839:22;4801:70;:::i;:::-;4890:8;;-1:-1:-1;4775:96:1;-1:-1:-1;4944:35:1;;-1:-1:-1;4975:2:1;4960:18;;4944:35;:::i;:::-;4934:45;;4480:505;;;;;:::o;4990:388::-;5058:6;5066;5119:2;5107:9;5098:7;5094:23;5090:32;5087:52;;;5135:1;5132;5125:12;5087:52;5174:9;5161:23;5193:31;5218:5;5193:31;:::i;:::-;5243:5;-1:-1:-1;5300:2:1;5285:18;;5272:32;5313:33;5272:32;5313:33;:::i;:::-;5365:7;5355:17;;;4990:388;;;;;:::o;5383:127::-;5444:10;5439:3;5435:20;5432:1;5425:31;5475:4;5472:1;5465:15;5499:4;5496:1;5489:15;5515:128;5582:9;;;5603:11;;;5600:37;;;5617:18;;:::i;5648:356::-;5850:2;5832:21;;;5869:18;;;5862:30;5928:34;5923:2;5908:18;;5901:62;5995:2;5980:18;;5648:356::o;6009:127::-;6070:10;6065:3;6061:20;6058:1;6051:31;6101:4;6098:1;6091:15;6125:4;6122:1;6115:15;10184:125;10249:9;;;10270:10;;;10267:36;;;10283:18;;:::i;11129:217::-;11169:1;11195;11185:132;;11239:10;11234:3;11230:20;11227:1;11220:31;11274:4;11271:1;11264:15;11302:4;11299:1;11292:15;11185:132;-1:-1:-1;11331:9:1;;11129:217::o;11483:251::-;11553:6;11606:2;11594:9;11585:7;11581:23;11577:32;11574:52;;;11622:1;11619;11612:12;11574:52;11654:9;11648:16;11673:31;11698:5;11673:31;:::i;11739:980::-;12001:4;12049:3;12038:9;12034:19;12080:6;12069:9;12062:25;12106:2;12144:6;12139:2;12128:9;12124:18;12117:34;12187:3;12182:2;12171:9;12167:18;12160:31;12211:6;12246;12240:13;12277:6;12269;12262:22;12315:3;12304:9;12300:19;12293:26;;12354:2;12346:6;12342:15;12328:29;;12375:1;12385:195;12399:6;12396:1;12393:13;12385:195;;;12464:13;;-1:-1:-1;;;;;12460:39:1;12448:52;;12555:15;;;;12520:12;;;;12496:1;12414:9;12385:195;;;-1:-1:-1;;;;;;;12636:32:1;;;;12631:2;12616:18;;12609:60;-1:-1:-1;;;12700:3:1;12685:19;12678:35;12597:3;11739:980;-1:-1:-1;;;11739:980:1:o;12724:168::-;12797:9;;;12828;;12845:15;;;12839:22;;12825:37;12815:71;;12866:18;;:::i

Swarm Source

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