ETH Price: $3,423.70 (+0.55%)
Gas: 8 Gwei

Token

Sigil Finance (SIGIL)
 

Overview

Max Total Supply

1,000,000,000 SIGIL

Holders

390 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
0xn1nja.eth
Balance
0 SIGIL

Value
$0.00
0xeb535d1565b0d8f2f2069fae7eb83fb1a1a8f70e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Sigil Finance is an Ethereum-based platform that brings the multi-million dollar industry of managed funds to DeFi with the worlds first decentralized marketplace for connecting asset managers and investors.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SigilToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-27
*/

// File: IUniswapV2Factory.sol


pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}
// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

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

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// File: @openzeppelin/[email protected]/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/[email protected]/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/[email protected]/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the 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 view virtual override returns (uint8) {
        return 18;
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contract-014ea2ceca.sol


pragma solidity ^0.8.4;








contract SigilToken is ERC20, ERC20Burnable, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) private _balances;
    mapping(address => bool) private _taxExemptList;
    mapping(address => mapping(address => uint256)) private _allowances;

    
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;

    uint256 public _lpFee = 10000000000000000;
    uint256 public _projectFee = 20000000000000000;
    uint256 public _feeThreshold = 5000000 * 10**18;
    bool private _addingToLiq = false;
    bool public _feesEnabled = true;
    address public immutable _projectWallet;
    address public _stakingPool = address(0);

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    constructor() ERC20("Sigil Finance", "SIGIL") {
        _mint(msg.sender,  1000000000 * 10**18);
        _name = "Sigil Finance";
        _symbol = "SIGIL";

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

        uniswapV2Router = _uniswapV2Router;

        _taxExemptList[owner()] = true;
        _taxExemptList[address(this)] = true;
        _taxExemptList[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true;
        _projectWallet = msg.sender;
        
    }

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

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

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

    function taxExempt(address account) public view returns (bool) {
        return _taxExemptList[account];
    }

    function addToTaxExemptList(address account) public onlyOwner {
        _taxExemptList[account] = true;
    }

    function contractBalance() public view returns (uint256) {
        return _balances[address(this)];
    }

    function disableFees() public onlyOwner {
        _feesEnabled = false;
    }

    function changeStakingPoolAddress(address _address) public onlyOwner {
        _stakingPool = _address;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public override virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }


    function decreaseAllowance(address spender, uint256 subtractedValue) public override virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        if(_taxExemptList[to] == false && from != _stakingPool){
            require(balanceOf(to) + amount < 10000000 * 10**18, "Transfer exceeds maximum wallet size");
        }
        unchecked {
            _balances[from] = fromBalance - amount;
        }

        bool overMinTokenBalance = _balances[address(this)] >= _feeThreshold;
        if (
            overMinTokenBalance &&
            !_addingToLiq &&
            from != uniswapV2Pair
        ) {
            _addingToLiq = true;
            swapAndLiquify(_feeThreshold);
            _addingToLiq = false;
        }

        bool isTaxExempt = (_taxExemptList[from] == true && _taxExemptList[to] == true);
        
        if(from == _stakingPool || to == _stakingPool || isTaxExempt || _feesEnabled == false){
            _balances[to] += amount;
        } else {
            uint256 feeAmount =  amount * (_lpFee + _projectFee) / 10**18;
            _balances[to] += amount - feeAmount;     
            _balances[address(this)] += feeAmount;
        }
 
        
        emit Transfer(from, to, amount);
    }

    function _mint(address account, uint256 amount) internal override virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal override virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal override virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    receive() payable external {}

   function swapAndLiquify(uint256 contractTokenBalance) private {

        uint256 quater = contractTokenBalance / 4;
        uint256 threeQuaters = contractTokenBalance - quater;

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(threeQuaters);

        uint256 newBalance = address(this).balance - initialBalance;

        uint256 newBalanceQuater = newBalance / 3;

        addLiquidity(quater, newBalanceQuater);
        _projectWallet.call{value: newBalance - newBalanceQuater}("");

        emit SwapAndLiquify(threeQuaters / 3, newBalanceQuater, quater);

    }

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

        _approve(address(this), 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, tokenAmount);
        _approve(address(this), uniswapV2Pair, tokenAmount);

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {

        _approve(address(this), 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, tokenAmount);
        _approve(address(this), uniswapV2Pair, tokenAmount);


        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, 
            0, 
            0x000000000000000000000000000000000000dEaD,
            block.timestamp
        );
    }

}

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":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":"_feeThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_lpFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_projectFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_projectWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_stakingPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToTaxExemptList","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"changeStakingPoolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableFees","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":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"taxExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"}]

60e0604052662386f26fc10000600c5566470de4df820000600d556a0422ca8b0a00a425000000600e55600f80546001600160b01b0319166101001790553480156200004a57600080fd5b50604080518082018252600d81526c536967696c2046696e616e636560981b60208083019182528351808501909452600584526414d251d25360da1b9084015281519192916200009d91600391620004e7565b508051620000b3906004906020840190620004e7565b505050620000d0620000ca620003a960201b60201c565b620003ad565b620000e8336b033b2e3c9fd0803ce8000000620003ff565b60408051808201909152600d8082526c536967696c2046696e616e636560981b60209092019182526200011e91600a91620004e7565b506040805180820190915260058082526414d251d25360da1b60209092019182526200014d91600b91620004e7565b506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001a157600080fd5b505afa158015620001b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001dc91906200058d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022557600080fd5b505afa1580156200023a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026091906200058d565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002a957600080fd5b505af1158015620002be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e491906200058d565b6001600160601b0319606091821b811660c0529082901b1660a052600160076000620003186005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260079092528120805483166001908117909155737a250d5630b4cf539739df2c5dacb4c659f2488d9091527ffd21a1ac9a14dff647460ce8ad2ccecb794a59a4cfbb8678b1f9900a6a99551f8054909216179055503360601b6080526200061f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200045a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600960008282546200046e9190620005bd565b90915550506001600160a01b038216600090815260066020526040812080548392906200049d908490620005bd565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620004f590620005e2565b90600052602060002090601f01602090048101928262000519576000855562000564565b82601f106200053457805160ff191683800117855562000564565b8280016001018555821562000564579182015b828111156200056457825182559160200191906001019062000547565b506200057292915062000576565b5090565b5b8082111562000572576000815560010162000577565b6000602082840312156200059f578081fd5b81516001600160a01b0381168114620005b6578182fd5b9392505050565b60008219821115620005dd57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620005f757607f821691505b602082108114156200061957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160601c60c05160601c6117d2620006896000396000818161039d01528181610ca30152818161131f01526113f40152600081816102790152818161122a0152818161135b0152611451015260008181610492015261110301526117d26000f3fe6080604052600436106101c65760003560e01c806367205c9c116100f75780638da5cb5b11610095578063ce404b2311610064578063ce404b2314610549578063d1ecfc681461055e578063dd62ed3e14610597578063f2fde38b146105b757600080fd5b80638da5cb5b146104d657806395d89b41146104f4578063a457c2d714610509578063a9059cbb1461052957600080fd5b806379cc6790116100d157806379cc67901461044a5780637a2e4bfd1461046a5780637a5ffd7a146104805780638b7afe2e146104b457600080fd5b806367205c9c146103df57806370a08231146103ff578063715018a61461043557600080fd5b8063313ce567116101645780633d0741101161013e5780633d0741101461034357806342966c681461036957806349bd5a5e1461038b57806353754abb146103bf57600080fd5b8063313ce567146102e857806337a897f614610304578063395093511461032357600080fd5b806315c93a7d116101a057806315c93a7d146102515780631694505e1461026757806318160ddd146102b357806323b872dd146102c857600080fd5b806306fdde03146101d2578063095ea7b3146101fd5780630bfe93271461022d57600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101e76105d7565b6040516101f49190611605565b60405180910390f35b34801561020957600080fd5b5061021d610218366004611595565b610669565b60405190151581526020016101f4565b34801561023957600080fd5b50610243600d5481565b6040519081526020016101f4565b34801561025d57600080fd5b50610243600c5481565b34801561027357600080fd5b5061029b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101f4565b3480156102bf57600080fd5b50600954610243565b3480156102d457600080fd5b5061021d6102e3366004611555565b610681565b3480156102f457600080fd5b50604051601281526020016101f4565b34801561031057600080fd5b50600f5461021d90610100900460ff1681565b34801561032f57600080fd5b5061021d61033e366004611595565b6106a5565b34801561034f57600080fd5b50600f5461029b906201000090046001600160a01b031681565b34801561037557600080fd5b506103896103843660046115c0565b6106c7565b005b34801561039757600080fd5b5061029b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103cb57600080fd5b506103896103da3660046114de565b6106d4565b3480156103eb57600080fd5b506103896103fa3660046114de565b610700565b34801561040b57600080fd5b5061024361041a3660046114de565b6001600160a01b031660009081526006602052604090205490565b34801561044157600080fd5b50610389610732565b34801561045657600080fd5b50610389610465366004611595565b610746565b34801561047657600080fd5b50610243600e5481565b34801561048c57600080fd5b5061029b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104c057600080fd5b5030600090815260066020526040902054610243565b3480156104e257600080fd5b506005546001600160a01b031661029b565b34801561050057600080fd5b506101e761075f565b34801561051557600080fd5b5061021d610524366004611595565b61076e565b34801561053557600080fd5b5061021d610544366004611595565b6107ee565b34801561055557600080fd5b506103896107fc565b34801561056a57600080fd5b5061021d6105793660046114de565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156105a357600080fd5b506102436105b236600461151d565b610811565b3480156105c357600080fd5b506103896105d23660046114de565b61083c565b6060600a80546105e690611736565b80601f016020809104026020016040519081016040528092919081815260200182805461061290611736565b801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b5050505050905090565b6000336106778185856108b2565b5060019392505050565b60003361068f8582856109d7565b61069a858585610a51565b506001949350505050565b6000336106778185856106b88383610811565b6106c291906116c8565b6108b2565b6106d13382610eb9565b50565b6106dc610fff565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b610708610fff565b600f80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b61073a610fff565b6107446000611059565b565b6107518233836109d7565b61075b8282610eb9565b5050565b6060600b80546105e690611736565b6000338161077c8286610811565b9050838110156107e15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61069a82868684036108b2565b600033610677818585610a51565b610804610fff565b600f805461ff0019169055565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b610844610fff565b6001600160a01b0381166108a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d8565b6106d181611059565b6001600160a01b0383166109145760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d8565b6001600160a01b0382166109755760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d8565b6001600160a01b0383811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006109e38484610811565b90506000198114610a4b5781811015610a3e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107d8565b610a4b84848484036108b2565b50505050565b6001600160a01b038316610ab55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107d8565b6001600160a01b038216610b175760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107d8565b6001600160a01b03831660009081526006602052604090205481811015610b8f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107d8565b6001600160a01b03831660009081526007602052604090205460ff16158015610bcc5750600f546001600160a01b03858116620100009092041614155b15610c60576a084595161401484a00000082610bfd856001600160a01b031660009081526006602052604090205490565b610c0791906116c8565b10610c605760405162461bcd60e51b8152602060048201526024808201527f5472616e736665722065786365656473206d6178696d756d2077616c6c65742060448201526373697a6560e01b60648201526084016107d8565b6001600160a01b0384166000908152600660205260408082208484039055600e54308352912054108015908190610c9a5750600f5460ff16155b8015610cd857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b15610d0157600f805460ff19166001179055600e54610cf6906110ab565b600f805460ff191690555b6001600160a01b03851660009081526007602052604081205460ff1615156001148015610d4b57506001600160a01b03851660009081526007602052604090205460ff1615156001145b600f549091506001600160a01b0387811662010000909204161480610d835750600f546001600160a01b038681166201000090920416145b80610d8b5750805b80610d9e5750600f54610100900460ff16155b15610dd6576001600160a01b03851660009081526006602052604081208054869290610dcb9084906116c8565b90915550610e649050565b6000670de0b6b3a7640000600d54600c54610df191906116c8565b610dfb9087611700565b610e0591906116e0565b9050610e11818661171f565b6001600160a01b03871660009081526006602052604081208054909190610e399084906116c8565b90915550503060009081526006602052604081208054839290610e5d9084906116c8565b9091555050505b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051610ea991815260200190565b60405180910390a3505050505050565b6001600160a01b038216610f195760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016107d8565b6001600160a01b03821660009081526006602052604090205481811015610f8d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016107d8565b6001600160a01b0383166000908152600660205260408120838303905560098054849290610fbc90849061171f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016109ca565b6005546001600160a01b031633146107445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d8565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006110b86004836116e0565b905060006110c6828461171f565b9050476110d2826111c5565b60006110de824761171f565b905060006110ed6003836116e0565b90506110f985826113cf565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001661112d828461171f565b604051600081818185875af1925050503d8060008114611169576040519150601f19603f3d011682016040523d82523d6000602084013e61116e565b606091505b5050507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56160038561119f91906116e0565b6040805191825260208201849052810187905260600160405180910390a1505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061120857634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561128157600080fd5b505afa158015611295573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b99190611501565b816001815181106112da57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b03168152505061131930737a250d5630b4cf539739df2c5dacb4c659f2488d846108b2565b611344307f0000000000000000000000000000000000000000000000000000000000000000846108b2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611399908590600090869030904290600401611658565b600060405180830381600087803b1580156113b357600080fd5b505af11580156113c7573d6000803e3d6000fd5b505050505050565b6113ee30737a250d5630b4cf539739df2c5dacb4c659f2488d846108b2565b611419307f0000000000000000000000000000000000000000000000000000000000000000846108b2565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561149e57600080fd5b505af11580156114b2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114d791906115d8565b5050505050565b6000602082840312156114ef578081fd5b81356114fa81611787565b9392505050565b600060208284031215611512578081fd5b81516114fa81611787565b6000806040838503121561152f578081fd5b823561153a81611787565b9150602083013561154a81611787565b809150509250929050565b600080600060608486031215611569578081fd5b833561157481611787565b9250602084013561158481611787565b929592945050506040919091013590565b600080604083850312156115a7578182fd5b82356115b281611787565b946020939093013593505050565b6000602082840312156115d1578081fd5b5035919050565b6000806000606084860312156115ec578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b8181101561163157858101830151858201604001528201611615565b818111156116425783604083870101525b50601f01601f1916929092016040019392505050565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156116a75784516001600160a01b031683529383019391830191600101611682565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156116db576116db611771565b500190565b6000826116fb57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561171a5761171a611771565b500290565b60008282101561173157611731611771565b500390565b600181811c9082168061174a57607f821691505b6020821081141561176b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146106d157600080fdfea264697066735822122077b4fb23070d75cdf3465ebe0313a65ba3ea9accbd877098b12d2c446f77842d64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806367205c9c116100f75780638da5cb5b11610095578063ce404b2311610064578063ce404b2314610549578063d1ecfc681461055e578063dd62ed3e14610597578063f2fde38b146105b757600080fd5b80638da5cb5b146104d657806395d89b41146104f4578063a457c2d714610509578063a9059cbb1461052957600080fd5b806379cc6790116100d157806379cc67901461044a5780637a2e4bfd1461046a5780637a5ffd7a146104805780638b7afe2e146104b457600080fd5b806367205c9c146103df57806370a08231146103ff578063715018a61461043557600080fd5b8063313ce567116101645780633d0741101161013e5780633d0741101461034357806342966c681461036957806349bd5a5e1461038b57806353754abb146103bf57600080fd5b8063313ce567146102e857806337a897f614610304578063395093511461032357600080fd5b806315c93a7d116101a057806315c93a7d146102515780631694505e1461026757806318160ddd146102b357806323b872dd146102c857600080fd5b806306fdde03146101d2578063095ea7b3146101fd5780630bfe93271461022d57600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101e76105d7565b6040516101f49190611605565b60405180910390f35b34801561020957600080fd5b5061021d610218366004611595565b610669565b60405190151581526020016101f4565b34801561023957600080fd5b50610243600d5481565b6040519081526020016101f4565b34801561025d57600080fd5b50610243600c5481565b34801561027357600080fd5b5061029b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101f4565b3480156102bf57600080fd5b50600954610243565b3480156102d457600080fd5b5061021d6102e3366004611555565b610681565b3480156102f457600080fd5b50604051601281526020016101f4565b34801561031057600080fd5b50600f5461021d90610100900460ff1681565b34801561032f57600080fd5b5061021d61033e366004611595565b6106a5565b34801561034f57600080fd5b50600f5461029b906201000090046001600160a01b031681565b34801561037557600080fd5b506103896103843660046115c0565b6106c7565b005b34801561039757600080fd5b5061029b7f000000000000000000000000cc67317ba97659c96d0ad1beb1a5cb703d36550281565b3480156103cb57600080fd5b506103896103da3660046114de565b6106d4565b3480156103eb57600080fd5b506103896103fa3660046114de565b610700565b34801561040b57600080fd5b5061024361041a3660046114de565b6001600160a01b031660009081526006602052604090205490565b34801561044157600080fd5b50610389610732565b34801561045657600080fd5b50610389610465366004611595565b610746565b34801561047657600080fd5b50610243600e5481565b34801561048c57600080fd5b5061029b7f00000000000000000000000079fd86538966541681cb7e8acf5ef4767736a14281565b3480156104c057600080fd5b5030600090815260066020526040902054610243565b3480156104e257600080fd5b506005546001600160a01b031661029b565b34801561050057600080fd5b506101e761075f565b34801561051557600080fd5b5061021d610524366004611595565b61076e565b34801561053557600080fd5b5061021d610544366004611595565b6107ee565b34801561055557600080fd5b506103896107fc565b34801561056a57600080fd5b5061021d6105793660046114de565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156105a357600080fd5b506102436105b236600461151d565b610811565b3480156105c357600080fd5b506103896105d23660046114de565b61083c565b6060600a80546105e690611736565b80601f016020809104026020016040519081016040528092919081815260200182805461061290611736565b801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b5050505050905090565b6000336106778185856108b2565b5060019392505050565b60003361068f8582856109d7565b61069a858585610a51565b506001949350505050565b6000336106778185856106b88383610811565b6106c291906116c8565b6108b2565b6106d13382610eb9565b50565b6106dc610fff565b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b610708610fff565b600f80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b61073a610fff565b6107446000611059565b565b6107518233836109d7565b61075b8282610eb9565b5050565b6060600b80546105e690611736565b6000338161077c8286610811565b9050838110156107e15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61069a82868684036108b2565b600033610677818585610a51565b610804610fff565b600f805461ff0019169055565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b610844610fff565b6001600160a01b0381166108a95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d8565b6106d181611059565b6001600160a01b0383166109145760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d8565b6001600160a01b0382166109755760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d8565b6001600160a01b0383811660008181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006109e38484610811565b90506000198114610a4b5781811015610a3e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107d8565b610a4b84848484036108b2565b50505050565b6001600160a01b038316610ab55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107d8565b6001600160a01b038216610b175760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107d8565b6001600160a01b03831660009081526006602052604090205481811015610b8f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107d8565b6001600160a01b03831660009081526007602052604090205460ff16158015610bcc5750600f546001600160a01b03858116620100009092041614155b15610c60576a084595161401484a00000082610bfd856001600160a01b031660009081526006602052604090205490565b610c0791906116c8565b10610c605760405162461bcd60e51b8152602060048201526024808201527f5472616e736665722065786365656473206d6178696d756d2077616c6c65742060448201526373697a6560e01b60648201526084016107d8565b6001600160a01b0384166000908152600660205260408082208484039055600e54308352912054108015908190610c9a5750600f5460ff16155b8015610cd857507f000000000000000000000000cc67317ba97659c96d0ad1beb1a5cb703d3655026001600160a01b0316856001600160a01b031614155b15610d0157600f805460ff19166001179055600e54610cf6906110ab565b600f805460ff191690555b6001600160a01b03851660009081526007602052604081205460ff1615156001148015610d4b57506001600160a01b03851660009081526007602052604090205460ff1615156001145b600f549091506001600160a01b0387811662010000909204161480610d835750600f546001600160a01b038681166201000090920416145b80610d8b5750805b80610d9e5750600f54610100900460ff16155b15610dd6576001600160a01b03851660009081526006602052604081208054869290610dcb9084906116c8565b90915550610e649050565b6000670de0b6b3a7640000600d54600c54610df191906116c8565b610dfb9087611700565b610e0591906116e0565b9050610e11818661171f565b6001600160a01b03871660009081526006602052604081208054909190610e399084906116c8565b90915550503060009081526006602052604081208054839290610e5d9084906116c8565b9091555050505b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051610ea991815260200190565b60405180910390a3505050505050565b6001600160a01b038216610f195760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016107d8565b6001600160a01b03821660009081526006602052604090205481811015610f8d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016107d8565b6001600160a01b0383166000908152600660205260408120838303905560098054849290610fbc90849061171f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016109ca565b6005546001600160a01b031633146107445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d8565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006110b86004836116e0565b905060006110c6828461171f565b9050476110d2826111c5565b60006110de824761171f565b905060006110ed6003836116e0565b90506110f985826113cf565b6001600160a01b037f00000000000000000000000079fd86538966541681cb7e8acf5ef4767736a1421661112d828461171f565b604051600081818185875af1925050503d8060008114611169576040519150601f19603f3d011682016040523d82523d6000602084013e61116e565b606091505b5050507f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56160038561119f91906116e0565b6040805191825260208201849052810187905260600160405180910390a1505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061120857634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561128157600080fd5b505afa158015611295573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b99190611501565b816001815181106112da57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b03168152505061131930737a250d5630b4cf539739df2c5dacb4c659f2488d846108b2565b611344307f000000000000000000000000cc67317ba97659c96d0ad1beb1a5cb703d365502846108b2565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611399908590600090869030904290600401611658565b600060405180830381600087803b1580156113b357600080fd5b505af11580156113c7573d6000803e3d6000fd5b505050505050565b6113ee30737a250d5630b4cf539739df2c5dacb4c659f2488d846108b2565b611419307f000000000000000000000000cc67317ba97659c96d0ad1beb1a5cb703d365502846108b2565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561149e57600080fd5b505af11580156114b2573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114d791906115d8565b5050505050565b6000602082840312156114ef578081fd5b81356114fa81611787565b9392505050565b600060208284031215611512578081fd5b81516114fa81611787565b6000806040838503121561152f578081fd5b823561153a81611787565b9150602083013561154a81611787565b809150509250929050565b600080600060608486031215611569578081fd5b833561157481611787565b9250602084013561158481611787565b929592945050506040919091013590565b600080604083850312156115a7578182fd5b82356115b281611787565b946020939093013593505050565b6000602082840312156115d1578081fd5b5035919050565b6000806000606084860312156115ec578283fd5b8351925060208401519150604084015190509250925092565b6000602080835283518082850152825b8181101561163157858101830151858201604001528201611615565b818111156116425783604083870101525b50601f01601f1916929092016040019392505050565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b818110156116a75784516001600160a01b031683529383019391830191600101611682565b50506001600160a01b03969096166060850152505050608001529392505050565b600082198211156116db576116db611771565b500190565b6000826116fb57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561171a5761171a611771565b500290565b60008282101561173157611731611771565b500390565b600181811c9082168061174a57607f821691505b6020821081141561176b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146106d157600080fdfea264697066735822122077b4fb23070d75cdf3465ebe0313a65ba3ea9accbd877098b12d2c446f77842d64736f6c63430008040033

Deployed Bytecode Sourcemap

42813:9562:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44529:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45461:201;;;;;;;;;;-1:-1:-1;45461:201:0;;;;;:::i;:::-;;:::i;:::-;;;3457:14:1;;3450:22;3432:41;;3420:2;3405:18;45461:201:0;3387:92:1;43269:46:0;;;;;;;;;;;;;;;;;;;9239:25:1;;;9227:2;9212:18;43269:46:0;9194:76:1;43221:41:0;;;;;;;;;;;;;;;;43549:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2636:32:1;;;2618:51;;2606:2;2591:18;43549:51:0;2573:102:1;44850:108:0;;;;;;;;;;-1:-1:-1;44938:12:0;;44850:108;;46230:295;;;;;;;;;;-1:-1:-1;46230:295:0;;;;;:::i;:::-;;:::i;44749:93::-;;;;;;;;;;-1:-1:-1;44749:93:0;;44832:2;10729:36:1;;10717:2;10702:18;44749:93:0;10684:87:1;43416:31:0;;;;;;;;;;-1:-1:-1;43416:31:0;;;;;;;;;;;46533:247;;;;;;;;;;-1:-1:-1;46533:247:0;;;;;:::i;:::-;;:::i;43500:40::-;;;;;;;;;;-1:-1:-1;43500:40:0;;;;;;;-1:-1:-1;;;;;43500:40:0;;;42153:91;;;;;;;;;;-1:-1:-1;42153:91:0;;;;;:::i;:::-;;:::i;:::-;;43607:38;;;;;;;;;;;;;;;45790:111;;;;;;;;;;-1:-1:-1;45790:111:0;;;;;:::i;:::-;;:::i;46111:::-;;;;;;;;;;-1:-1:-1;46111:111:0;;;;;:::i;:::-;;:::i;44966:127::-;;;;;;;;;;-1:-1:-1;44966:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;45067:18:0;45040:7;45067:18;;;:9;:18;;;;;;;44966:127;24183:103;;;;;;;;;;;;;:::i;42563:164::-;;;;;;;;;;-1:-1:-1;42563:164:0;;;;;:::i;:::-;;:::i;43322:47::-;;;;;;;;;;;;;;;;43454:39;;;;;;;;;;;;;;;45909:107;;;;;;;;;;-1:-1:-1;46002:4:0;45957:7;45984:24;;;:9;:24;;;;;;45909:107;;23535:87;;;;;;;;;;-1:-1:-1;23608:6:0;;-1:-1:-1;;;;;23608:6:0;23535:87;;44637:104;;;;;;;;;;;;;:::i;46790:445::-;;;;;;;;;;-1:-1:-1;46790:445:0;;;;;:::i;:::-;;:::i;45101:193::-;;;;;;;;;;-1:-1:-1;45101:193:0;;;;;:::i;:::-;;:::i;46024:79::-;;;;;;;;;;;;;:::i;45670:112::-;;;;;;;;;;-1:-1:-1;45670:112:0;;;;;:::i;:::-;-1:-1:-1;;;;;45751:23:0;45727:4;45751:23;;;:14;:23;;;;;;;;;45670:112;45302:151;;;;;;;;;;-1:-1:-1;45302:151:0;;;;;:::i;:::-;;:::i;24441:201::-;;;;;;;;;;-1:-1:-1;24441:201:0;;;;;:::i;:::-;;:::i;44529:100::-;44583:13;44616:5;44609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44529:100;:::o;45461:201::-;45544:4;22160:10;45600:32;22160:10;45616:7;45625:6;45600:8;:32::i;:::-;-1:-1:-1;45650:4:0;;45461:201;-1:-1:-1;;;45461:201:0:o;46230:295::-;46361:4;22160:10;46419:38;46435:4;22160:10;46450:6;46419:15;:38::i;:::-;46468:27;46478:4;46484:2;46488:6;46468:9;:27::i;:::-;-1:-1:-1;46513:4:0;;46230:295;-1:-1:-1;;;;46230:295:0:o;46533:247::-;46630:4;22160:10;46686:64;22160:10;46702:7;46739:10;46711:25;22160:10;46702:7;46711:9;:25::i;:::-;:38;;;;:::i;:::-;46686:8;:64::i;42153:91::-;42209:27;22160:10;42229:6;42209:5;:27::i;:::-;42153:91;:::o;45790:111::-;23421:13;:11;:13::i;:::-;-1:-1:-1;;;;;45863:23:0::1;;::::0;;;:14:::1;:23;::::0;;;;:30;;-1:-1:-1;;45863:30:0::1;45889:4;45863:30;::::0;;45790:111::o;46111:::-;23421:13;:11;:13::i;:::-;46191:12:::1;:23:::0;;-1:-1:-1;;;;;46191:23:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;46191:23:0;;::::1;::::0;;;::::1;::::0;;46111:111::o;24183:103::-;23421:13;:11;:13::i;:::-;24248:30:::1;24275:1;24248:18;:30::i;:::-;24183:103::o:0;42563:164::-;42640:46;42656:7;22160:10;42679:6;42640:15;:46::i;:::-;42697:22;42703:7;42712:6;42697:5;:22::i;:::-;42563:164;;:::o;44637:104::-;44693:13;44726:7;44719:14;;;;;:::i;46790:445::-;46892:4;22160:10;46892:4;46975:25;22160:10;46992:7;46975:9;:25::i;:::-;46948:52;;47039:15;47019:16;:35;;47011:85;;;;-1:-1:-1;;;47011:85:0;;8889:2:1;47011:85:0;;;8871:21:1;8928:2;8908:18;;;8901:30;8967:34;8947:18;;;8940:62;-1:-1:-1;;;9018:18:1;;;9011:35;9063:19;;47011:85:0;;;;;;;;;47132:60;47141:5;47148:7;47176:15;47157:16;:34;47132:8;:60::i;45101:193::-;45180:4;22160:10;45236:28;22160:10;45253:2;45257:6;45236:9;:28::i;46024:79::-;23421:13;:11;:13::i;:::-;46075:12:::1;:20:::0;;-1:-1:-1;;46075:20:0::1;::::0;;46024:79::o;45302:151::-;-1:-1:-1;;;;;45418:18:0;;;45391:7;45418:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;45302:151::o;24441:201::-;23421:13;:11;:13::i;:::-;-1:-1:-1;;;;;24530:22:0;::::1;24522:73;;;::::0;-1:-1:-1;;;24522:73:0;;5335:2:1;24522:73:0::1;::::0;::::1;5317:21:1::0;5374:2;5354:18;;;5347:30;5413:34;5393:18;;;5386:62;-1:-1:-1;;;5464:18:1;;;5457:36;5510:19;;24522:73:0::1;5307:228:1::0;24522:73:0::1;24606:28;24625:8;24606:18;:28::i;49794:389::-:0;-1:-1:-1;;;;;49939:19:0;;49931:68;;;;-1:-1:-1;;;49931:68:0;;8484:2:1;49931:68:0;;;8466:21:1;8523:2;8503:18;;;8496:30;8562:34;8542:18;;;8535:62;-1:-1:-1;;;8613:18:1;;;8606:34;8657:19;;49931:68:0;8456:226:1;49931:68:0;-1:-1:-1;;;;;50018:21:0;;50010:68;;;;-1:-1:-1;;;50010:68:0;;5742:2:1;50010:68:0;;;5724:21:1;5781:2;5761:18;;;5754:30;5820:34;5800:18;;;5793:62;-1:-1:-1;;;5871:18:1;;;5864:32;5913:19;;50010:68:0;5714:224:1;50010:68:0;-1:-1:-1;;;;;50091:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;50143:32;;9239:25:1;;;50143:32:0;;9212:18:1;50143:32:0;;;;;;;;49794:389;;;:::o;50191:462::-;50335:24;50362:25;50372:5;50379:7;50362:9;:25::i;:::-;50335:52;;-1:-1:-1;;50402:16:0;:37;50398:248;;50484:6;50464:16;:26;;50456:68;;;;-1:-1:-1;;;50456:68:0;;6145:2:1;50456:68:0;;;6127:21:1;6184:2;6164:18;;;6157:30;6223:31;6203:18;;;6196:59;6272:18;;50456:68:0;6117:179:1;50456:68:0;50568:51;50577:5;50584:7;50612:6;50593:16;:25;50568:8;:51::i;:::-;50191:462;;;;:::o;47243:1519::-;-1:-1:-1;;;;;47383:18:0;;47375:68;;;;-1:-1:-1;;;47375:68:0;;8078:2:1;47375:68:0;;;8060:21:1;8117:2;8097:18;;;8090:30;8156:34;8136:18;;;8129:62;-1:-1:-1;;;8207:18:1;;;8200:35;8252:19;;47375:68:0;8050:227:1;47375:68:0;-1:-1:-1;;;;;47462:16:0;;47454:64;;;;-1:-1:-1;;;47454:64:0;;4528:2:1;47454:64:0;;;4510:21:1;4567:2;4547:18;;;4540:30;4606:34;4586:18;;;4579:62;-1:-1:-1;;;4657:18:1;;;4650:33;4700:19;;47454:64:0;4500:225:1;47454:64:0;-1:-1:-1;;;;;47551:15:0;;47529:19;47551:15;;;:9;:15;;;;;;47585:21;;;;47577:72;;;;-1:-1:-1;;;47577:72:0;;6503:2:1;47577:72:0;;;6485:21:1;6542:2;6522:18;;;6515:30;6581:34;6561:18;;;6554:62;-1:-1:-1;;;6632:18:1;;;6625:36;6678:19;;47577:72:0;6475:228:1;47577:72:0;-1:-1:-1;;;;;47663:18:0;;;;;;:14;:18;;;;;;;;:27;;;:51;;-1:-1:-1;47702:12:0;;-1:-1:-1;;;;;47694:20:0;;;47702:12;;;;;47694:20;;47663:51;47660:173;;;47763:17;47754:6;47738:13;47748:2;-1:-1:-1;;;;;45067:18:0;45040:7;45067:18;;;:9;:18;;;;;;;44966:127;47738:13;:22;;;;:::i;:::-;:42;47730:91;;;;-1:-1:-1;;;47730:91:0;;6910:2:1;47730:91:0;;;6892:21:1;6949:2;6929:18;;;6922:30;6988:34;6968:18;;;6961:62;-1:-1:-1;;;7039:18:1;;;7032:34;7083:19;;47730:91:0;6882:226:1;47730:91:0;-1:-1:-1;;;;;47868:15:0;;;;;;:9;:15;;;;;;47886:20;;;47868:38;;47985:13;;47975:4;47957:24;;;;;:41;;;;;;48027:49;;-1:-1:-1;48064:12:0;;;;48063:13;48027:49;:87;;;;;48101:13;-1:-1:-1;;;;;48093:21:0;:4;-1:-1:-1;;;;;48093:21:0;;;48027:87;48009:242;;;48141:12;:19;;-1:-1:-1;;48141:19:0;48156:4;48141:19;;;48190:13;;48175:29;;:14;:29::i;:::-;48219:12;:20;;-1:-1:-1;;48219:20:0;;;48009:242;-1:-1:-1;;;;;48283:20:0;;48263:16;48283:20;;;:14;:20;;;;;;;;:28;;:20;:28;:58;;;;-1:-1:-1;;;;;;48315:18:0;;;;;;:14;:18;;;;;;;;:26;;:18;:26;48283:58;48374:12;;48263:79;;-1:-1:-1;;;;;;48366:20:0;;;48374:12;;;;;48366:20;;:42;;-1:-1:-1;48396:12:0;;-1:-1:-1;;;;;48390:18:0;;;48396:12;;;;;48390:18;48366:42;:57;;;;48412:11;48366:57;:82;;;-1:-1:-1;48427:12:0;;;;;;;:21;48366:82;48363:337;;;-1:-1:-1;;;;;48464:13:0;;;;;;:9;:13;;;;;:23;;48481:6;;48464:13;:23;;48481:6;;48464:23;:::i;:::-;;;;-1:-1:-1;48363:337:0;;-1:-1:-1;48363:337:0;;48520:17;48575:6;48560:11;;48551:6;;:20;;;;:::i;:::-;48541:31;;:6;:31;:::i;:::-;:40;;;;:::i;:::-;48520:61;-1:-1:-1;48613:18:0;48520:61;48613:6;:18;:::i;:::-;-1:-1:-1;;;;;48596:13:0;;;;;;:9;:13;;;;;:35;;:13;;;:35;;;;;:::i;:::-;;;;-1:-1:-1;;48669:4:0;48651:24;;;;:9;:24;;;;;:37;;48679:9;;48651:24;:37;;48679:9;;48651:37;:::i;:::-;;;;-1:-1:-1;;;48363:337:0;48743:2;-1:-1:-1;;;;;48728:26:0;48737:4;-1:-1:-1;;;;;48728:26:0;;48747:6;48728:26;;;;9239:25:1;;9227:2;9212:18;;9194:76;48728:26:0;;;;;;;;47243:1519;;;;;;:::o;49186:600::-;-1:-1:-1;;;;;49279:21:0;;49271:67;;;;-1:-1:-1;;;49271:67:0;;7676:2:1;49271:67:0;;;7658:21:1;7715:2;7695:18;;;7688:30;7754:34;7734:18;;;7727:62;-1:-1:-1;;;7805:18:1;;;7798:31;7846:19;;49271:67:0;7648:223:1;49271:67:0;-1:-1:-1;;;;;49438:18:0;;49413:22;49438:18;;;:9;:18;;;;;;49475:24;;;;49467:71;;;;-1:-1:-1;;;49467:71:0;;4932:2:1;49467:71:0;;;4914:21:1;4971:2;4951:18;;;4944:30;5010:34;4990:18;;;4983:62;-1:-1:-1;;;5061:18:1;;;5054:32;5103:19;;49467:71:0;4904:224:1;49467:71:0;-1:-1:-1;;;;;49574:18:0;;;;;;:9;:18;;;;;49595:23;;;49574:44;;49640:12;:22;;49612:6;;49574:18;49640:22;;49612:6;;49640:22;:::i;:::-;;;;-1:-1:-1;;49680:37:0;;9239:25:1;;;49706:1:0;;-1:-1:-1;;;;;49680:37:0;;;;;9227:2:1;9212:18;49680:37:0;9194:76:1;23700:132:0;23608:6;;-1:-1:-1;;;;;23608:6:0;22160:10;23764:23;23756:68;;;;-1:-1:-1;;;23756:68:0;;7315:2:1;23756:68:0;;;7297:21:1;;;7334:18;;;7327:30;7393:34;7373:18;;;7366:62;7445:18;;23756:68:0;7287:182:1;24802:191:0;24895:6;;;-1:-1:-1;;;;;24912:17:0;;;-1:-1:-1;;;;;;24912:17:0;;;;;;;24945:40;;24895:6;;;24912:17;24895:6;;24945:40;;24876:16;;24945:40;24802:191;;:::o;50697:616::-;50772:14;50789:24;50812:1;50789:20;:24;:::i;:::-;50772:41;-1:-1:-1;50824:20:0;50847:29;50772:41;50847:20;:29;:::i;:::-;50824:52;-1:-1:-1;50914:21:0;50948:30;50824:52;50948:16;:30::i;:::-;50991:18;51012:38;51036:14;51012:21;:38;:::i;:::-;50991:59;-1:-1:-1;51063:24:0;51090:14;51103:1;50991:59;51090:14;:::i;:::-;51063:41;;51117:38;51130:6;51138:16;51117:12;:38::i;:::-;-1:-1:-1;;;;;51166:14:0;:19;51193:29;51206:16;51193:10;:29;:::i;:::-;51166:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51245:58;51275:1;51260:12;:16;;;;:::i;:::-;51245:58;;;10465:25:1;;;10521:2;10506:18;;10499:34;;;10549:18;;10542:34;;;10453:2;10438:18;51245:58:0;;;;;;;50697:616;;;;;;:::o;51321:557::-;51412:16;;;51426:1;51412:16;;;;;;;;51388:21;;51412:16;;;;;;;;;;-1:-1:-1;51412:16:0;51388:40;;51457:4;51439;51444:1;51439:7;;;;;;-1:-1:-1;;;51439:7:0;;;;;;;;;;;;;;:23;-1:-1:-1;;;;;51439:23:0;;;-1:-1:-1;;;;;51439:23:0;;;;;51483:15;-1:-1:-1;;;;;51483:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51473:4;51478:1;51473:7;;;;;;-1:-1:-1;;;51473:7:0;;;;;;;;;;;;;;:32;-1:-1:-1;;;;;51473:32:0;;;-1:-1:-1;;;;;51473:32:0;;;;;51518:80;51535:4;51542:42;51586:11;51518:8;:80::i;:::-;51609:51;51626:4;51633:13;51648:11;51609:8;:51::i;:::-;51673:197;;-1:-1:-1;;;51673:197:0;;-1:-1:-1;;;;;51673:15:0;:66;;;;:197;;51754:11;;51780:1;;51797:4;;51824;;51844:15;;51673:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51321:557;;:::o;51886:484::-;51970:80;51987:4;51994:42;52038:11;51970:8;:80::i;:::-;52061:51;52078:4;52085:13;52100:11;52061:8;:51::i;:::-;52127:235;;-1:-1:-1;;;52127:235:0;;52199:4;52127:235;;;3021:34:1;3071:18;;;3064:34;;;52245:1:0;3114:18:1;;;3107:34;;;3157:18;;;3150:34;52279:42:0;3200:19:1;;;3193:44;52336:15:0;3253:19:1;;;3246:35;52127:15:0;-1:-1:-1;;;;;52127:31:0;;;;52166:9;;2955:19:1;;52127:235:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;51886:484;;:::o;14:257:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;:::-;260:5;84:187;-1:-1:-1;;;84:187:1:o;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;542:398::-;610:6;618;671:2;659:9;650:7;646:23;642:32;639:2;;;692:6;684;677:22;639:2;736:9;723:23;755:31;780:5;755:31;:::i;:::-;805:5;-1:-1:-1;862:2:1;847:18;;834:32;875:33;834:32;875:33;:::i;:::-;927:7;917:17;;;629:311;;;;;:::o;945:466::-;1022:6;1030;1038;1091:2;1079:9;1070:7;1066:23;1062:32;1059:2;;;1112:6;1104;1097:22;1059:2;1156:9;1143:23;1175:31;1200:5;1175:31;:::i;:::-;1225:5;-1:-1:-1;1282:2:1;1267:18;;1254:32;1295:33;1254:32;1295:33;:::i;:::-;1049:362;;1347:7;;-1:-1:-1;;;1401:2:1;1386:18;;;;1373:32;;1049:362::o;1416:325::-;1484:6;1492;1545:2;1533:9;1524:7;1520:23;1516:32;1513:2;;;1566:6;1558;1551:22;1513:2;1610:9;1597:23;1629:31;1654:5;1629:31;:::i;:::-;1679:5;1731:2;1716:18;;;;1703:32;;-1:-1:-1;;;1503:238:1:o;1746:190::-;1805:6;1858:2;1846:9;1837:7;1833:23;1829:32;1826:2;;;1879:6;1871;1864:22;1826:2;-1:-1:-1;1907:23:1;;1816:120;-1:-1:-1;1816:120:1:o;1941:316::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:2;;;2119:6;2111;2104:22;2066:2;2153:9;2147:16;2137:26;;2203:2;2192:9;2188:18;2182:25;2172:35;;2247:2;2236:9;2232:18;2226:25;2216:35;;2056:201;;;;;:::o;3718:603::-;3830:4;3859:2;3888;3877:9;3870:21;3920:6;3914:13;3963:6;3958:2;3947:9;3943:18;3936:34;3988:4;4001:140;4015:6;4012:1;4009:13;4001:140;;;4110:14;;;4106:23;;4100:30;4076:17;;;4095:2;4072:26;4065:66;4030:10;;4001:140;;;4159:6;4156:1;4153:13;4150:2;;;4229:4;4224:2;4215:6;4204:9;4200:22;4196:31;4189:45;4150:2;-1:-1:-1;4305:2:1;4284:15;-1:-1:-1;;4280:29:1;4265:45;;;;4312:2;4261:54;;3839:482;-1:-1:-1;;;3839:482:1:o;9275:983::-;9537:4;9585:3;9574:9;9570:19;9616:6;9605:9;9598:25;9642:2;9680:6;9675:2;9664:9;9660:18;9653:34;9723:3;9718:2;9707:9;9703:18;9696:31;9747:6;9782;9776:13;9813:6;9805;9798:22;9851:3;9840:9;9836:19;9829:26;;9890:2;9882:6;9878:15;9864:29;;9911:4;9924:195;9938:6;9935:1;9932:13;9924:195;;;10003:13;;-1:-1:-1;;;;;9999:39:1;9987:52;;10094:15;;;;10059:12;;;;10035:1;9953:9;9924:195;;;-1:-1:-1;;;;;;;10175:32:1;;;;10170:2;10155:18;;10148:60;-1:-1:-1;;;10239:3:1;10224:19;10217:35;10136:3;9546:712;-1:-1:-1;;;9546:712:1:o;10776:128::-;10816:3;10847:1;10843:6;10840:1;10837:13;10834:2;;;10853:18;;:::i;:::-;-1:-1:-1;10889:9:1;;10824:80::o;10909:217::-;10949:1;10975;10965:2;;-1:-1:-1;;;11000:31:1;;11054:4;11051:1;11044:15;11082:4;11007:1;11072:15;10965:2;-1:-1:-1;11111:9:1;;10955:171::o;11131:168::-;11171:7;11237:1;11233;11229:6;11225:14;11222:1;11219:21;11214:1;11207:9;11200:17;11196:45;11193:2;;;11244:18;;:::i;:::-;-1:-1:-1;11284:9:1;;11183:116::o;11304:125::-;11344:4;11372:1;11369;11366:8;11363:2;;;11377:18;;:::i;:::-;-1:-1:-1;11414:9:1;;11353:76::o;11434:380::-;11513:1;11509:12;;;;11556;;;11577:2;;11631:4;11623:6;11619:17;11609:27;;11577:2;11684;11676:6;11673:14;11653:18;11650:38;11647:2;;;11730:10;11725:3;11721:20;11718:1;11711:31;11765:4;11762:1;11755:15;11793:4;11790:1;11783:15;11647:2;;11489:325;;;:::o;11819:127::-;11880:10;11875:3;11871:20;11868:1;11861:31;11911:4;11908:1;11901:15;11935:4;11932:1;11925:15;11951:131;-1:-1:-1;;;;;12026:31:1;;12016:42;;12006:2;;12072:1;12069;12062:12

Swarm Source

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