ETH Price: $2,296.29 (+0.36%)

Token

Algoface (af)
 

Overview

Max Total Supply

1,000,000,000 af

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
62,146,736.801831455179383655 af

Value
$0.00
0x4ffb817a19d1534e4967deb84ee1aa84962077cd
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
af

Compiler Version
v0.8.16+commit.07a7930e

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-12
*/

/* We build ethical Face AI that knows what’s unique in every person.
We enable a deeper understanding of the human form.
To detect and recognize people more accurately, 
more easily and more clearly.*/

// → Telegram: https://t.me/algofaceportal
// → Website:  https://algoface.cloud/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (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;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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 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 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 {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.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 substraction 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;
        }
    }
}

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

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

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract af is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public ETH = 0x402E8194738952EC0Df36725E47851f650E83f3a;

    bool private swapping;

    address private devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buydevfee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public selldevfee;
    uint256 public sellLiquidityFee;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;


    event ExcludeFromFees(address indexed account, bool isExcluded);

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor() ERC20("Algoface", "af") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), ETH);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);


        uint256 _buydevfee = 20;
        uint256 _buyLiquidityFee = 5;

        uint256 _selldevfee = 20;
        uint256 _sellLiquidityFee = 5;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 20 / 1000; // 2% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 20 / 1000; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buydevfee = _buydevfee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buydevfee + buyLiquidityFee;

        selldevfee = _selldevfee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = selldevfee + sellLiquidityFee;

        devWallet = address(msg.sender); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _devfee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buydevfee = _devfee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buydevfee + buyLiquidityFee;
        require(buyTotalFees <= 100, "Must keep fees at 100% or less");
    }

    function updateSellFees(
        uint256 _devfee,
        uint256 _liquidityFee
    ) external onlyOwner {
        selldevfee = _devfee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = selldevfee + sellLiquidityFee;
        require(sellTotalFees <= 100, "Must keep fees at 100% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit devWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }


    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            to == uniswapV2Pair &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        uint256 tokensForLiquidity = 0;
        uint256 tokensForDev = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (to == uniswapV2Pair && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev = (fees * selldevfee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buydevfee) / buyTotalFees;
            }

            if (fees> 0) {
                super._transfer(from, address(this), fees);
            }
            if (tokensForLiquidity > 0) {
                super._transfer(address(this), uniswapV2Pair, tokensForLiquidity);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of WETH
            path,
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForETH(contractBalance);
    }

}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"ETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buydevfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"selldevfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devfee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b03191673402e8194738952ec0df36725e47851f650e83f3a179055600b80546201000162ffffff199091161790553480156200004a57600080fd5b5060405180604001604052806008815260200167416c676f6661636560c01b8152506040518060400160405280600281526020016130b360f11b815250816003908162000098919062000633565b506004620000a7828262000633565b505050620000c4620000be6200032b60201b60201c565b6200032f565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e681600162000381565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000131573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001579190620006ff565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cf9190620006ff565b6001600160a01b031660a0819052620001ea90600162000381565b6014600581816b033b2e3c9fd0803ce80000006103e86200020c828562000747565b62000218919062000769565b6008556103e86200022b82601462000747565b62000237919062000769565b600a556127106200024a82600562000747565b62000256919062000769565b600955600d859055600e8490556200026f84866200078c565b600c55601083905560118290556200028882846200078c565b600f55600780546001600160a01b03191633179055620002bc620002b46005546001600160a01b031690565b6001620003fb565b620002c9306001620003fb565b620002d861dead6001620003fb565b620002f7620002ef6005546001600160a01b031690565b600162000381565b6200030430600162000381565b6200031361dead600162000381565b6200031f3382620004a5565b505050505050620007a8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003d05760405162461bcd60e51b81526020600482018190526024820152600080516020620026ca83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004465760405162461bcd60e51b81526020600482018190526024820152600080516020620026ca8339815191526044820152606401620003c7565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004fd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003c7565b80600260008282546200051191906200078c565b90915550506001600160a01b03821660009081526020819052604081208054839290620005409084906200078c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005ba57607f821691505b602082108103620005db57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200058a57600081815260208120601f850160051c810160208610156200060a5750805b601f850160051c820191505b818110156200062b5782815560010162000616565b505050505050565b81516001600160401b038111156200064f576200064f6200058f565b6200066781620006608454620005a5565b84620005e1565b602080601f8311600181146200069f5760008415620006865750858301515b600019600386901b1c1916600185901b1785556200062b565b600085815260208120601f198616915b82811015620006d057888601518255948401946001909101908401620006af565b5085821015620006ef5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200071257600080fd5b81516001600160a01b03811681146200072a57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000764576200076462000731565b500290565b6000826200078757634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007a257620007a262000731565b92915050565b60805160a051611ecb620007ff60003960008181610428015281816112d2015281816114e3015281816115f30152818161169c015261175601526000818161031501528181611a3a0152611a790152611ecb6000f3fe60806040526004361061024a5760003560e01c8063715018a611610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146106dc578063e2f4560514610722578063f11a24d314610738578063f2fde38b1461074e578063f63743421461076e578063f8b45b051461078457600080fd5b8063c024666814610650578063c18bc19514610670578063c8c8ebe414610690578063d257b34f146106a6578063d85ba063146106c657600080fd5b80638da5cb5b116100fd5780638da5cb5b146105be578063924de9b7146105dc57806395d89b41146105fc578063a9059cbb14610611578063bbc0c7421461063157600080fd5b8063715018a61461053f578063751039fc146105545780637571336a146105695780638322fff2146105895780638a8c523c146105a957600080fd5b8063313ce567116101c757806365c1bef81161018b57806365c1bef81461049d57806366ca9b83146104b35780636a486a8e146104d35780636ddd1713146104e957806370a082311461050957600080fd5b8063313ce567146103e4578063489ae78d1461040057806349bd5a5e146104165780634a62bb651461044a5780634fbee1931461046457600080fd5b806318160ddd1161020e57806318160ddd1461034f5780631816467f1461036e578063203e727e1461038e57806323b872dd146103ae57806327c8f835146103ce57600080fd5b806302dbd8f81461025657806306fdde0314610278578063095ea7b3146102a357806310d5de53146102d35780631694505e1461030357600080fd5b3661025157005b600080fd5b34801561026257600080fd5b50610276610271366004611af1565b61079a565b005b34801561028457600080fd5b5061028d61083a565b60405161029a9190611b13565b60405180910390f35b3480156102af57600080fd5b506102c36102be366004611b78565b6108cc565b604051901515815260200161029a565b3480156102df57600080fd5b506102c36102ee366004611ba2565b60136020526000908152604090205460ff1681565b34801561030f57600080fd5b506103377f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161029a565b34801561035b57600080fd5b506002545b60405190815260200161029a565b34801561037a57600080fd5b50610276610389366004611ba2565b6108e3565b34801561039a57600080fd5b506102766103a9366004611bbd565b61096a565b3480156103ba57600080fd5b506102c36103c9366004611bd6565b610a47565b3480156103da57600080fd5b5061033761dead81565b3480156103f057600080fd5b506040516012815260200161029a565b34801561040c57600080fd5b50610360600d5481565b34801561042257600080fd5b506103377f000000000000000000000000000000000000000000000000000000000000000081565b34801561045657600080fd5b50600b546102c39060ff1681565b34801561047057600080fd5b506102c361047f366004611ba2565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104a957600080fd5b5061036060105481565b3480156104bf57600080fd5b506102766104ce366004611af1565b610af1565b3480156104df57600080fd5b50610360600f5481565b3480156104f557600080fd5b50600b546102c39062010000900460ff1681565b34801561051557600080fd5b50610360610524366004611ba2565b6001600160a01b031660009081526020819052604090205490565b34801561054b57600080fd5b50610276610b84565b34801561056057600080fd5b506102c3610bba565b34801561057557600080fd5b50610276610584366004611c22565b610bf7565b34801561059557600080fd5b50600654610337906001600160a01b031681565b3480156105b557600080fd5b50610276610c4c565b3480156105ca57600080fd5b506005546001600160a01b0316610337565b3480156105e857600080fd5b506102766105f7366004611c55565b610c89565b34801561060857600080fd5b5061028d610ccf565b34801561061d57600080fd5b506102c361062c366004611b78565b610cde565b34801561063d57600080fd5b50600b546102c390610100900460ff1681565b34801561065c57600080fd5b5061027661066b366004611c22565b610ceb565b34801561067c57600080fd5b5061027661068b366004611bbd565b610d74565b34801561069c57600080fd5b5061036060085481565b3480156106b257600080fd5b506102c36106c1366004611bbd565b610e45565b3480156106d257600080fd5b50610360600c5481565b3480156106e857600080fd5b506103606106f7366004611c70565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072e57600080fd5b5061036060095481565b34801561074457600080fd5b50610360600e5481565b34801561075a57600080fd5b50610276610769366004611ba2565b610f9c565b34801561077a57600080fd5b5061036060115481565b34801561079057600080fd5b50610360600a5481565b6005546001600160a01b031633146107cd5760405162461bcd60e51b81526004016107c490611c9a565b60405180910390fd5b601082905560118190556107e18183611ce5565b600f819055606410156108365760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742031303025206f72206c657373000060448201526064016107c4565b5050565b60606003805461084990611cf8565b80601f016020809104026020016040519081016040528092919081815260200182805461087590611cf8565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b60006108d9338484611037565b5060015b92915050565b6005546001600160a01b0316331461090d5760405162461bcd60e51b81526004016107c490611c9a565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109945760405162461bcd60e51b81526004016107c490611c9a565b670de0b6b3a76400006103e86109a960025490565b6109b4906005611d32565b6109be9190611d51565b6109c89190611d51565b811015610a2f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107c4565b610a4181670de0b6b3a7640000611d32565b60085550565b6000610a5484848461115b565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ad95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107c4565b610ae68533858403611037565b506001949350505050565b6005546001600160a01b03163314610b1b5760405162461bcd60e51b81526004016107c490611c9a565b600d829055600e819055610b2f8183611ce5565b600c819055606410156108365760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742031303025206f72206c657373000060448201526064016107c4565b6005546001600160a01b03163314610bae5760405162461bcd60e51b81526004016107c490611c9a565b610bb8600061179e565b565b6005546000906001600160a01b03163314610be75760405162461bcd60e51b81526004016107c490611c9a565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c215760405162461bcd60e51b81526004016107c490611c9a565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c765760405162461bcd60e51b81526004016107c490611c9a565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610cb35760405162461bcd60e51b81526004016107c490611c9a565b600b8054911515620100000262ff000019909216919091179055565b60606004805461084990611cf8565b60006108d933848461115b565b6005546001600160a01b03163314610d155760405162461bcd60e51b81526004016107c490611c9a565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d9e5760405162461bcd60e51b81526004016107c490611c9a565b670de0b6b3a76400006103e8610db360025490565b610dbe906005611d32565b610dc89190611d51565b610dd29190611d51565b811015610e2d5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107c4565b610e3f81670de0b6b3a7640000611d32565b600a5550565b6005546000906001600160a01b03163314610e725760405162461bcd60e51b81526004016107c490611c9a565b620186a0610e7f60025490565b610e8a906001611d32565b610e949190611d51565b821015610f015760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107c4565b6103e8610f0d60025490565b610f18906005611d32565b610f229190611d51565b821115610f8e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107c4565b50600981905560015b919050565b6005546001600160a01b03163314610fc65760405162461bcd60e51b81526004016107c490611c9a565b6001600160a01b03811661102b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c4565b6110348161179e565b50565b6001600160a01b0383166110995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c4565b6001600160a01b0382166110fa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111815760405162461bcd60e51b81526004016107c490611d73565b6001600160a01b0382166111a75760405162461bcd60e51b81526004016107c490611db8565b806000036111c0576111bb838360006117f0565b505050565b600b5460ff1615611498576005546001600160a01b038481169116148015906111f757506005546001600160a01b03838116911614155b801561120b57506001600160a01b03821615155b801561122257506001600160a01b03821661dead14155b80156112385750600654600160a01b900460ff16155b1561149857600b54610100900460ff166112d0576001600160a01b03831660009081526012602052604090205460ff168061128b57506001600160a01b03821660009081526012602052604090205460ff165b6112d05760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107c4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561132a57506001600160a01b03821660009081526013602052604090205460ff16155b1561140e5760085481111561139f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107c4565b600a546001600160a01b0383166000908152602081905260409020546113c59083611ce5565b11156114095760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c4565b611498565b6001600160a01b03821660009081526013602052604090205460ff1661149857600a546001600160a01b0383166000908152602081905260409020546114549083611ce5565b11156114985760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c4565b30600090815260208190526040902054600954811080159081906114c45750600b5462010000900460ff165b80156114da5750600654600160a01b900460ff16155b801561151757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561153c57506001600160a01b03851660009081526012602052604090205460ff16155b801561156157506001600160a01b03841660009081526012602052604090205460ff16155b1561158f576006805460ff60a01b1916600160a01b179055611581611945565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806115dd57506001600160a01b03851660009081526012602052604090205460ff165b156115e6575060005b60008060008315611788577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561163457506000600f54115b1561169a576116596064611653600f548a61198f90919063ffffffff16565b906119a2565b9250600f546011548461166c9190611d32565b6116769190611d51565b9150600f54601054846116899190611d32565b6116939190611d51565b9050611739565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b03161480156116dd57506000600c54115b15611739576116fc6064611653600c548a61198f90919063ffffffff16565b9250600c54600e548461170f9190611d32565b6117199190611d51565b9150600c54600d548461172c9190611d32565b6117369190611d51565b90505b821561174a5761174a8930856117f0565b811561177b5761177b307f0000000000000000000000000000000000000000000000000000000000000000846117f0565b6117858388611dfb565b96505b6117938989896117f0565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118165760405162461bcd60e51b81526004016107c490611d73565b6001600160a01b03821661183c5760405162461bcd60e51b81526004016107c490611db8565b6001600160a01b038316600090815260208190526040902054818110156118b45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107c4565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906118eb908490611ce5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161193791815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036119605750565b60095461196e906014611d32565b81111561198657600954611983906014611d32565b90505b611034816119ae565b600061199b8284611d32565b9392505050565b600061199b8284611d51565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119e3576119e3611e0e565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611a1457611a14611e0e565b60200260200101906001600160a01b031690816001600160a01b031681525050611a5f307f000000000000000000000000000000000000000000000000000000000000000084611037565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611abb928792600092889291909116904290600401611e24565b600060405180830381600087803b158015611ad557600080fd5b505af1158015611ae9573d6000803e3d6000fd5b505050505050565b60008060408385031215611b0457600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b4057858101830151858201604001528201611b24565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f9757600080fd5b60008060408385031215611b8b57600080fd5b611b9483611b61565b946020939093013593505050565b600060208284031215611bb457600080fd5b61199b82611b61565b600060208284031215611bcf57600080fd5b5035919050565b600080600060608486031215611beb57600080fd5b611bf484611b61565b9250611c0260208501611b61565b9150604084013590509250925092565b80358015158114610f9757600080fd5b60008060408385031215611c3557600080fd5b611c3e83611b61565b9150611c4c60208401611c12565b90509250929050565b600060208284031215611c6757600080fd5b61199b82611c12565b60008060408385031215611c8357600080fd5b611c8c83611b61565b9150611c4c60208401611b61565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108dd576108dd611ccf565b600181811c90821680611d0c57607f821691505b602082108103611d2c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611d4c57611d4c611ccf565b500290565b600082611d6e57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108dd576108dd611ccf565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e745784516001600160a01b031683529383019391830191600101611e4f565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220657c81cee376e87d51bbe089783f3cd7a2253f5c5f03f28670486f09ff9cfc2a64736f6c634300081000334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061024a5760003560e01c8063715018a611610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e146106dc578063e2f4560514610722578063f11a24d314610738578063f2fde38b1461074e578063f63743421461076e578063f8b45b051461078457600080fd5b8063c024666814610650578063c18bc19514610670578063c8c8ebe414610690578063d257b34f146106a6578063d85ba063146106c657600080fd5b80638da5cb5b116100fd5780638da5cb5b146105be578063924de9b7146105dc57806395d89b41146105fc578063a9059cbb14610611578063bbc0c7421461063157600080fd5b8063715018a61461053f578063751039fc146105545780637571336a146105695780638322fff2146105895780638a8c523c146105a957600080fd5b8063313ce567116101c757806365c1bef81161018b57806365c1bef81461049d57806366ca9b83146104b35780636a486a8e146104d35780636ddd1713146104e957806370a082311461050957600080fd5b8063313ce567146103e4578063489ae78d1461040057806349bd5a5e146104165780634a62bb651461044a5780634fbee1931461046457600080fd5b806318160ddd1161020e57806318160ddd1461034f5780631816467f1461036e578063203e727e1461038e57806323b872dd146103ae57806327c8f835146103ce57600080fd5b806302dbd8f81461025657806306fdde0314610278578063095ea7b3146102a357806310d5de53146102d35780631694505e1461030357600080fd5b3661025157005b600080fd5b34801561026257600080fd5b50610276610271366004611af1565b61079a565b005b34801561028457600080fd5b5061028d61083a565b60405161029a9190611b13565b60405180910390f35b3480156102af57600080fd5b506102c36102be366004611b78565b6108cc565b604051901515815260200161029a565b3480156102df57600080fd5b506102c36102ee366004611ba2565b60136020526000908152604090205460ff1681565b34801561030f57600080fd5b506103377f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161029a565b34801561035b57600080fd5b506002545b60405190815260200161029a565b34801561037a57600080fd5b50610276610389366004611ba2565b6108e3565b34801561039a57600080fd5b506102766103a9366004611bbd565b61096a565b3480156103ba57600080fd5b506102c36103c9366004611bd6565b610a47565b3480156103da57600080fd5b5061033761dead81565b3480156103f057600080fd5b506040516012815260200161029a565b34801561040c57600080fd5b50610360600d5481565b34801561042257600080fd5b506103377f000000000000000000000000660be44a9bf2b82c932cbab61ba6e2eff687543981565b34801561045657600080fd5b50600b546102c39060ff1681565b34801561047057600080fd5b506102c361047f366004611ba2565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104a957600080fd5b5061036060105481565b3480156104bf57600080fd5b506102766104ce366004611af1565b610af1565b3480156104df57600080fd5b50610360600f5481565b3480156104f557600080fd5b50600b546102c39062010000900460ff1681565b34801561051557600080fd5b50610360610524366004611ba2565b6001600160a01b031660009081526020819052604090205490565b34801561054b57600080fd5b50610276610b84565b34801561056057600080fd5b506102c3610bba565b34801561057557600080fd5b50610276610584366004611c22565b610bf7565b34801561059557600080fd5b50600654610337906001600160a01b031681565b3480156105b557600080fd5b50610276610c4c565b3480156105ca57600080fd5b506005546001600160a01b0316610337565b3480156105e857600080fd5b506102766105f7366004611c55565b610c89565b34801561060857600080fd5b5061028d610ccf565b34801561061d57600080fd5b506102c361062c366004611b78565b610cde565b34801561063d57600080fd5b50600b546102c390610100900460ff1681565b34801561065c57600080fd5b5061027661066b366004611c22565b610ceb565b34801561067c57600080fd5b5061027661068b366004611bbd565b610d74565b34801561069c57600080fd5b5061036060085481565b3480156106b257600080fd5b506102c36106c1366004611bbd565b610e45565b3480156106d257600080fd5b50610360600c5481565b3480156106e857600080fd5b506103606106f7366004611c70565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072e57600080fd5b5061036060095481565b34801561074457600080fd5b50610360600e5481565b34801561075a57600080fd5b50610276610769366004611ba2565b610f9c565b34801561077a57600080fd5b5061036060115481565b34801561079057600080fd5b50610360600a5481565b6005546001600160a01b031633146107cd5760405162461bcd60e51b81526004016107c490611c9a565b60405180910390fd5b601082905560118190556107e18183611ce5565b600f819055606410156108365760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742031303025206f72206c657373000060448201526064016107c4565b5050565b60606003805461084990611cf8565b80601f016020809104026020016040519081016040528092919081815260200182805461087590611cf8565b80156108c25780601f10610897576101008083540402835291602001916108c2565b820191906000526020600020905b8154815290600101906020018083116108a557829003601f168201915b5050505050905090565b60006108d9338484611037565b5060015b92915050565b6005546001600160a01b0316331461090d5760405162461bcd60e51b81526004016107c490611c9a565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109945760405162461bcd60e51b81526004016107c490611c9a565b670de0b6b3a76400006103e86109a960025490565b6109b4906005611d32565b6109be9190611d51565b6109c89190611d51565b811015610a2f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107c4565b610a4181670de0b6b3a7640000611d32565b60085550565b6000610a5484848461115b565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610ad95760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107c4565b610ae68533858403611037565b506001949350505050565b6005546001600160a01b03163314610b1b5760405162461bcd60e51b81526004016107c490611c9a565b600d829055600e819055610b2f8183611ce5565b600c819055606410156108365760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742031303025206f72206c657373000060448201526064016107c4565b6005546001600160a01b03163314610bae5760405162461bcd60e51b81526004016107c490611c9a565b610bb8600061179e565b565b6005546000906001600160a01b03163314610be75760405162461bcd60e51b81526004016107c490611c9a565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c215760405162461bcd60e51b81526004016107c490611c9a565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c765760405162461bcd60e51b81526004016107c490611c9a565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610cb35760405162461bcd60e51b81526004016107c490611c9a565b600b8054911515620100000262ff000019909216919091179055565b60606004805461084990611cf8565b60006108d933848461115b565b6005546001600160a01b03163314610d155760405162461bcd60e51b81526004016107c490611c9a565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d9e5760405162461bcd60e51b81526004016107c490611c9a565b670de0b6b3a76400006103e8610db360025490565b610dbe906005611d32565b610dc89190611d51565b610dd29190611d51565b811015610e2d5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107c4565b610e3f81670de0b6b3a7640000611d32565b600a5550565b6005546000906001600160a01b03163314610e725760405162461bcd60e51b81526004016107c490611c9a565b620186a0610e7f60025490565b610e8a906001611d32565b610e949190611d51565b821015610f015760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107c4565b6103e8610f0d60025490565b610f18906005611d32565b610f229190611d51565b821115610f8e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107c4565b50600981905560015b919050565b6005546001600160a01b03163314610fc65760405162461bcd60e51b81526004016107c490611c9a565b6001600160a01b03811661102b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107c4565b6110348161179e565b50565b6001600160a01b0383166110995760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c4565b6001600160a01b0382166110fa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111815760405162461bcd60e51b81526004016107c490611d73565b6001600160a01b0382166111a75760405162461bcd60e51b81526004016107c490611db8565b806000036111c0576111bb838360006117f0565b505050565b600b5460ff1615611498576005546001600160a01b038481169116148015906111f757506005546001600160a01b03838116911614155b801561120b57506001600160a01b03821615155b801561122257506001600160a01b03821661dead14155b80156112385750600654600160a01b900460ff16155b1561149857600b54610100900460ff166112d0576001600160a01b03831660009081526012602052604090205460ff168061128b57506001600160a01b03821660009081526012602052604090205460ff165b6112d05760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107c4565b7f000000000000000000000000660be44a9bf2b82c932cbab61ba6e2eff68754396001600160a01b0316836001600160a01b031614801561132a57506001600160a01b03821660009081526013602052604090205460ff16155b1561140e5760085481111561139f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107c4565b600a546001600160a01b0383166000908152602081905260409020546113c59083611ce5565b11156114095760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c4565b611498565b6001600160a01b03821660009081526013602052604090205460ff1661149857600a546001600160a01b0383166000908152602081905260409020546114549083611ce5565b11156114985760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107c4565b30600090815260208190526040902054600954811080159081906114c45750600b5462010000900460ff165b80156114da5750600654600160a01b900460ff16155b801561151757507f000000000000000000000000660be44a9bf2b82c932cbab61ba6e2eff68754396001600160a01b0316846001600160a01b0316145b801561153c57506001600160a01b03851660009081526012602052604090205460ff16155b801561156157506001600160a01b03841660009081526012602052604090205460ff16155b1561158f576006805460ff60a01b1916600160a01b179055611581611945565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806115dd57506001600160a01b03851660009081526012602052604090205460ff165b156115e6575060005b60008060008315611788577f000000000000000000000000660be44a9bf2b82c932cbab61ba6e2eff68754396001600160a01b0316886001600160a01b031614801561163457506000600f54115b1561169a576116596064611653600f548a61198f90919063ffffffff16565b906119a2565b9250600f546011548461166c9190611d32565b6116769190611d51565b9150600f54601054846116899190611d32565b6116939190611d51565b9050611739565b7f000000000000000000000000660be44a9bf2b82c932cbab61ba6e2eff68754396001600160a01b0316896001600160a01b03161480156116dd57506000600c54115b15611739576116fc6064611653600c548a61198f90919063ffffffff16565b9250600c54600e548461170f9190611d32565b6117199190611d51565b9150600c54600d548461172c9190611d32565b6117369190611d51565b90505b821561174a5761174a8930856117f0565b811561177b5761177b307f000000000000000000000000660be44a9bf2b82c932cbab61ba6e2eff6875439846117f0565b6117858388611dfb565b96505b6117938989896117f0565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118165760405162461bcd60e51b81526004016107c490611d73565b6001600160a01b03821661183c5760405162461bcd60e51b81526004016107c490611db8565b6001600160a01b038316600090815260208190526040902054818110156118b45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107c4565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906118eb908490611ce5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161193791815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036119605750565b60095461196e906014611d32565b81111561198657600954611983906014611d32565b90505b611034816119ae565b600061199b8284611d32565b9392505050565b600061199b8284611d51565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119e3576119e3611e0e565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611a1457611a14611e0e565b60200260200101906001600160a01b031690816001600160a01b031681525050611a5f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611037565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611abb928792600092889291909116904290600401611e24565b600060405180830381600087803b158015611ad557600080fd5b505af1158015611ae9573d6000803e3d6000fd5b505050505050565b60008060408385031215611b0457600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b4057858101830151858201604001528201611b24565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610f9757600080fd5b60008060408385031215611b8b57600080fd5b611b9483611b61565b946020939093013593505050565b600060208284031215611bb457600080fd5b61199b82611b61565b600060208284031215611bcf57600080fd5b5035919050565b600080600060608486031215611beb57600080fd5b611bf484611b61565b9250611c0260208501611b61565b9150604084013590509250925092565b80358015158114610f9757600080fd5b60008060408385031215611c3557600080fd5b611c3e83611b61565b9150611c4c60208401611c12565b90509250929050565b600060208284031215611c6757600080fd5b61199b82611c12565b60008060408385031215611c8357600080fd5b611c8c83611b61565b9150611c4c60208401611b61565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108dd576108dd611ccf565b600181811c90821680611d0c57607f821691505b602082108103611d2c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611d4c57611d4c611ccf565b500290565b600082611d6e57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108dd576108dd611ccf565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e745784516001600160a01b031683529383019391830191600101611e4f565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220657c81cee376e87d51bbe089783f3cd7a2253f5c5f03f28670486f09ff9cfc2a64736f6c63430008100033

Deployed Bytecode Sourcemap

24974:10729:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30243:320;;;;;;;;;;-1:-1:-1;30243:320:0;;;;;:::i;:::-;;:::i;:::-;;9830:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11997:169;;;;;;;;;;-1:-1:-1;11997:169:0;;;;;:::i;:::-;;:::i;:::-;;;1422:14:1;;1415:22;1397:41;;1385:2;1370:18;11997:169:0;1257:187:1;25930:63:0;;;;;;;;;;-1:-1:-1;25930:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25046:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1830:32:1;;;1812:51;;1800:2;1785:18;25046:51:0;1640:229:1;10950:108:0;;;;;;;;;;-1:-1:-1;11038:12:0;;10950:108;;;2020:25:1;;;2008:2;1993:18;10950:108:0;1874:177:1;30761:189:0;;;;;;;;;;-1:-1:-1;30761:189:0;;;;;:::i;:::-;;:::i;29004:275::-;;;;;;;;;;-1:-1:-1;29004:275:0;;;;;:::i;:::-;;:::i;12648:492::-;;;;;;;;;;-1:-1:-1;12648:492:0;;;;;:::i;:::-;;:::i;25149:53::-;;;;;;;;;;;;25195:6;25149:53;;10792:93;;;;;;;;;;-1:-1:-1;10792:93:0;;10875:2;2924:36:1;;2912:2;2897:18;10792:93:0;2782:184:1;25613:24:0;;;;;;;;;;;;;;;;25104:38;;;;;;;;;;;;;;;25460:33;;;;;;;;;;-1:-1:-1;25460:33:0;;;;;;;;30960:126;;;;;;;;;;-1:-1:-1;30960:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;31050:28:0;31026:4;31050:28;;;:19;:28;;;;;;;;;30960:126;25718:25;;;;;;;;;;;;;;;;29922:313;;;;;;;;;;-1:-1:-1;29922:313:0;;;;;:::i;:::-;;:::i;25683:28::-;;;;;;;;;;;;;;;;25540:30;;;;;;;;;;-1:-1:-1;25540:30:0;;;;;;;;;;;11121:127;;;;;;;;;;-1:-1:-1;11121:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11222:18:0;11195:7;11222:18;;;;;;;;;;;;11121:127;3065:103;;;;;;;;;;;;;:::i;28308:121::-;;;;;;;;;;;;;:::i;29551:167::-;;;;;;;;;;-1:-1:-1;29551:167:0;;;;;:::i;:::-;;:::i;25209:63::-;;;;;;;;;;-1:-1:-1;25209:63:0;;;;-1:-1:-1;;;;;25209:63:0;;;28144:112;;;;;;;;;;;;;:::i;2414:87::-;;;;;;;;;;-1:-1:-1;2487:6:0;;-1:-1:-1;;;;;2487:6:0;2414:87;;29814:100;;;;;;;;;;-1:-1:-1;29814:100:0;;;;;:::i;:::-;;:::i;10049:104::-;;;;;;;;;;;;;:::i;11461:175::-;;;;;;;;;;-1:-1:-1;11461:175:0;;;;;:::i;:::-;;:::i;25500:33::-;;;;;;;;;;-1:-1:-1;25500:33:0;;;;;;;;;;;30571:182;;;;;;;;;;-1:-1:-1;30571:182:0;;;;;:::i;:::-;;:::i;29287:256::-;;;;;;;;;;-1:-1:-1;29287:256:0;;;;;:::i;:::-;;:::i;25345:35::-;;;;;;;;;;;;;;;;28499:497;;;;;;;;;;-1:-1:-1;28499:497:0;;;;;:::i;:::-;;:::i;25579:27::-;;;;;;;;;;;;;;;;11699:151;;;;;;;;;;-1:-1:-1;11699:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11815:18:0;;;11788:7;11815:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11699:151;25387:33;;;;;;;;;;;;;;;;25644:30;;;;;;;;;;;;;;;;3323:201;;;;;;;;;;-1:-1:-1;3323:201:0;;;;;:::i;:::-;;:::i;25750:31::-;;;;;;;;;;;;;;;;25427:24;;;;;;;;;;;;;;;;30243:320;2487:6;;-1:-1:-1;;;;;2487:6:0;1167:10;2634:23;2626:68;;;;-1:-1:-1;;;2626:68:0;;;;;;;:::i;:::-;;;;;;;;;30362:10:::1;:20:::0;;;30393:16:::1;:32:::0;;;30452:29:::1;30412:13:::0;30375:7;30452:29:::1;:::i;:::-;30436:13;:45:::0;;;30517:3:::1;-1:-1:-1::0;30500:20:0::1;30492:63;;;::::0;-1:-1:-1;;;30492:63:0;;4670:2:1;30492:63:0::1;::::0;::::1;4652:21:1::0;4709:2;4689:18;;;4682:30;4748:32;4728:18;;;4721:60;4798:18;;30492:63:0::1;4468:354:1::0;30492:63:0::1;30243:320:::0;;:::o;9830:100::-;9884:13;9917:5;9910:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9830:100;:::o;11997:169::-;12080:4;12097:39;1167:10;12120:7;12129:6;12097:8;:39::i;:::-;-1:-1:-1;12154:4:0;11997:169;;;;;:::o;30761:189::-;2487:6;;-1:-1:-1;;;;;2487:6:0;1167:10;2634:23;2626:68;;;;-1:-1:-1;;;2626:68:0;;;;;;;:::i;:::-;30897:9:::1;::::0;30866:41:::1;::::0;-1:-1:-1;;;;;30897:9:0;;::::1;::::0;30866:41;::::1;::::0;::::1;::::0;30897:9:::1;::::0;30866:41:::1;30918:9;:24:::0;;-1:-1:-1;;;;;;30918:24:0::1;-1:-1:-1::0;;;;;30918:24:0;;;::::1;::::0;;;::::1;::::0;;30761:189::o;29004:275::-;2487:6;;-1:-1:-1;;;;;2487:6:0;1167:10;2634:23;2626:68;;;;-1:-1:-1;;;2626:68:0;;;;;;;:::i;:::-;29141:4:::1;29133;29112:13;11038:12:::0;;;10950:108;29112:13:::1;:17;::::0;29128:1:::1;29112:17;:::i;:::-;29111:26;;;;:::i;:::-;29110:35;;;;:::i;:::-;29100:6;:45;;29078:142;;;::::0;-1:-1:-1;;;29078:142:0;;5809:2:1;29078:142:0::1;::::0;::::1;5791:21:1::0;5848:2;5828:18;;;5821:30;5887:34;5867:18;;;5860:62;-1:-1:-1;;;5938:18:1;;;5931:45;5993:19;;29078:142:0::1;5607:411:1::0;29078:142:0::1;29254:17;:6:::0;29264::::1;29254:17;:::i;:::-;29231:20;:40:::0;-1:-1:-1;29004:275:0:o;12648:492::-;12788:4;12805:36;12815:6;12823:9;12834:6;12805:9;:36::i;:::-;-1:-1:-1;;;;;12881:19:0;;12854:24;12881:19;;;:11;:19;;;;;;;;1167:10;12881:33;;;;;;;;12933:26;;;;12925:79;;;;-1:-1:-1;;;12925:79:0;;6225:2:1;12925:79:0;;;6207:21:1;6264:2;6244:18;;;6237:30;6303:34;6283:18;;;6276:62;-1:-1:-1;;;6354:18:1;;;6347:38;6402:19;;12925:79:0;6023:404:1;12925:79:0;13040:57;13049:6;1167:10;13090:6;13071:16;:25;13040:8;:57::i;:::-;-1:-1:-1;13128:4:0;;12648:492;-1:-1:-1;;;;12648:492:0:o;29922:313::-;2487:6;;-1:-1:-1;;;;;2487:6:0;1167:10;2634:23;2626:68;;;;-1:-1:-1;;;2626:68:0;;;;;;;:::i;:::-;30040:9:::1;:19:::0;;;30070:15:::1;:31:::0;;;30127:27:::1;30088:13:::0;30052:7;30127:27:::1;:::i;:::-;30112:12;:42:::0;;;30189:3:::1;-1:-1:-1::0;30173:19:0::1;30165:62;;;::::0;-1:-1:-1;;;30165:62:0;;4670:2:1;30165:62:0::1;::::0;::::1;4652:21:1::0;4709:2;4689:18;;;4682:30;4748:32;4728:18;;;4721:60;4798:18;;30165:62:0::1;4468:354:1::0;3065:103:0;2487:6;;-1:-1:-1;;;;;2487:6:0;1167:10;2634:23;2626:68;;;;-1:-1:-1;;;2626:68:0;;;;;;;:::i;:::-;3130:30:::1;3157:1;3130:18;:30::i;:::-;3065:103::o:0;28308:121::-;2487:6;;28360:4;;-1:-1:-1;;;;;2487:6:0;1167:10;2634:23;2626:68;;;;-1:-1:-1;;;2626:68:0;;;;;;;:::i;:::-;-1:-1:-1;28377:14:0::1;:22:::0;;-1:-1:-1;;28377:22:0::1;::::0;;;28308:121;:::o;29551:167::-;2487:6;;-1:-1:-1;;;;;2487:6:0;1167:10;2634:23;2626:68;;;;-1:-1:-1;;;2626:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29664:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29664:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29551:167::o;28144:112::-;2487:6;;-1:-1:-1;;;;;2487:6:0;1167:10;2634:23;2626:68;;;;-1:-1:-1;;;2626:68:0;;;;;;;:::i;:::-;28199:13:::1;:20:::0;;-1:-1:-1;;28230:18:0;;;;;28144:112::o;29814:100::-;2487:6;;-1:-1:-1;;;;;2487:6:0;1167:10;2634:23;2626:68;;;;-1:-1:-1;;;2626:68:0;;;;;;;:::i;:::-;29885:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29885:21:0;;::::1;::::0;;;::::1;::::0;;29814:100::o;10049:104::-;10105:13;10138:7;10131:14;;;;;:::i;11461:175::-;11547:4;11564:42;1167:10;11588:9;11599:6;11564:9;:42::i;30571:182::-;2487:6;;-1:-1:-1;;;;;2487:6:0;1167:10;2634:23;2626:68;;;;-1:-1:-1;;;2626:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30656:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30656:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30711:34;;1397:41:1;;;30711:34:0::1;::::0;1370:18:1;30711:34:0::1;;;;;;;30571:182:::0;;:::o;29287:256::-;2487:6;;-1:-1:-1;;;;;2487:6:0;1167:10;2634:23;2626:68;;;;-1:-1:-1;;;2626:68:0;;;;;;;:::i;:::-;29427:4:::1;29419;29398:13;11038:12:::0;;;10950:108;29398:13:::1;:17;::::0;29414:1:::1;29398:17;:::i;:::-;29397:26;;;;:::i;:::-;29396:35;;;;:::i;:::-;29386:6;:45;;29364:131;;;::::0;-1:-1:-1;;;29364:131:0;;6634:2:1;29364:131:0::1;::::0;::::1;6616:21:1::0;6673:2;6653:18;;;6646:30;6712:34;6692:18;;;6685:62;-1:-1:-1;;;6763:18:1;;;6756:34;6807:19;;29364:131:0::1;6432:400:1::0;29364:131:0::1;29518:17;:6:::0;29528::::1;29518:17;:::i;:::-;29506:9;:29:::0;-1:-1:-1;29287:256:0:o;28499:497::-;2487:6;;28607:4;;-1:-1:-1;;;;;2487:6:0;1167:10;2634:23;2626:68;;;;-1:-1:-1;;;2626:68:0;;;;;;;:::i;:::-;28686:6:::1;28665:13;11038:12:::0;;;10950:108;28665:13:::1;:17;::::0;28681:1:::1;28665:17;:::i;:::-;28664:28;;;;:::i;:::-;28651:9;:41;;28629:144;;;::::0;-1:-1:-1;;;28629:144:0;;7039:2:1;28629:144:0::1;::::0;::::1;7021:21:1::0;7078:2;7058:18;;;7051:30;7117:34;7097:18;;;7090:62;-1:-1:-1;;;7168:18:1;;;7161:51;7229:19;;28629:144:0::1;6837:417:1::0;28629:144:0::1;28841:4;28820:13;11038:12:::0;;;10950:108;28820:13:::1;:17;::::0;28836:1:::1;28820:17;:::i;:::-;28819:26;;;;:::i;:::-;28806:9;:39;;28784:141;;;::::0;-1:-1:-1;;;28784:141:0;;7461:2:1;28784:141:0::1;::::0;::::1;7443:21:1::0;7500:2;7480:18;;;7473:30;7539:34;7519:18;;;7512:62;-1:-1:-1;;;7590:18:1;;;7583:50;7650:19;;28784:141:0::1;7259:416:1::0;28784:141:0::1;-1:-1:-1::0;28936:18:0::1;:30:::0;;;28984:4:::1;2705:1;28499:497:::0;;;:::o;3323:201::-;2487:6;;-1:-1:-1;;;;;2487:6:0;1167:10;2634:23;2626:68;;;;-1:-1:-1;;;2626:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3412:22:0;::::1;3404:73;;;::::0;-1:-1:-1;;;3404:73:0;;7882:2:1;3404:73:0::1;::::0;::::1;7864:21:1::0;7921:2;7901:18;;;7894:30;7960:34;7940:18;;;7933:62;-1:-1:-1;;;8011:18:1;;;8004:36;8057:19;;3404:73:0::1;7680:402:1::0;3404:73:0::1;3488:28;3507:8;3488:18;:28::i;:::-;3323:201:::0;:::o;15489:380::-;-1:-1:-1;;;;;15625:19:0;;15617:68;;;;-1:-1:-1;;;15617:68:0;;8289:2:1;15617:68:0;;;8271:21:1;8328:2;8308:18;;;8301:30;8367:34;8347:18;;;8340:62;-1:-1:-1;;;8418:18:1;;;8411:34;8462:19;;15617:68:0;8087:400:1;15617:68:0;-1:-1:-1;;;;;15704:21:0;;15696:68;;;;-1:-1:-1;;;15696:68:0;;8694:2:1;15696:68:0;;;8676:21:1;8733:2;8713:18;;;8706:30;8772:34;8752:18;;;8745:62;-1:-1:-1;;;8823:18:1;;;8816:32;8865:19;;15696:68:0;8492:398:1;15696:68:0;-1:-1:-1;;;;;15777:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15829:32;;2020:25:1;;;15829:32:0;;1993:18:1;15829:32:0;;;;;;;15489:380;;;:::o;31094:3679::-;-1:-1:-1;;;;;31226:18:0;;31218:68;;;;-1:-1:-1;;;31218:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31305:16:0;;31297:64;;;;-1:-1:-1;;;31297:64:0;;;;;;;:::i;:::-;31378:6;31388:1;31378:11;31374:93;;31406:28;31422:4;31428:2;31432:1;31406:15;:28::i;:::-;31094:3679;;;:::o;31374:93::-;31483:14;;;;31479:1430;;;2487:6;;-1:-1:-1;;;;;31536:15:0;;;2487:6;;31536:15;;;;:49;;-1:-1:-1;2487:6:0;;-1:-1:-1;;;;;31572:13:0;;;2487:6;;31572:13;;31536:49;:86;;;;-1:-1:-1;;;;;;31606:16:0;;;;31536:86;:128;;;;-1:-1:-1;;;;;;31643:21:0;;31657:6;31643:21;;31536:128;:158;;;;-1:-1:-1;31686:8:0;;-1:-1:-1;;;31686:8:0;;;;31685:9;31536:158;31514:1384;;;31734:13;;;;;;;31729:223;;-1:-1:-1;;;;;31806:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31835:23:0;;;;;;:19;:23;;;;;;;;31806:52;31772:160;;;;-1:-1:-1;;;31772:160:0;;9907:2:1;31772:160:0;;;9889:21:1;9946:2;9926:18;;;9919:30;-1:-1:-1;;;9965:18:1;;;9958:52;10027:18;;31772:160:0;9705:346:1;31772:160:0;32166:13;-1:-1:-1;;;;;32158:21:0;:4;-1:-1:-1;;;;;32158:21:0;;:82;;;;-1:-1:-1;;;;;;32205:35:0;;;;;;:31;:35;;;;;;;;32204:36;32158:82;32132:751;;;32327:20;;32317:6;:30;;32283:169;;;;-1:-1:-1;;;32283:169:0;;10258:2:1;32283:169:0;;;10240:21:1;10297:2;10277:18;;;10270:30;10336:34;10316:18;;;10309:62;-1:-1:-1;;;10387:18:1;;;10380:51;10448:19;;32283:169:0;10056:417:1;32283:169:0;32535:9;;-1:-1:-1;;;;;11222:18:0;;11195:7;11222:18;;;;;;;;;;;32509:22;;:6;:22;:::i;:::-;:35;;32475:140;;;;-1:-1:-1;;;32475:140:0;;10680:2:1;32475:140:0;;;10662:21:1;10719:2;10699:18;;;10692:30;-1:-1:-1;;;10738:18:1;;;10731:49;10797:18;;32475:140:0;10478:343:1;32475:140:0;32132:751;;;-1:-1:-1;;;;;32663:35:0;;;;;;:31;:35;;;;;;;;32658:225;;32783:9;;-1:-1:-1;;;;;11222:18:0;;11195:7;11222:18;;;;;;;;;;;32757:22;;:6;:22;:::i;:::-;:35;;32723:140;;;;-1:-1:-1;;;32723:140:0;;10680:2:1;32723:140:0;;;10662:21:1;10719:2;10699:18;;;10692:30;-1:-1:-1;;;10738:18:1;;;10731:49;10797:18;;32723:140:0;10478:343:1;32723:140:0;32970:4;32921:28;11222:18;;;;;;;;;;;33028;;33004:42;;;;;;;33077:35;;-1:-1:-1;33101:11:0;;;;;;;33077:35;:61;;;;-1:-1:-1;33130:8:0;;-1:-1:-1;;;33130:8:0;;;;33129:9;33077:61;:97;;;;;33161:13;-1:-1:-1;;;;;33155:19:0;:2;-1:-1:-1;;;;;33155:19:0;;33077:97;:140;;;;-1:-1:-1;;;;;;33192:25:0;;;;;;:19;:25;;;;;;;;33191:26;33077:140;:181;;;;-1:-1:-1;;;;;;33235:23:0;;;;;;:19;:23;;;;;;;;33234:24;33077:181;33059:313;;;33285:8;:15;;-1:-1:-1;;;;33285:15:0;-1:-1:-1;;;33285:15:0;;;33317:10;:8;:10::i;:::-;33344:8;:16;;-1:-1:-1;;;;33344:16:0;;;33059:313;33400:8;;-1:-1:-1;;;;;33510:25:0;;33384:12;33510:25;;;:19;:25;;;;;;33400:8;-1:-1:-1;;;33400:8:0;;;;;33399:9;;33510:25;;:52;;-1:-1:-1;;;;;;33539:23:0;;;;;;:19;:23;;;;;;;;33510:52;33506:100;;;-1:-1:-1;33589:5:0;33506:100;33618:12;33645:26;33686:20;33799:7;33795:925;;;33857:13;-1:-1:-1;;;;;33851:19:0;:2;-1:-1:-1;;;;;33851:19:0;;:40;;;;;33890:1;33874:13;;:17;33851:40;33847:583;;;33919:34;33949:3;33919:25;33930:13;;33919:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;33912:41;;34021:13;;34001:16;;33994:4;:23;;;;:::i;:::-;33993:41;;;;:::i;:::-;33972:62;;34090:13;;34076:10;;34069:4;:17;;;;:::i;:::-;34068:35;;;;:::i;:::-;34053:50;;33847:583;;;34173:13;-1:-1:-1;;;;;34165:21:0;:4;-1:-1:-1;;;;;34165:21:0;;:41;;;;;34205:1;34190:12;;:16;34165:41;34161:269;;;34234:33;34263:3;34234:24;34245:12;;34234:6;:10;;:24;;;;:::i;:33::-;34227:40;;34334:12;;34315:15;;34308:4;:22;;;;:::i;:::-;34307:39;;;;:::i;:::-;34286:60;;34402:12;;34389:9;;34382:4;:16;;;;:::i;:::-;34381:33;;;;:::i;:::-;34366:48;;34161:269;34450:7;;34446:90;;34478:42;34494:4;34508;34515;34478:15;:42::i;:::-;34554:22;;34550:128;;34597:65;34621:4;34628:13;34643:18;34597:15;:65::i;:::-;34694:14;34704:4;34694:14;;:::i;:::-;;;33795:925;34732:33;34748:4;34754:2;34758:6;34732:15;:33::i;:::-;31207:3566;;;;;;31094:3679;;;:::o;3684:191::-;3777:6;;;-1:-1:-1;;;;;3794:17:0;;;-1:-1:-1;;;;;;3794:17:0;;;;;;;3827:40;;3777:6;;;3794:17;3777:6;;3827:40;;3758:16;;3827:40;3747:128;3684:191;:::o;13630:733::-;-1:-1:-1;;;;;13770:20:0;;13762:70;;;;-1:-1:-1;;;13762:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13851:23:0;;13843:71;;;;-1:-1:-1;;;13843:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14011:17:0;;13987:21;14011:17;;;;;;;;;;;14047:23;;;;14039:74;;;;-1:-1:-1;;;14039:74:0;;11161:2:1;14039:74:0;;;11143:21:1;11200:2;11180:18;;;11173:30;11239:34;11219:18;;;11212:62;-1:-1:-1;;;11290:18:1;;;11283:36;11336:19;;14039:74:0;10959:402:1;14039:74:0;-1:-1:-1;;;;;14149:17:0;;;:9;:17;;;;;;;;;;;14169:22;;;14149:42;;14213:20;;;;;;;;:30;;14185:6;;14149:9;14213:30;;14185:6;;14213:30;:::i;:::-;;;;;;;;14278:9;-1:-1:-1;;;;;14261:35:0;14270:6;-1:-1:-1;;;;;14261:35:0;;14289:6;14261:35;;;;2020:25:1;;2008:2;1993:18;;1874:177;14261:35:0;;;;;;;;13751:612;13630:733;;;:::o;35359:339::-;35442:4;35398:23;11222:18;;;;;;;;;;;;35463:20;;;35459:59;;35500:7;35359:339::o;35459:59::-;35552:18;;:23;;35573:2;35552:23;:::i;:::-;35534:15;:41;35530:115;;;35610:18;;:23;;35631:2;35610:23;:::i;:::-;35592:41;;35530:115;35657:33;35674:15;35657:16;:33::i;20942:98::-;21000:7;21027:5;21031:1;21027;:5;:::i;:::-;21020:12;20942:98;-1:-1:-1;;;20942:98:0:o;21341:::-;21399:7;21426:5;21430:1;21426;:5;:::i;34781:570::-;34931:16;;;34945:1;34931:16;;;;;;;;34907:21;;34931:16;;;;;;;;;;-1:-1:-1;34931:16:0;34907:40;;34976:4;34958;34963:1;34958:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34958:23:0;;;:7;;;;;;;;;:23;35002:3;;34992:7;;35002:3;;;34992:4;;35002:3;;34992:7;;;;;;:::i;:::-;;;;;;:13;-1:-1:-1;;;;;34992:13:0;;;-1:-1:-1;;;;;34992:13:0;;;;;35018:62;35035:4;35050:15;35068:11;35018:8;:62::i;:::-;35293:9;;35119:224;;-1:-1:-1;;;35119:224:0;;-1:-1:-1;;;;;35119:15:0;:69;;;;;:224;;35203:11;;35229:1;;35274:4;;35293:9;;;;;35317:15;;35119:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34836:515;34781:570;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:173::-;888:20;;-1:-1:-1;;;;;937:31:1;;927:42;;917:70;;983:1;980;973:12;998:254;1066:6;1074;1127:2;1115:9;1106:7;1102:23;1098:32;1095:52;;;1143:1;1140;1133:12;1095:52;1166:29;1185:9;1166:29;:::i;:::-;1156:39;1242:2;1227:18;;;;1214:32;;-1:-1:-1;;;998:254:1:o;1449:186::-;1508:6;1561:2;1549:9;1540:7;1536:23;1532:32;1529:52;;;1577:1;1574;1567:12;1529:52;1600:29;1619:9;1600:29;:::i;2056:180::-;2115:6;2168:2;2156:9;2147:7;2143:23;2139:32;2136:52;;;2184:1;2181;2174:12;2136:52;-1:-1:-1;2207:23:1;;2056:180;-1:-1:-1;2056:180:1:o;2241:328::-;2318:6;2326;2334;2387:2;2375:9;2366:7;2362:23;2358:32;2355:52;;;2403:1;2400;2393:12;2355:52;2426:29;2445:9;2426:29;:::i;:::-;2416:39;;2474:38;2508:2;2497:9;2493:18;2474:38;:::i;:::-;2464:48;;2559:2;2548:9;2544:18;2531:32;2521:42;;2241:328;;;;;:::o;2971:160::-;3036:20;;3092:13;;3085:21;3075:32;;3065:60;;3121:1;3118;3111:12;3136:254;3201:6;3209;3262:2;3250:9;3241:7;3237:23;3233:32;3230:52;;;3278:1;3275;3268:12;3230:52;3301:29;3320:9;3301:29;:::i;:::-;3291:39;;3349:35;3380:2;3369:9;3365:18;3349:35;:::i;:::-;3339:45;;3136:254;;;;;:::o;3395:180::-;3451:6;3504:2;3492:9;3483:7;3479:23;3475:32;3472:52;;;3520:1;3517;3510:12;3472:52;3543:26;3559:9;3543:26;:::i;3580:260::-;3648:6;3656;3709:2;3697:9;3688:7;3684:23;3680:32;3677:52;;;3725:1;3722;3715:12;3677:52;3748:29;3767:9;3748:29;:::i;:::-;3738:39;;3796:38;3830:2;3819:9;3815:18;3796:38;:::i;3845:356::-;4047:2;4029:21;;;4066:18;;;4059:30;4125:34;4120:2;4105:18;;4098:62;4192:2;4177:18;;3845:356::o;4206:127::-;4267:10;4262:3;4258:20;4255:1;4248:31;4298:4;4295:1;4288:15;4322:4;4319:1;4312:15;4338:125;4403:9;;;4424:10;;;4421:36;;;4437:18;;:::i;4827:380::-;4906:1;4902:12;;;;4949;;;4970:61;;5024:4;5016:6;5012:17;5002:27;;4970:61;5077:2;5069:6;5066:14;5046:18;5043:38;5040:161;;5123:10;5118:3;5114:20;5111:1;5104:31;5158:4;5155:1;5148:15;5186:4;5183:1;5176:15;5040:161;;4827:380;;;:::o;5212:168::-;5252:7;5318:1;5314;5310:6;5306:14;5303:1;5300:21;5295:1;5288:9;5281:17;5277:45;5274:71;;;5325:18;;:::i;:::-;-1:-1:-1;5365:9:1;;5212:168::o;5385:217::-;5425:1;5451;5441:132;;5495:10;5490:3;5486:20;5483:1;5476:31;5530:4;5527:1;5520:15;5558:4;5555:1;5548:15;5441:132;-1:-1:-1;5587:9:1;;5385:217::o;8895:401::-;9097:2;9079:21;;;9136:2;9116:18;;;9109:30;9175:34;9170:2;9155:18;;9148:62;-1:-1:-1;;;9241:2:1;9226:18;;9219:35;9286:3;9271:19;;8895:401::o;9301:399::-;9503:2;9485:21;;;9542:2;9522:18;;;9515:30;9581:34;9576:2;9561:18;;9554:62;-1:-1:-1;;;9647:2:1;9632:18;;9625:33;9690:3;9675:19;;9301:399::o;10826:128::-;10893:9;;;10914:11;;;10911:37;;;10928:18;;:::i;11498:127::-;11559:10;11554:3;11550:20;11547:1;11540:31;11590:4;11587:1;11580:15;11614:4;11611:1;11604:15;11630:980;11892:4;11940:3;11929:9;11925:19;11971:6;11960:9;11953:25;11997:2;12035:6;12030:2;12019:9;12015:18;12008:34;12078:3;12073:2;12062:9;12058:18;12051:31;12102:6;12137;12131:13;12168:6;12160;12153:22;12206:3;12195:9;12191:19;12184:26;;12245:2;12237:6;12233:15;12219:29;;12266:1;12276:195;12290:6;12287:1;12284:13;12276:195;;;12355:13;;-1:-1:-1;;;;;12351:39:1;12339:52;;12446:15;;;;12411:12;;;;12387:1;12305:9;12276:195;;;-1:-1:-1;;;;;;;12527:32:1;;;;12522:2;12507:18;;12500:60;-1:-1:-1;;;12591:3:1;12576:19;12569:35;12488:3;11630:980;-1:-1:-1;;;11630:980:1:o

Swarm Source

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