ETH Price: $3,414.15 (-0.89%)
Gas: 1 Gwei

Token

Tail (TAIL)
 

Overview

Max Total Supply

973,873,016.954986401487031066 TAIL

Holders

821 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH (+0.10%)

Onchain Market Cap

$74,598.67

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,000 TAIL

Value
$0.38 ( ~0.000111301419497101 Eth) [0.0005%]
0x8b282a8e22b8899705a52809f1d12cbc5805d72b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A dog's Tail is crucial to its balance. Just like a balanced community and ecosystem is crucial to us. Tail is the Rewards token of our farming/Staking platform SaniFarm 1B Supply. Token will be used for DAO voting SANI.

Market

Volume (24H):$1,245.06
Market Capitalization:$0.00
Circulating Supply:0.00 TAIL
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Tail

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-29
*/

// SPDX-License-Identifier: UNLICENSED
// Sources flattened with hardhat v2.9.2 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]


pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

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


// File @openzeppelin/contracts/access/[email protected]


pragma solidity ^0.7.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


pragma solidity ^0.7.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);
}


// File @openzeppelin/contracts/math/[email protected]


pragma solidity ^0.7.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


pragma solidity ^0.7.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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:
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 { }
}


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.7.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


pragma solidity ^0.7.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.7.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


// File @uniswap/v3-core/contracts/libraries/[email protected]

pragma solidity >=0.4.0 <0.8.0;

/// @title Contains 512-bit math functions
/// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision
/// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bits
library FullMath {
    /// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv
    function mulDiv(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        // 512-bit multiply [prod1 prod0] = a * b
        // Compute the product mod 2**256 and mod 2**256 - 1
        // then use the Chinese Remainder Theorem to reconstruct
        // the 512 bit result. The result is stored in two 256
        // variables such that product = prod1 * 2**256 + prod0
        uint256 prod0; // Least significant 256 bits of the product
        uint256 prod1; // Most significant 256 bits of the product
        assembly {
            let mm := mulmod(a, b, not(0))
            prod0 := mul(a, b)
            prod1 := sub(sub(mm, prod0), lt(mm, prod0))
        }

        // Handle non-overflow cases, 256 by 256 division
        if (prod1 == 0) {
            require(denominator > 0);
            assembly {
                result := div(prod0, denominator)
            }
            return result;
        }

        // Make sure the result is less than 2**256.
        // Also prevents denominator == 0
        require(denominator > prod1);

        ///////////////////////////////////////////////
        // 512 by 256 division.
        ///////////////////////////////////////////////

        // Make division exact by subtracting the remainder from [prod1 prod0]
        // Compute remainder using mulmod
        uint256 remainder;
        assembly {
            remainder := mulmod(a, b, denominator)
        }
        // Subtract 256 bit number from 512 bit number
        assembly {
            prod1 := sub(prod1, gt(remainder, prod0))
            prod0 := sub(prod0, remainder)
        }

        // Factor powers of two out of denominator
        // Compute largest power of two divisor of denominator.
        // Always >= 1.
        uint256 twos = -denominator & denominator;
        // Divide denominator by power of two
        assembly {
            denominator := div(denominator, twos)
        }

        // Divide [prod1 prod0] by the factors of two
        assembly {
            prod0 := div(prod0, twos)
        }
        // Shift in bits from prod1 into prod0. For this we need
        // to flip `twos` such that it is 2**256 / twos.
        // If twos is zero, then it becomes one
        assembly {
            twos := add(div(sub(0, twos), twos), 1)
        }
        prod0 |= prod1 * twos;

        // Invert denominator mod 2**256
        // Now that denominator is an odd number, it has an inverse
        // modulo 2**256 such that denominator * inv = 1 mod 2**256.
        // Compute the inverse by starting with a seed that is correct
        // correct for four bits. That is, denominator * inv = 1 mod 2**4
        uint256 inv = (3 * denominator) ^ 2;
        // Now use Newton-Raphson iteration to improve the precision.
        // Thanks to Hensel's lifting lemma, this also works in modular
        // arithmetic, doubling the correct bits in each step.
        inv *= 2 - denominator * inv; // inverse mod 2**8
        inv *= 2 - denominator * inv; // inverse mod 2**16
        inv *= 2 - denominator * inv; // inverse mod 2**32
        inv *= 2 - denominator * inv; // inverse mod 2**64
        inv *= 2 - denominator * inv; // inverse mod 2**128
        inv *= 2 - denominator * inv; // inverse mod 2**256

        // Because the division is now exact we can divide by multiplying
        // with the modular inverse of denominator. This will give us the
        // correct result modulo 2**256. Since the precoditions guarantee
        // that the outcome is less than 2**256, this is the final result.
        // We don't need to compute the high bits of the result and prod1
        // is no longer required.
        result = prod0 * inv;
        return result;
    }

    /// @notice Calculates ceil(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    function mulDivRoundingUp(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        result = mulDiv(a, b, denominator);
        if (mulmod(a, b, denominator) > 0) {
            require(result < type(uint256).max);
            result++;
        }
    }
}


// File @uniswap/v3-core/contracts/libraries/[email protected]

pragma solidity >=0.7.0;

/// @title Optimized overflow and underflow safe math operations
/// @notice Contains methods for doing math operations that revert on overflow or underflow for minimal gas cost
library LowGasSafeMath {
    /// @notice Returns x + y, reverts if sum overflows uint256
    /// @param x The augend
    /// @param y The addend
    /// @return z The sum of x and y
    function add(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require((z = x + y) >= x);
    }

    /// @notice Returns x - y, reverts if underflows
    /// @param x The minuend
    /// @param y The subtrahend
    /// @return z The difference of x and y
    function sub(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require((z = x - y) <= x);
    }

    /// @notice Returns x * y, reverts if overflows
    /// @param x The multiplicand
    /// @param y The multiplier
    /// @return z The product of x and y
    function mul(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require(x == 0 || (z = x * y) / x == y);
    }

    /// @notice Returns x + y, reverts if overflows or underflows
    /// @param x The augend
    /// @param y The addend
    /// @return z The sum of x and y
    function add(int256 x, int256 y) internal pure returns (int256 z) {
        require((z = x + y) >= x == (y >= 0));
    }

    /// @notice Returns x - y, reverts if overflows or underflows
    /// @param x The minuend
    /// @param y The subtrahend
    /// @return z The difference of x and y
    function sub(int256 x, int256 y) internal pure returns (int256 z) {
        require((z = x - y) <= x == (y >= 0));
    }
}


// File contracts/Tail.sol

pragma solidity ^0.7.6;






/**
 * @title Tail ERC-20 token Contract
 */

contract Tail is Ownable, ERC20, Pausable {
    using LowGasSafeMath for uint256;
    using FullMath for uint256;
    using SafeERC20 for IERC20;

    /// @notice Event emitted when sender tax rate changes
    event senderTaxChanged(uint256 _senderTaxRate);

    /// @notice Event emitted when receiver tax rate changes
    event receiverTaxChanged(uint256 _receiverTaxRate);

    /// @notice Event emitted when add or remove tax free account
    event taxFreeChanged(address _taxFreeAccount);

    /// @notice Event emitted when add or remove taxed sender account
    event taxedSenderChanged(address _taxedSenderAccount);

    /// @notice Event emitted when add or remove taxed receiver account
    event taxedReceiverChanged(address _taxedReceiverAccount);

    /// @notice Event emitted when add or remove blacklistWallet
    event blacklistWalletChanged(address _blacklistWalletAccount);

    /// @notice Event emitted when burn address changes
    event burnAddressChanged(address _newBurnAddress);

    /// @notice Event emitted when transferring token with fee
    event transferWithTax(
        address _sender,
        address _recipient,
        uint256 amount,
        uint256 _burnAmount
    );

    address public burnWallet = 0xe7BE149fB160Ba37D96f051cafd2dC22fA9707Ef;
    uint256 internal constant maxSupply = 10**27;
    mapping(address => bool) public taxFreeAccount;
    mapping(address => bool) public taxedSender;
    mapping(address => bool) public taxedReceiver;
    mapping(address => bool) public blacklistWallet;
    uint256 public senderTaxRate = 9999; // basis points, 10000 is 100%; start high for anti-sniping
    uint256 public receiverTaxRate = 9999; // basis points, 10000 is 100%; start high for anti-sniping

    /**
     * @dev Constructor
     */
    constructor() ERC20("Tail", "TAIL") {
        _mint(_msgSender(), 16 * 10**25);
        taxFreeAccount[_msgSender()] = true;
    }

    /**
     * @dev External function to set sender tax Rate
     * @param _senderTaxRate New sender tax Rate in basis points
     */
    function setSenderTaxRate(uint256 _senderTaxRate) external onlyOwner {
        require(_senderTaxRate >= 0, "TaxRate above zero");
        require(_senderTaxRate <= 10000, "TaxRate below max");

        senderTaxRate = _senderTaxRate;
        emit senderTaxChanged(_senderTaxRate);
    }

    /**
     * @dev External function to set receiver tax Rate
     * @param _receiverTaxRate New receiver tax Rate in basis points
     */
    function setReceiverTaxRate(uint256 _receiverTaxRate) external onlyOwner {
        require(_receiverTaxRate >= 0, "TaxRate above zero");
        require(_receiverTaxRate <= 10000, "TaxRate below max");

        receiverTaxRate = _receiverTaxRate;
        emit receiverTaxChanged(_receiverTaxRate);
    }

    /**
     * @dev Add or remove tax free accounts
     * @param _account target address to set or remove from the tax free account list
     */
    function setTaxFree(address _account) external onlyOwner {
        if (taxFreeAccount[_account]) {
            delete taxFreeAccount[_account];
        } else {
            taxFreeAccount[_account] = true;
        }

        emit taxFreeChanged(_account);
    }

    /**
     * @dev Add or remove taxed sender accounts
     * @param _account target address to set or remove from the taxed sender account list
     */
    function setTaxedSender(address _account) external onlyOwner {
        if (taxedSender[_account]) {
            delete taxedSender[_account];
        } else {
            taxedSender[_account] = true;
        }

        emit taxedSenderChanged(_account);
    }

    /**
     * @dev Add or remove taxed receiver accounts
     * @param _account target address to set or remove from the taxed receiver account list
     */
    function setTaxedReceiver(address _account) external onlyOwner {
        if (taxedReceiver[_account]) {
            delete taxedReceiver[_account];
        } else {
            taxedReceiver[_account] = true;
        }

        emit taxedReceiverChanged(_account);
    }

    /**
     * @dev Add or remove blacklist wallet accounts
     * @param _account target address to set or remove from the blacklist account list
     */
    function setBlacklistWallet(address _account) external onlyOwner {
        if (blacklistWallet[_account]) {
            delete blacklistWallet[_account];
        } else {
            blacklistWallet[_account] = true;
        }

        emit blacklistWalletChanged(_account);
    }

    /**
     * @dev Custom transfer function
     * @param sender Sender address
     * @param recipient Recipient address
     * @param amount Amount to transfer
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override whenNotPaused {
        require(balanceOf(sender) >= amount, "Not enough tokens");

        //black listed wallets are not welcome, sorry!
        require(
            !blacklistWallet[sender] && !blacklistWallet[recipient],
            "Not welcome!"
        );

        //calculating the tax

        uint256 _taxSender = (taxedSender[sender]) ? senderTaxRate : 0;

        uint256 _taxReceiver = (taxedReceiver[recipient]) ? receiverTaxRate : 0;

        uint256 _taxApplied = (_taxSender > _taxReceiver)
            ? _taxSender
            : _taxReceiver;

        //Divide by 20000 for the 50-50% split
        uint256 _burnAmount = (taxFreeAccount[sender] ||
            taxFreeAccount[recipient])
            ? 0
            : FullMath.mulDiv(amount, _taxApplied, 20000);

        if (_burnAmount > 0) {
            _burn(sender, _burnAmount); //burn
            ERC20._transfer(sender, burnWallet, _burnAmount); //send to dedicated wallet
        }

        ERC20._transfer(sender, recipient, amount - (_burnAmount.mul(2))); //then transfer

        emit transferWithTax(sender, recipient, amount, _burnAmount);
    }

    /**
     * @dev Set burn address
     * @param _burnAddress New burn address
     */
    function setBurnAddress(address _burnAddress) external onlyOwner {
        burnWallet = _burnAddress;
        emit burnAddressChanged(burnWallet);
    }

    /**
     * @dev Mint new tokens
     * @param count Amount to mint
     */
    function mintToken(uint256 count) external onlyOwner {
        require(totalSupply() + count <= maxSupply, "Mint above maxSupply");
        _mint(_msgSender(), count);
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    /* Just in case anyone sends tokens by accident to this contract */

    /// @notice Transfers ETH to the recipient address
    /// @dev Fails with `STE`
    /// @param to The destination of the transfer
    /// @param value The value to be transferred
    function safeTransferETH(address to, uint256 value) internal {
        (bool success, ) = to.call{value: value}(new bytes(0));
        require(success, "STE");
    }

    function withdrawETH() external payable onlyOwner {
        safeTransferETH(_msgSender(), address(this).balance);
    }

    function withdrawERC20(IERC20 _tokenContract) external onlyOwner {
        _tokenContract.safeTransfer(
            _msgSender(),
            _tokenContract.balanceOf(address(this))
        );
    }

    /**
     * @dev allow the contract to receive ETH
     * without payable fallback and receive, it would fail
     */
    fallback() external payable {}

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_blacklistWalletAccount","type":"address"}],"name":"blacklistWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_newBurnAddress","type":"address"}],"name":"burnAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_receiverTaxRate","type":"uint256"}],"name":"receiverTaxChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_senderTaxRate","type":"uint256"}],"name":"senderTaxChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxFreeAccount","type":"address"}],"name":"taxFreeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxedReceiverAccount","type":"address"}],"name":"taxedReceiverChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_taxedSenderAccount","type":"address"}],"name":"taxedSenderChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_sender","type":"address"},{"indexed":false,"internalType":"address","name":"_recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_burnAmount","type":"uint256"}],"name":"transferWithTax","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklistWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receiverTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"senderTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setBlacklistWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_burnAddress","type":"address"}],"name":"setBurnAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_receiverTaxRate","type":"uint256"}],"name":"setReceiverTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_senderTaxRate","type":"uint256"}],"name":"setSenderTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setTaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setTaxedReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setTaxedSender","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"taxFreeAccount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"taxedReceiver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"taxedSender","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_tokenContract","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526006805462010000600160b01b03191675e7be149fb160ba37d96f051cafd2dc22fa9707ef000017905561270f600b819055600c553480156200004657600080fd5b506040518060400160405280600481526020016315185a5b60e21b815250604051806040016040528060048152602001631510525360e21b8152506000620000936200017d60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000f2906004906020850190620002fb565b50805162000108906005906020840190620002fb565b50506006805461ff001960ff19909116601217169055506200013f6200012d6200017d565b6a84595161401484a000000062000181565b6001600760006200014f6200017d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620003a7565b3390565b6001600160a01b038216620001dd576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001eb6000838362000294565b62000207816003546200029960201b620018861790919060201c565b6003556001600160a01b0382166000908152600160209081526040909120546200023c9183906200188662000299821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620002f4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200033357600085556200037e565b82601f106200034e57805160ff19168380011785556200037e565b828001600101855582156200037e579182015b828111156200037e57825182559160200191906001019062000361565b506200038c92915062000390565b5090565b5b808211156200038c576000815560010162000391565b6128df80620003b76000396000f3fe60806040526004361061021d5760003560e01c8063715018a61161011d578063c634d032116100b0578063e4ea92491161007f578063f4f3b20011610064578063f4f3b200146107ab578063f5a4fa1e146107de578063f91038531461081157610224565b8063e4ea92491461074e578063f2fde38b1461077857610224565b8063c634d032146106ae578063d9055345146106d8578063dd62ed3e1461070b578063e086e5ec1461074657610224565b8063a04fea53116100ec578063a04fea5314610612578063a457c2d714610627578063a9059cbb14610660578063ab07b4ce1461069957610224565b8063715018a6146105be5780638456cb59146105d35780638da5cb5b146105e857806395d89b41146105fd57610224565b80633f4ba83a116101b0578063564544941161017f57806362441bf61161016457806362441bf61461052557806366a25b991461055857806370a082311461058b57610224565b806356454494146104dd5780635c975abb1461051057610224565b80633f4ba83a1461042f5780634b0e7216146104445780634b8a3412146104775780634bbfbde7146104aa57610224565b806318160ddd116101ec57806318160ddd1461036157806323b872dd14610388578063313ce567146103cb57806339509351146103f657610224565b8063062287491461022657806306fdde0314610257578063095ea7b3146102e1578063118130071461032e57610224565b3661022457005b005b34801561023257600080fd5b5061023b61083b565b604080516001600160a01b039092168252519081900360200190f35b34801561026357600080fd5b5061026c610850565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a657818101518382015260200161028e565b50505050905090810190601f1680156102d35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ed57600080fd5b5061031a6004803603604081101561030457600080fd5b506001600160a01b0381351690602001356108e6565b604080519115158252519081900360200190f35b34801561033a57600080fd5b506102246004803603602081101561035157600080fd5b50356001600160a01b0316610904565b34801561036d57600080fd5b50610376610a21565b60408051918252519081900360200190f35b34801561039457600080fd5b5061031a600480360360608110156103ab57600080fd5b506001600160a01b03813581169160208101359091169060400135610a27565b3480156103d757600080fd5b506103e0610aaf565b6040805160ff9092168252519081900360200190f35b34801561040257600080fd5b5061031a6004803603604081101561041957600080fd5b506001600160a01b038135169060200135610ab8565b34801561043b57600080fd5b50610224610b06565b34801561045057600080fd5b506102246004803603602081101561046757600080fd5b50356001600160a01b0316610b84565b34801561048357600080fd5b5061031a6004803603602081101561049a57600080fd5b50356001600160a01b0316610c74565b3480156104b657600080fd5b5061031a600480360360208110156104cd57600080fd5b50356001600160a01b0316610c89565b3480156104e957600080fd5b506102246004803603602081101561050057600080fd5b50356001600160a01b0316610c9e565b34801561051c57600080fd5b5061031a610dba565b34801561053157600080fd5b5061031a6004803603602081101561054857600080fd5b50356001600160a01b0316610dc8565b34801561056457600080fd5b506102246004803603602081101561057b57600080fd5b50356001600160a01b0316610ddd565b34801561059757600080fd5b50610376600480360360208110156105ae57600080fd5b50356001600160a01b0316610efa565b3480156105ca57600080fd5b50610224610f15565b3480156105df57600080fd5b50610224610feb565b3480156105f457600080fd5b5061023b611067565b34801561060957600080fd5b5061026c611076565b34801561061e57600080fd5b506103766110d7565b34801561063357600080fd5b5061031a6004803603604081101561064a57600080fd5b506001600160a01b0381351690602001356110dd565b34801561066c57600080fd5b5061031a6004803603604081101561068357600080fd5b506001600160a01b038135169060200135611145565b3480156106a557600080fd5b50610376611159565b3480156106ba57600080fd5b50610224600480360360208110156106d157600080fd5b503561115f565b3480156106e457600080fd5b50610224600480360360208110156106fb57600080fd5b50356001600160a01b0316611251565b34801561071757600080fd5b506103766004803603604081101561072e57600080fd5b506001600160a01b038135811691602001351661136e565b610224611399565b34801561075a57600080fd5b506102246004803603602081101561077157600080fd5b503561141e565b34801561078457600080fd5b506102246004803603602081101561079b57600080fd5b50356001600160a01b0316611524565b3480156107b757600080fd5b50610224600480360360208110156107ce57600080fd5b50356001600160a01b0316611650565b3480156107ea57600080fd5b5061031a6004803603602081101561080157600080fd5b50356001600160a01b031661176b565b34801561081d57600080fd5b506102246004803603602081101561083457600080fd5b5035611780565b6006546201000090046001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b60006108fa6108f36118e0565b84846118e4565b5060015b92915050565b61090c6118e0565b6001600160a01b031661091d611067565b6001600160a01b031614610978576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16156109be576001600160a01b0381166000908152600a60205260409020805460ff191690556109e2565b6001600160a01b0381166000908152600a60205260409020805460ff191660011790555b604080516001600160a01b038316815290517f2553178028497e8f15dc736724f7130d3e851abddf3ca73d4577ec68bad3421d9181900360200190a150565b60035490565b6000610a348484846119d0565b610aa484610a406118e0565b610a9f856040518060600160405280602881526020016127c9602891396001600160a01b038a16600090815260026020526040812090610a7e6118e0565b6001600160a01b031681526020810191909152604001600020549190611c84565b6118e4565b5060015b9392505050565b60065460ff1690565b60006108fa610ac56118e0565b84610a9f8560026000610ad66118e0565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611886565b610b0e6118e0565b6001600160a01b0316610b1f611067565b6001600160a01b031614610b7a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610b82611d1b565b565b610b8c6118e0565b6001600160a01b0316610b9d611067565b6001600160a01b031614610bf8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600680546001600160a01b03808416620100009081027fffffffffffffffffffff0000000000000000000000000000000000000000ffff9093169290921792839055604080519290930416815290517f9e32b4c40dca0b28c17140371d7265dbdb8cd035570155289d304519701026a29181900360200190a150565b60096020526000908152604090205460ff1681565b60086020526000908152604090205460ff1681565b610ca66118e0565b6001600160a01b0316610cb7611067565b6001600160a01b031614610d12576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610d58576001600160a01b0381166000908152600760205260409020805460ff19169055610d7c565b6001600160a01b0381166000908152600760205260409020805460ff191660011790555b604080516001600160a01b038316815290517ec7ce2789cea79843f35fd3ceef7d293f0bda6665368ddb5bab44ac088f747e9181900360200190a150565b600654610100900460ff1690565b600a6020526000908152604090205460ff1681565b610de56118e0565b6001600160a01b0316610df6611067565b6001600160a01b031614610e51576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff1615610e97576001600160a01b0381166000908152600860205260409020805460ff19169055610ebb565b6001600160a01b0381166000908152600860205260409020805460ff191660011790555b604080516001600160a01b038316815290517f3489ac7ba6b6b538e835b8edad8e1f50d86ee0c84aac870958dd8c773094f26b9181900360200190a150565b6001600160a01b031660009081526001602052604090205490565b610f1d6118e0565b6001600160a01b0316610f2e611067565b6001600160a01b031614610f89576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b610ff36118e0565b6001600160a01b0316611004611067565b6001600160a01b03161461105f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610b82611dc5565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108dc5780601f106108b1576101008083540402835291602001916108dc565b600c5481565b60006108fa6110ea6118e0565b84610a9f8560405180606001604052806025815260200161288560259139600260006111146118e0565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611c84565b60006108fa6111526118e0565b84846119d0565b600b5481565b6111676118e0565b6001600160a01b0316611178611067565b6001600160a01b0316146111d3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6b033b2e3c9fd0803ce8000000816111e9610a21565b01111561123d576040805162461bcd60e51b815260206004820152601460248201527f4d696e742061626f7665206d6178537570706c79000000000000000000000000604482015290519081900360640190fd5b61124e6112486118e0565b82611e57565b50565b6112596118e0565b6001600160a01b031661126a611067565b6001600160a01b0316146112c5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff161561130b576001600160a01b0381166000908152600960205260409020805460ff1916905561132f565b6001600160a01b0381166000908152600960205260409020805460ff191660011790555b604080516001600160a01b038316815290517f5a85deb902f191487d5e6557010ee0b9001abfa19c22d5af210275fd1831b1319181900360200190a150565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6113a16118e0565b6001600160a01b03166113b2611067565b6001600160a01b03161461140d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610b826114186118e0565b47611f49565b6114266118e0565b6001600160a01b0316611437611067565b6001600160a01b031614611492576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6127108111156114e9576040805162461bcd60e51b815260206004820152601160248201527f546178526174652062656c6f77206d6178000000000000000000000000000000604482015290519081900360640190fd5b600b8190556040805182815290517f752d6d4ffce6a8a70ed363b0cf11217065f6a8e6962f4f61347154350672c8589181900360200190a150565b61152c6118e0565b6001600160a01b031661153d611067565b6001600160a01b031614611598576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166115dd5760405162461bcd60e51b81526004018080602001828103825260268152602001806127356026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6116586118e0565b6001600160a01b0316611669611067565b6001600160a01b0316146116c4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61124e6116cf6118e0565b604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b15801561172e57600080fd5b505afa158015611742573d6000803e3d6000fd5b505050506040513d602081101561175857600080fd5b50516001600160a01b0384169190612057565b60076020526000908152604090205460ff1681565b6117886118e0565b6001600160a01b0316611799611067565b6001600160a01b0316146117f4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61271081111561184b576040805162461bcd60e51b815260206004820152601160248201527f546178526174652062656c6f77206d6178000000000000000000000000000000604482015290519081900360640190fd5b600c8190556040805182815290517f2bb7f6dc57f6482f2e5d7f510b60df447c38f66548efe8cfbc2e2540b43f9cfc9181900360200190a150565b600082820183811015610aa8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b0383166119295760405162461bcd60e51b81526004018080602001828103825260248152602001806128376024913960400191505060405180910390fd5b6001600160a01b03821661196e5760405162461bcd60e51b815260040180806020018281038252602281526020018061275b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6119d8610dba565b15611a2a576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b80611a3484610efa565b1015611a87576040805162461bcd60e51b815260206004820152601160248201527f4e6f7420656e6f75676820746f6b656e73000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff16158015611ac957506001600160a01b0382166000908152600a602052604090205460ff16155b611b1a576040805162461bcd60e51b815260206004820152600c60248201527f4e6f742077656c636f6d65210000000000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03831660009081526008602052604081205460ff16611b41576000611b45565b600b545b6001600160a01b0384166000908152600960205260408120549192509060ff16611b70576000611b74565b600c545b90506000818311611b855781611b87565b825b6001600160a01b0387166000908152600760205260408120549192509060ff1680611bca57506001600160a01b03861660009081526007602052604090205460ff165b611be057611bdb8583614e206120d7565b611be3565b60005b90508015611c1357611bf58782612186565b600654611c139088906201000090046001600160a01b031683612282565b611c2a8787611c238460026123df565b8803612282565b604080516001600160a01b03808a168252881660208201528082018790526060810183905290517f0b0a49c8d042a49a5fa9f59858363cafadba1d4e36cd681f0e240a40e4cf765a9181900360800190a150505050505050565b60008184841115611d135760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611cd8578181015183820152602001611cc0565b50505050905090810190601f168015611d055780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b611d23610dba565b611d74576040805162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6006805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611da86118e0565b604080516001600160a01b039092168252519081900360200190a1565b611dcd610dba565b15611e1f576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6006805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611da86118e0565b6001600160a01b038216611eb2576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611ebe60008383612052565b600354611ecb9082611886565b6003556001600160a01b038216600090815260016020526040902054611ef19082611886565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b60208310611f955780518252601f199092019160209182019101611f76565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611ff7576040519150601f19603f3d011682016040523d82523d6000602084013e611ffc565b606091505b5050905080612052576040805162461bcd60e51b815260206004820152600360248201527f5354450000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052612052908490612403565b600080806000198587098686029250828110908390030390508061210d576000841161210257600080fd5b508290049050610aa8565b80841161211957600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6001600160a01b0382166121cb5760405162461bcd60e51b81526004018080602001828103825260218152602001806127f16021913960400191505060405180910390fd5b6121d782600083612052565b61221481604051806060016040528060228152602001612713602291396001600160a01b0385166000908152600160205260409020549190611c84565b6001600160a01b03831660009081526001602052604090205560035461223a90826124b4565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b0383166122c75760405162461bcd60e51b81526004018080602001828103825260258152602001806128126025913960400191505060405180910390fd5b6001600160a01b03821661230c5760405162461bcd60e51b81526004018080602001828103825260238152602001806126f06023913960400191505060405180910390fd5b612317838383612052565b6123548160405180606001604052806026815260200161277d602691396001600160a01b0386166000908152600160205260409020549190611c84565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546123839082611886565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008215806123fa575050818102818382816123f757fe5b04145b6108fe57600080fd5b6000612458826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125119092919063ffffffff16565b8051909150156120525780806020019051602081101561247757600080fd5b50516120525760405162461bcd60e51b815260040180806020018281038252602a81526020018061285b602a913960400191505060405180910390fd5b60008282111561250b576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60606125208484600085612528565b949350505050565b6060824710156125695760405162461bcd60e51b81526004018080602001828103825260268152602001806127a36026913960400191505060405180910390fd5b61257285612683565b6125c3576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106126015780518252601f1990920191602091820191016125e2565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612663576040519150601f19603f3d011682016040523d82523d6000602084013e612668565b606091505b5091509150612678828286612689565b979650505050505050565b3b151590565b60608315612698575081610aa8565b8251156126a85782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315611cd8578181015183820152602001611cc056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200ccfda403e4f085a9f04c3fb1cf2eeab24d941c9f99d4b5b418f05db54c445df64736f6c63430007060033

Deployed Bytecode

0x60806040526004361061021d5760003560e01c8063715018a61161011d578063c634d032116100b0578063e4ea92491161007f578063f4f3b20011610064578063f4f3b200146107ab578063f5a4fa1e146107de578063f91038531461081157610224565b8063e4ea92491461074e578063f2fde38b1461077857610224565b8063c634d032146106ae578063d9055345146106d8578063dd62ed3e1461070b578063e086e5ec1461074657610224565b8063a04fea53116100ec578063a04fea5314610612578063a457c2d714610627578063a9059cbb14610660578063ab07b4ce1461069957610224565b8063715018a6146105be5780638456cb59146105d35780638da5cb5b146105e857806395d89b41146105fd57610224565b80633f4ba83a116101b0578063564544941161017f57806362441bf61161016457806362441bf61461052557806366a25b991461055857806370a082311461058b57610224565b806356454494146104dd5780635c975abb1461051057610224565b80633f4ba83a1461042f5780634b0e7216146104445780634b8a3412146104775780634bbfbde7146104aa57610224565b806318160ddd116101ec57806318160ddd1461036157806323b872dd14610388578063313ce567146103cb57806339509351146103f657610224565b8063062287491461022657806306fdde0314610257578063095ea7b3146102e1578063118130071461032e57610224565b3661022457005b005b34801561023257600080fd5b5061023b61083b565b604080516001600160a01b039092168252519081900360200190f35b34801561026357600080fd5b5061026c610850565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a657818101518382015260200161028e565b50505050905090810190601f1680156102d35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ed57600080fd5b5061031a6004803603604081101561030457600080fd5b506001600160a01b0381351690602001356108e6565b604080519115158252519081900360200190f35b34801561033a57600080fd5b506102246004803603602081101561035157600080fd5b50356001600160a01b0316610904565b34801561036d57600080fd5b50610376610a21565b60408051918252519081900360200190f35b34801561039457600080fd5b5061031a600480360360608110156103ab57600080fd5b506001600160a01b03813581169160208101359091169060400135610a27565b3480156103d757600080fd5b506103e0610aaf565b6040805160ff9092168252519081900360200190f35b34801561040257600080fd5b5061031a6004803603604081101561041957600080fd5b506001600160a01b038135169060200135610ab8565b34801561043b57600080fd5b50610224610b06565b34801561045057600080fd5b506102246004803603602081101561046757600080fd5b50356001600160a01b0316610b84565b34801561048357600080fd5b5061031a6004803603602081101561049a57600080fd5b50356001600160a01b0316610c74565b3480156104b657600080fd5b5061031a600480360360208110156104cd57600080fd5b50356001600160a01b0316610c89565b3480156104e957600080fd5b506102246004803603602081101561050057600080fd5b50356001600160a01b0316610c9e565b34801561051c57600080fd5b5061031a610dba565b34801561053157600080fd5b5061031a6004803603602081101561054857600080fd5b50356001600160a01b0316610dc8565b34801561056457600080fd5b506102246004803603602081101561057b57600080fd5b50356001600160a01b0316610ddd565b34801561059757600080fd5b50610376600480360360208110156105ae57600080fd5b50356001600160a01b0316610efa565b3480156105ca57600080fd5b50610224610f15565b3480156105df57600080fd5b50610224610feb565b3480156105f457600080fd5b5061023b611067565b34801561060957600080fd5b5061026c611076565b34801561061e57600080fd5b506103766110d7565b34801561063357600080fd5b5061031a6004803603604081101561064a57600080fd5b506001600160a01b0381351690602001356110dd565b34801561066c57600080fd5b5061031a6004803603604081101561068357600080fd5b506001600160a01b038135169060200135611145565b3480156106a557600080fd5b50610376611159565b3480156106ba57600080fd5b50610224600480360360208110156106d157600080fd5b503561115f565b3480156106e457600080fd5b50610224600480360360208110156106fb57600080fd5b50356001600160a01b0316611251565b34801561071757600080fd5b506103766004803603604081101561072e57600080fd5b506001600160a01b038135811691602001351661136e565b610224611399565b34801561075a57600080fd5b506102246004803603602081101561077157600080fd5b503561141e565b34801561078457600080fd5b506102246004803603602081101561079b57600080fd5b50356001600160a01b0316611524565b3480156107b757600080fd5b50610224600480360360208110156107ce57600080fd5b50356001600160a01b0316611650565b3480156107ea57600080fd5b5061031a6004803603602081101561080157600080fd5b50356001600160a01b031661176b565b34801561081d57600080fd5b506102246004803603602081101561083457600080fd5b5035611780565b6006546201000090046001600160a01b031681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108dc5780601f106108b1576101008083540402835291602001916108dc565b820191906000526020600020905b8154815290600101906020018083116108bf57829003601f168201915b5050505050905090565b60006108fa6108f36118e0565b84846118e4565b5060015b92915050565b61090c6118e0565b6001600160a01b031661091d611067565b6001600160a01b031614610978576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16156109be576001600160a01b0381166000908152600a60205260409020805460ff191690556109e2565b6001600160a01b0381166000908152600a60205260409020805460ff191660011790555b604080516001600160a01b038316815290517f2553178028497e8f15dc736724f7130d3e851abddf3ca73d4577ec68bad3421d9181900360200190a150565b60035490565b6000610a348484846119d0565b610aa484610a406118e0565b610a9f856040518060600160405280602881526020016127c9602891396001600160a01b038a16600090815260026020526040812090610a7e6118e0565b6001600160a01b031681526020810191909152604001600020549190611c84565b6118e4565b5060015b9392505050565b60065460ff1690565b60006108fa610ac56118e0565b84610a9f8560026000610ad66118e0565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611886565b610b0e6118e0565b6001600160a01b0316610b1f611067565b6001600160a01b031614610b7a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610b82611d1b565b565b610b8c6118e0565b6001600160a01b0316610b9d611067565b6001600160a01b031614610bf8576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600680546001600160a01b03808416620100009081027fffffffffffffffffffff0000000000000000000000000000000000000000ffff9093169290921792839055604080519290930416815290517f9e32b4c40dca0b28c17140371d7265dbdb8cd035570155289d304519701026a29181900360200190a150565b60096020526000908152604090205460ff1681565b60086020526000908152604090205460ff1681565b610ca66118e0565b6001600160a01b0316610cb7611067565b6001600160a01b031614610d12576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610d58576001600160a01b0381166000908152600760205260409020805460ff19169055610d7c565b6001600160a01b0381166000908152600760205260409020805460ff191660011790555b604080516001600160a01b038316815290517ec7ce2789cea79843f35fd3ceef7d293f0bda6665368ddb5bab44ac088f747e9181900360200190a150565b600654610100900460ff1690565b600a6020526000908152604090205460ff1681565b610de56118e0565b6001600160a01b0316610df6611067565b6001600160a01b031614610e51576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526008602052604090205460ff1615610e97576001600160a01b0381166000908152600860205260409020805460ff19169055610ebb565b6001600160a01b0381166000908152600860205260409020805460ff191660011790555b604080516001600160a01b038316815290517f3489ac7ba6b6b538e835b8edad8e1f50d86ee0c84aac870958dd8c773094f26b9181900360200190a150565b6001600160a01b031660009081526001602052604090205490565b610f1d6118e0565b6001600160a01b0316610f2e611067565b6001600160a01b031614610f89576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b610ff36118e0565b6001600160a01b0316611004611067565b6001600160a01b03161461105f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610b82611dc5565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108dc5780601f106108b1576101008083540402835291602001916108dc565b600c5481565b60006108fa6110ea6118e0565b84610a9f8560405180606001604052806025815260200161288560259139600260006111146118e0565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611c84565b60006108fa6111526118e0565b84846119d0565b600b5481565b6111676118e0565b6001600160a01b0316611178611067565b6001600160a01b0316146111d3576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6b033b2e3c9fd0803ce8000000816111e9610a21565b01111561123d576040805162461bcd60e51b815260206004820152601460248201527f4d696e742061626f7665206d6178537570706c79000000000000000000000000604482015290519081900360640190fd5b61124e6112486118e0565b82611e57565b50565b6112596118e0565b6001600160a01b031661126a611067565b6001600160a01b0316146112c5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff161561130b576001600160a01b0381166000908152600960205260409020805460ff1916905561132f565b6001600160a01b0381166000908152600960205260409020805460ff191660011790555b604080516001600160a01b038316815290517f5a85deb902f191487d5e6557010ee0b9001abfa19c22d5af210275fd1831b1319181900360200190a150565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6113a16118e0565b6001600160a01b03166113b2611067565b6001600160a01b03161461140d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610b826114186118e0565b47611f49565b6114266118e0565b6001600160a01b0316611437611067565b6001600160a01b031614611492576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6127108111156114e9576040805162461bcd60e51b815260206004820152601160248201527f546178526174652062656c6f77206d6178000000000000000000000000000000604482015290519081900360640190fd5b600b8190556040805182815290517f752d6d4ffce6a8a70ed363b0cf11217065f6a8e6962f4f61347154350672c8589181900360200190a150565b61152c6118e0565b6001600160a01b031661153d611067565b6001600160a01b031614611598576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166115dd5760405162461bcd60e51b81526004018080602001828103825260268152602001806127356026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6116586118e0565b6001600160a01b0316611669611067565b6001600160a01b0316146116c4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61124e6116cf6118e0565b604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516001600160a01b038516916370a08231916024808301926020929190829003018186803b15801561172e57600080fd5b505afa158015611742573d6000803e3d6000fd5b505050506040513d602081101561175857600080fd5b50516001600160a01b0384169190612057565b60076020526000908152604090205460ff1681565b6117886118e0565b6001600160a01b0316611799611067565b6001600160a01b0316146117f4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61271081111561184b576040805162461bcd60e51b815260206004820152601160248201527f546178526174652062656c6f77206d6178000000000000000000000000000000604482015290519081900360640190fd5b600c8190556040805182815290517f2bb7f6dc57f6482f2e5d7f510b60df447c38f66548efe8cfbc2e2540b43f9cfc9181900360200190a150565b600082820183811015610aa8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b0383166119295760405162461bcd60e51b81526004018080602001828103825260248152602001806128376024913960400191505060405180910390fd5b6001600160a01b03821661196e5760405162461bcd60e51b815260040180806020018281038252602281526020018061275b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6119d8610dba565b15611a2a576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b80611a3484610efa565b1015611a87576040805162461bcd60e51b815260206004820152601160248201527f4e6f7420656e6f75676820746f6b656e73000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff16158015611ac957506001600160a01b0382166000908152600a602052604090205460ff16155b611b1a576040805162461bcd60e51b815260206004820152600c60248201527f4e6f742077656c636f6d65210000000000000000000000000000000000000000604482015290519081900360640190fd5b6001600160a01b03831660009081526008602052604081205460ff16611b41576000611b45565b600b545b6001600160a01b0384166000908152600960205260408120549192509060ff16611b70576000611b74565b600c545b90506000818311611b855781611b87565b825b6001600160a01b0387166000908152600760205260408120549192509060ff1680611bca57506001600160a01b03861660009081526007602052604090205460ff165b611be057611bdb8583614e206120d7565b611be3565b60005b90508015611c1357611bf58782612186565b600654611c139088906201000090046001600160a01b031683612282565b611c2a8787611c238460026123df565b8803612282565b604080516001600160a01b03808a168252881660208201528082018790526060810183905290517f0b0a49c8d042a49a5fa9f59858363cafadba1d4e36cd681f0e240a40e4cf765a9181900360800190a150505050505050565b60008184841115611d135760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611cd8578181015183820152602001611cc0565b50505050905090810190601f168015611d055780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b611d23610dba565b611d74576040805162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f7420706175736564000000000000000000000000604482015290519081900360640190fd5b6006805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611da86118e0565b604080516001600160a01b039092168252519081900360200190a1565b611dcd610dba565b15611e1f576040805162461bcd60e51b815260206004820152601060248201527f5061757361626c653a2070617573656400000000000000000000000000000000604482015290519081900360640190fd5b6006805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611da86118e0565b6001600160a01b038216611eb2576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611ebe60008383612052565b600354611ecb9082611886565b6003556001600160a01b038216600090815260016020526040902054611ef19082611886565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b60208310611f955780518252601f199092019160209182019101611f76565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611ff7576040519150601f19603f3d011682016040523d82523d6000602084013e611ffc565b606091505b5050905080612052576040805162461bcd60e51b815260206004820152600360248201527f5354450000000000000000000000000000000000000000000000000000000000604482015290519081900360640190fd5b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052612052908490612403565b600080806000198587098686029250828110908390030390508061210d576000841161210257600080fd5b508290049050610aa8565b80841161211957600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6001600160a01b0382166121cb5760405162461bcd60e51b81526004018080602001828103825260218152602001806127f16021913960400191505060405180910390fd5b6121d782600083612052565b61221481604051806060016040528060228152602001612713602291396001600160a01b0385166000908152600160205260409020549190611c84565b6001600160a01b03831660009081526001602052604090205560035461223a90826124b4565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b0383166122c75760405162461bcd60e51b81526004018080602001828103825260258152602001806128126025913960400191505060405180910390fd5b6001600160a01b03821661230c5760405162461bcd60e51b81526004018080602001828103825260238152602001806126f06023913960400191505060405180910390fd5b612317838383612052565b6123548160405180606001604052806026815260200161277d602691396001600160a01b0386166000908152600160205260409020549190611c84565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546123839082611886565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008215806123fa575050818102818382816123f757fe5b04145b6108fe57600080fd5b6000612458826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125119092919063ffffffff16565b8051909150156120525780806020019051602081101561247757600080fd5b50516120525760405162461bcd60e51b815260040180806020018281038252602a81526020018061285b602a913960400191505060405180910390fd5b60008282111561250b576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60606125208484600085612528565b949350505050565b6060824710156125695760405162461bcd60e51b81526004018080602001828103825260268152602001806127a36026913960400191505060405180910390fd5b61257285612683565b6125c3576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106126015780518252601f1990920191602091820191016125e2565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612663576040519150601f19603f3d011682016040523d82523d6000602084013e612668565b606091505b5091509150612678828286612689565b979650505050505050565b3b151590565b60608315612698575081610aa8565b8251156126a85782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315611cd8578181015183820152602001611cc056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212200ccfda403e4f085a9f04c3fb1cf2eeab24d941c9f99d4b5b418f05db54c445df64736f6c63430007060033

Deployed Bytecode Sourcemap

45985:7749:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47232:70;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;47232:70:0;;;;;;;;;;;;;;15876:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18022:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18022:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;50329:288;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50329:288:0;-1:-1:-1;;;;;50329:288:0;;:::i;16975:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18673:321;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18673:321:0;;;;;;;;;;;;;;;;;:::i;16819:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19403:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19403:218:0;;;;;;;;:::i;52685:67::-;;;;;;;;;;;;;:::i;52184:155::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52184:155:0;-1:-1:-1;;;;;52184:155:0;;:::i;47463:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47463:45:0;-1:-1:-1;;;;;47463:45:0;;:::i;47413:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47413:43:0;-1:-1:-1;;;;;47413:43:0;;:::i;49011:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49011:269:0;-1:-1:-1;;;;;49011:269:0;;:::i;37618:86::-;;;;;;;;;;;;;:::i;47515:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47515:47:0;-1:-1:-1;;;;;47515:47:0;;:::i;49446:268::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49446:268:0;-1:-1:-1;;;;;49446:268:0;;:::i;17146:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17146:127:0;-1:-1:-1;;;;;17146:127:0;;:::i;2867:148::-;;;;;;;;;;;;;:::i;52614:63::-;;;;;;;;;;;;;:::i;2216:87::-;;;;;;;;;;;;;:::i;16086:95::-;;;;;;;;;;;;;:::i;47671:37::-;;;;;;;;;;;;;:::i;20124:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20124:269:0;;;;;;;;:::i;17486:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17486:175:0;;;;;;;;:::i;47569:35::-;;;;;;;;;;;;;:::i;52430:176::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52430:176:0;;:::i;49884:278::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49884:278:0;-1:-1:-1;;;;;49884:278:0;;:::i;17724:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17724:151:0;;;;;;;;;;:::i;53199:121::-;;;:::i;48099:293::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48099:293:0;;:::i;3170:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3170:244:0;-1:-1:-1;;;;;3170:244:0;;:::i;53328:203::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53328:203:0;-1:-1:-1;;;;;53328:203:0;;:::i;47360:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47360:46:0;-1:-1:-1;;;;;47360:46:0;;:::i;48544:309::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48544:309:0;;:::i;47232:70::-;;;;;;-1:-1:-1;;;;;47232:70:0;;:::o;15876:91::-;15954:5;15947:12;;;;;;;;-1:-1:-1;;15947:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15921:13;;15947:12;;15954:5;;15947:12;;15954:5;15947:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15876:91;:::o;18022:169::-;18105:4;18122:39;18131:12;:10;:12::i;:::-;18145:7;18154:6;18122:8;:39::i;:::-;-1:-1:-1;18179:4:0;18022:169;;;;;:::o;50329:288::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50409:25:0;::::1;;::::0;;;:15:::1;:25;::::0;;;;;::::1;;50405:155;;;-1:-1:-1::0;;;;;50458:25:0;::::1;;::::0;;;:15:::1;:25;::::0;;;;50451:32;;-1:-1:-1;;50451:32:0::1;::::0;;50405:155:::1;;;-1:-1:-1::0;;;;;50516:25:0;::::1;;::::0;;;:15:::1;:25;::::0;;;;:32;;-1:-1:-1;;50516:32:0::1;50544:4;50516:32;::::0;;50405:155:::1;50577:32;::::0;;-1:-1:-1;;;;;50577:32:0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;50329:288:::0;:::o;16975:108::-;17063:12;;16975:108;:::o;18673:321::-;18779:4;18796:36;18806:6;18814:9;18825:6;18796:9;:36::i;:::-;18843:121;18852:6;18860:12;:10;:12::i;:::-;18874:89;18912:6;18874:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18874:19:0;;;;;;:11;:19;;;;;;18894:12;:10;:12::i;:::-;-1:-1:-1;;;;;18874:33:0;;;;;;;;;;;;-1:-1:-1;18874:33:0;;;:89;:37;:89::i;:::-;18843:8;:121::i;:::-;-1:-1:-1;18982:4:0;18673:321;;;;;;:::o;16819:91::-;16893:9;;;;16819:91;:::o;19403:218::-;19491:4;19508:83;19517:12;:10;:12::i;:::-;19531:7;19540:50;19579:10;19540:11;:25;19552:12;:10;:12::i;:::-;-1:-1:-1;;;;;19540:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19540:25:0;;;:34;;;;;;;;;;;:38;:50::i;52685:67::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52734:10:::1;:8;:10::i;:::-;52685:67::o:0;52184:155::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52260:10:::1;:25:::0;;-1:-1:-1;;;;;52260:25:0;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;;52301:30:::1;::::0;;52320:10;;;::::1;;52301:30:::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;52184:155:::0;:::o;47463:45::-;;;;;;;;;;;;;;;:::o;47413:43::-;;;;;;;;;;;;;;;:::o;49011:269::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49083:24:0;::::1;;::::0;;;:14:::1;:24;::::0;;;;;::::1;;49079:152;;;-1:-1:-1::0;;;;;49131:24:0;::::1;;::::0;;;:14:::1;:24;::::0;;;;49124:31;;-1:-1:-1;;49124:31:0::1;::::0;;49079:152:::1;;;-1:-1:-1::0;;;;;49188:24:0;::::1;;::::0;;;:14:::1;:24;::::0;;;;:31;;-1:-1:-1;;49188:31:0::1;49215:4;49188:31;::::0;;49079:152:::1;49248:24;::::0;;-1:-1:-1;;;;;49248:24:0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;49011:269:::0;:::o;37618:86::-;37689:7;;;;;;;;37618:86::o;47515:47::-;;;;;;;;;;;;;;;:::o;49446:268::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49522:21:0;::::1;;::::0;;;:11:::1;:21;::::0;;;;;::::1;;49518:143;;;-1:-1:-1::0;;;;;49567:21:0;::::1;;::::0;;;:11:::1;:21;::::0;;;;49560:28;;-1:-1:-1;;49560:28:0::1;::::0;;49518:143:::1;;;-1:-1:-1::0;;;;;49621:21:0;::::1;;::::0;;;:11:::1;:21;::::0;;;;:28;;-1:-1:-1;;49621:28:0::1;49645:4;49621:28;::::0;;49518:143:::1;49678:28;::::0;;-1:-1:-1;;;;;49678:28:0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;49446:268:::0;:::o;17146:127::-;-1:-1:-1;;;;;17247:18:0;17220:7;17247:18;;;:9;:18;;;;;;;17146:127::o;2867:148::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2974:1:::1;2958:6:::0;;2937:40:::1;::::0;-1:-1:-1;;;;;2958:6:0;;::::1;::::0;2937:40:::1;::::0;2974:1;;2937:40:::1;3005:1;2988:19:::0;;;::::1;::::0;;2867:148::o;52614:63::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52661:8:::1;:6;:8::i;2216:87::-:0;2262:7;2289:6;-1:-1:-1;;;;;2289:6:0;2216:87;:::o;16086:95::-;16166:7;16159:14;;;;;;;;-1:-1:-1;;16159:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16133:13;;16159:14;;16166:7;;16159:14;;16166:7;16159:14;;;;;;;;;;;;;;;;;;;;;;;;47671:37;;;;:::o;20124:269::-;20217:4;20234:129;20243:12;:10;:12::i;:::-;20257:7;20266:96;20305:15;20266:96;;;;;;;;;;;;;;;;;:11;:25;20278:12;:10;:12::i;:::-;-1:-1:-1;;;;;20266:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20266:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17486:175::-;17572:4;17589:42;17599:12;:10;:12::i;:::-;17613:9;17624:6;17589:9;:42::i;47569:35::-;;;;:::o;52430:176::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47347:6:::1;52518:5;52502:13;:11;:13::i;:::-;:21;:34;;52494:67;;;::::0;;-1:-1:-1;;;52494:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;52572:26;52578:12;:10;:12::i;:::-;52592:5;52572;:26::i;:::-;52430:176:::0;:::o;49884:278::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49962:23:0;::::1;;::::0;;;:13:::1;:23;::::0;;;;;::::1;;49958:149;;;-1:-1:-1::0;;;;;50009:23:0;::::1;;::::0;;;:13:::1;:23;::::0;;;;50002:30;;-1:-1:-1;;50002:30:0::1;::::0;;49958:149:::1;;;-1:-1:-1::0;;;;;50065:23:0;::::1;;::::0;;;:13:::1;:23;::::0;;;;:30;;-1:-1:-1;;50065:30:0::1;50091:4;50065:30;::::0;;49958:149:::1;50124:30;::::0;;-1:-1:-1;;;;;50124:30:0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;49884:278:::0;:::o;17724:151::-;-1:-1:-1;;;;;17840:18:0;;;17813:7;17840:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17724:151::o;53199:121::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53260:52:::1;53276:12;:10;:12::i;:::-;53290:21;53260:15;:52::i;48099:293::-:0;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48266:5:::1;48248:14;:23;;48240:53;;;::::0;;-1:-1:-1;;;48240:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48306:13;:30:::0;;;48352:32:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48099:293:::0;:::o;3170:244::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3259:22:0;::::1;3251:73;;;;-1:-1:-1::0;;;3251:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3361:6;::::0;;3340:38:::1;::::0;-1:-1:-1;;;;;3340:38:0;;::::1;::::0;3361:6;::::1;::::0;3340:38:::1;::::0;::::1;3389:6;:17:::0;;;::::1;-1:-1:-1::0;;;;;3389:17:0;;;::::1;::::0;;;::::1;::::0;;3170:244::o;53328:203::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53404:119:::1;53446:12;:10;:12::i;:::-;53473:39;::::0;;;;;53506:4:::1;53473:39;::::0;::::1;::::0;;;-1:-1:-1;;;;;53473:24:0;::::1;::::0;::::1;::::0;:39;;;;;::::1;::::0;;;;;;;;:24;:39;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;53473:39:0;-1:-1:-1;;;;;53404:27:0;::::1;::::0;:119;:27:::1;:119::i;47360:46::-:0;;;;;;;;;;;;;;;:::o;48544:309::-;2447:12;:10;:12::i;:::-;-1:-1:-1;;;;;2436:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2436:23:0;;2428:68;;;;;-1:-1:-1;;;2428:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48719:5:::1;48699:16;:25;;48691:55;;;::::0;;-1:-1:-1;;;48691:55:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;48759:15;:34:::0;;;48809:36:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;48544:309:::0;:::o;9043:179::-;9101:7;9133:5;;;9157:6;;;;9149:46;;;;;-1:-1:-1;;;9149:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;753:106;841:10;753:106;:::o;23271:346::-;-1:-1:-1;;;;;23373:19:0;;23365:68;;;;-1:-1:-1;;;23365:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23452:21:0;;23444:68;;;;-1:-1:-1;;;23444:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23525:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23577:32;;;;;;;;;;;;;;;;;23271:346;;;:::o;50802:1281::-;37944:8;:6;:8::i;:::-;37943:9;37935:38;;;;;-1:-1:-1;;;37935:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;50978:6:::1;50957:17;50967:6;50957:9;:17::i;:::-;:27;;50949:57;;;::::0;;-1:-1:-1;;;50949:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;51098:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;::::1;;51097:24;:55:::0;::::1;;;-1:-1:-1::0;;;;;;51126:26:0;::::1;;::::0;;;:15:::1;:26;::::0;;;;;::::1;;51125:27;51097:55;51075:117;;;::::0;;-1:-1:-1;;;51075:117:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;51260:19:0;::::1;51238:18;51260:19:::0;;;:11:::1;:19;::::0;;;;;::::1;;51259:41;;51299:1;51259:41;;;51283:13;;51259:41;-1:-1:-1::0;;;;;51337:24:0;::::1;51313:20;51337:24:::0;;;:13:::1;:24;::::0;;;;;51238:62;;-1:-1:-1;51313:20:0;51337:24:::1;;51336:48;;51383:1;51336:48;;;51365:15;;51336:48;51313:71;;51397:19;51433:12;51420:10;:25;51419:81;;51488:12;51419:81;;;51462:10;51419:81;-1:-1:-1::0;;;;;51584:22:0;::::1;51561:19;51584:22:::0;;;:14:::1;:22;::::0;;;;;51397:103;;-1:-1:-1;51561:19:0;51584:22:::1;;::::0;:64:::1;;-1:-1:-1::0;;;;;;51623:25:0;::::1;;::::0;;;:14:::1;:25;::::0;;;;;::::1;;51584:64;51583:142;;51682:43;51698:6;51706:11;51719:5;51682:15;:43::i;:::-;51583:142;;;51665:1;51583:142;51561:164:::0;-1:-1:-1;51742:15:0;;51738:171:::1;;51774:26;51780:6;51788:11;51774:5;:26::i;:::-;51846:10;::::0;51822:48:::1;::::0;51838:6;;51846:10;;::::1;-1:-1:-1::0;;;;;51846:10:0::1;51858:11:::0;51822:15:::1;:48::i;:::-;51921:65;51937:6:::0;51945:9;51966:18:::1;:11:::0;51982:1:::1;51966:15;:18::i;:::-;51956:6;:29;51921:15;:65::i;:::-;52020:55;::::0;;-1:-1:-1;;;;;52020:55:0;;::::1;::::0;;;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;;::::1;::::0;;;;;;;::::1;37984:1;;;;50802:1281:::0;;;:::o;11870:166::-;11956:7;11992:12;11984:6;;;;11976:29;;;;-1:-1:-1;;;11976:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;12023:5:0;;;11870:166::o;38677:120::-;38221:8;:6;:8::i;:::-;38213:41;;;;;-1:-1:-1;;;38213:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38736:7:::1;:15:::0;;-1:-1:-1;;38736:15:0::1;::::0;;38767:22:::1;38776:12;:10;:12::i;:::-;38767:22;::::0;;-1:-1:-1;;;;;38767:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;38677:120::o:0;38418:118::-;37944:8;:6;:8::i;:::-;37943:9;37935:38;;;;;-1:-1:-1;;;37935:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38478:7:::1;:14:::0;;-1:-1:-1;;38478:14:0::1;;;::::0;;38508:20:::1;38515:12;:10;:12::i;21704:378::-:0;-1:-1:-1;;;;;21788:21:0;;21780:65;;;;;-1:-1:-1;;;21780:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21858:49;21887:1;21891:7;21900:6;21858:20;:49::i;:::-;21935:12;;:24;;21952:6;21935:16;:24::i;:::-;21920:12;:39;-1:-1:-1;;;;;21991:18:0;;;;;;:9;:18;;;;;;:30;;22014:6;21991:22;:30::i;:::-;-1:-1:-1;;;;;21970:18:0;;;;;;:9;:18;;;;;;;;:51;;;;22037:37;;;;;;;21970:18;;;;22037:37;;;;;;;;;;21704:378;;:::o;53023:168::-;53136:12;;;53096;53136;;;;;;;;;-1:-1:-1;;;;;53114:7:0;;;53129:5;;53114:35;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53114:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53095:54;;;53168:7;53160:23;;;;;-1:-1:-1;;;53160:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;53023:168;;;:::o;33460:177::-;33570:58;;;-1:-1:-1;;;;;33570:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33593:23;33570:58;;;33543:86;;33563:5;;33543:19;:86::i;39603:3868::-;39719:14;;;-1:-1:-1;;40235:1:0;40232;40225:20;40268:9;;;;-1:-1:-1;40320:13:0;;;40304:14;;;;40300:34;;-1:-1:-1;40420:10:0;40416:185;;40469:1;40455:11;:15;40447:24;;;;;;-1:-1:-1;40524:23:0;;;;-1:-1:-1;40576:13:0;;40416:185;40732:5;40718:11;:19;40710:28;;;;;;41023:17;41101:11;41098:1;41095;41088:25;41464:12;41479;;;:26;;41602:22;;;;;42425:1;42406;:15;;42405:21;;42656:17;;;42652:21;;42645:28;42715:17;;;42711:21;;42704:28;42775:17;;;42771:21;;42764:28;42835:17;;;42831:21;;42824:28;42895:17;;;42891:21;;42884:28;42956:17;;;42952:21;;;42945:28;41985:12;;;;41981:23;;;42006:1;41977:31;41234:20;;;41223:32;;;42038:12;;;;41278:21;;;;41735:16;;;;42029:21;;;;43428:11;;;;;-1:-1:-1;;39603:3868:0;;;;;:::o;22415:418::-;-1:-1:-1;;;;;22499:21:0;;22491:67;;;;-1:-1:-1;;;22491:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22571:49;22592:7;22609:1;22613:6;22571:20;:49::i;:::-;22654:68;22677:6;22654:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22654:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;22633:18:0;;;;;;:9;:18;;;;;:89;22748:12;;:24;;22765:6;22748:16;:24::i;:::-;22733:12;:39;22788:37;;;;;;;;22814:1;;-1:-1:-1;;;;;22788:37:0;;;;;;;;;;;;22415:418;;:::o;20883:539::-;-1:-1:-1;;;;;20989:20:0;;20981:70;;;;-1:-1:-1;;;20981:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21070:23:0;;21062:71;;;;-1:-1:-1;;;21062:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21146:47;21167:6;21175:9;21186:6;21146:20;:47::i;:::-;21226:71;21248:6;21226:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21226:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;21206:17:0;;;;;;;:9;:17;;;;;;:91;;;;21331:20;;;;;;;:32;;21356:6;21331:24;:32::i;:::-;-1:-1:-1;;;;;21308:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;21379:35;;;;;;;21308:20;;21379:35;;;;;;;;;;;;;20883:539;;;:::o;45134:127::-;45192:9;45222:6;;;:30;;-1:-1:-1;;45237:5:0;;;45251:1;45246;45237:5;45246:1;45232:15;;;;;:20;45222:30;45214:39;;;;;35765:761;36189:23;36215:69;36243:4;36215:69;;;;;;;;;;;;;;;;;36223:5;-1:-1:-1;;;;;36215:27:0;;;:69;;;;;:::i;:::-;36299:17;;36189:95;;-1:-1:-1;36299:21:0;36295:224;;36441:10;36430:30;;;;;;;;;;;;;;;-1:-1:-1;36430:30:0;36422:85;;;;-1:-1:-1;;;36422:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9505:158;9563:7;9596:1;9591;:6;;9583:49;;;;;-1:-1:-1;;;9583:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9650:5:0;;;9505:158::o;28448:195::-;28551:12;28583:52;28605:6;28613:4;28619:1;28622:12;28583:21;:52::i;:::-;28576:59;28448:195;-1:-1:-1;;;;28448:195:0:o;29500:530::-;29627:12;29685:5;29660:21;:30;;29652:81;;;;-1:-1:-1;;;29652:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29752:18;29763:6;29752:10;:18::i;:::-;29744:60;;;;;-1:-1:-1;;;29744:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;29878:12;29892:23;29919:6;-1:-1:-1;;;;;29919:11:0;29939:5;29947:4;29919:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;29919:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29877:75;;;;29970:52;29988:7;29997:10;30009:12;29970:17;:52::i;:::-;29963:59;29500:530;-1:-1:-1;;;;;;;29500:530:0:o;25530:422::-;25897:20;25936:8;;;25530:422::o;32040:742::-;32155:12;32184:7;32180:595;;;-1:-1:-1;32215:10:0;32208:17;;32180:595;32329:17;;:21;32325:439;;32592:10;32586:17;32653:15;32640:10;32636:2;32632:19;32625:44;32540:148;32728:20;;-1:-1:-1;;;32728:20:0;;;;;;;;;;;;;;;;;32735:12;;32728:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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