FTM Price: $0.99 (-3.43%)
Gas: 29 GWei

Contract

0x2B7c5841997275d2D548cE9b19D54B655725EBFc
 

Overview

FTM Balance

Fantom LogoFantom LogoFantom Logo0 FTM

FTM Value

$0.00

More Info

Private Name Tags

TokenTracker

Sponsored

Transaction Hash
Method
Block
From
To
Value
Approve762371482024-02-24 21:44:4133 days ago1708811081IN
Specter Finance: SPECTER Token
0 FTM0.00248747102.59301797
Approve743462782024-01-17 17:21:5071 days ago1705512110IN
Specter Finance: SPECTER Token
0 FTM0.0009810820.99566351
Approve738575532024-01-07 17:41:3281 days ago1704649292IN
Specter Finance: SPECTER Token
0 FTM0.0011307144
Approve737968382024-01-06 17:56:3782 days ago1704563797IN
Specter Finance: SPECTER Token
0 FTM0.000443618.29613642
Approve724098092023-12-11 23:42:57108 days ago1702338177IN
Specter Finance: SPECTER Token
0 FTM0.001284950
Approve723975502023-12-11 17:39:24108 days ago1702316364IN
Specter Finance: SPECTER Token
0 FTM0.00593029124.95361919
Approve706836312023-11-16 2:50:17134 days ago1700103017IN
Specter Finance: SPECTER Token
0 FTM0.0007195428
Approve653511682023-07-08 9:19:24265 days ago1688807964IN
Specter Finance: SPECTER Token
0 FTM0.00824097339.89020063
Transfer628643522023-05-22 17:45:20311 days ago1684777520IN
Specter Finance: SPECTER Token
0 FTM0.03922821834.80279678
Approve614178782023-05-03 23:43:52330 days ago1683157432IN
Specter Finance: SPECTER Token
0 FTM0.00532196219.49872111
Approve610063152023-04-28 20:02:41335 days ago1682712161IN
Specter Finance: SPECTER Token
0 FTM0.00719475265
Approve595498982023-04-10 10:30:31354 days ago1681122631IN
Specter Finance: SPECTER Token
0 FTM0.0009969941.12007232
Approve588539492023-04-01 13:57:25362 days ago1680357445IN
Specter Finance: SPECTER Token
0 FTM0.0006870828.33819418
Approve581111532023-03-22 6:53:28373 days ago1679468008IN
Specter Finance: SPECTER Token
0 FTM0.0007237228.16250579
Transfer572489382023-03-09 13:02:05386 days ago1678366925IN
Specter Finance: SPECTER Token
0 FTM0.00457425165.27284235
Transfer572489382023-03-09 13:02:05386 days ago1678366925IN
Specter Finance: SPECTER Token
0 FTM0.00457425165.27284235
Transfer572489352023-03-09 13:02:02386 days ago1678366922IN
Specter Finance: SPECTER Token
0 FTM0.0033224120.04196612
Transfer572489322023-03-09 13:01:58386 days ago1678366918IN
Specter Finance: SPECTER Token
0 FTM0.0054155115.21612352
Transfer572489282023-03-09 13:01:52386 days ago1678366912IN
Specter Finance: SPECTER Token
0 FTM0.00536245184.75924438
Approve538041502023-01-15 8:19:08439 days ago1673770748IN
Specter Finance: SPECTER Token
0 FTM0.0010279240
Approve535419182023-01-10 17:21:11443 days ago1673371271IN
Specter Finance: SPECTER Token
0 FTM0.00094639.01688528
Approve529723172022-12-28 12:20:31457 days ago1672230031IN
Specter Finance: SPECTER Token
0 FTM0.0010876433
Transfer527565932022-12-23 18:15:09461 days ago1671819309IN
Specter Finance: SPECTER Token
0 FTM0.0024715649.83692644
Approve523833542022-12-15 10:57:11470 days ago1671101831IN
Specter Finance: SPECTER Token
0 FTM0.0005135419.98372835
Approve521803372022-12-11 22:10:37473 days ago1670796637IN
Specter Finance: SPECTER Token
0 FTM0.0004161816.19503772
View all transactions

Latest 1 internal transaction

Parent Txn Hash Block From To Value
283148692022-01-18 5:57:54801 days ago1642485474  Contract Creation0 FTM
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Specter

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at ftmscan.com on 2022-01-18
*/

/**
 *Submitted for verification at FtmScan.com on 2021-12-29
*/

// SPDX-License-Identifier: MIT

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/token/ERC20/[email protected]



pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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


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



pragma solidity >=0.6.0 <0.8.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.6.0 <0.8.0;



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



pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

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

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}


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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}


// File contracts/lib/SafeMath8.sol



pragma solidity 0.6.12;

/**
 * @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 SafeMath8 {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint8 a, uint8 b) internal pure returns (uint8) {
        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) {
        require(b <= a, errorMessage);
        uint8 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint8 a, uint8 b) internal pure returns (uint8) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint8 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint8 a, uint8 b) internal pure returns (uint8) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) {
        require(b > 0, errorMessage);
        uint8 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint8 a, uint8 b) internal pure returns (uint8) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


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



pragma solidity >=0.6.0 <0.8.0;


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



pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        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 contracts/owner/Operator.sol



pragma solidity 0.6.12;


contract Operator is Context, Ownable {
    address private _operator;

    event OperatorTransferred(address indexed previousOperator, address indexed newOperator);

    constructor() internal {
        _operator = _msgSender();
        emit OperatorTransferred(address(0), _operator);
    }

    function operator() public view returns (address) {
        return _operator;
    }

    modifier onlyOperator() {
        require(_operator == msg.sender, "operator: caller is not the operator");
        _;
    }

    function isOperator() public view returns (bool) {
        return _msgSender() == _operator;
    }

    function transferOperator(address newOperator_) public onlyOwner {
        _transferOperator(newOperator_);
    }

    function _transferOperator(address newOperator_) internal {
        require(newOperator_ != address(0), "operator: zero address given for new operator");
        emit OperatorTransferred(address(0), newOperator_);
        _operator = newOperator_;
    }
}

// File contracts/interfaces/IOracle.sol

pragma solidity 0.6.12;

interface IOracle {
    function update() external;

    function consult(address _token, uint256 _amountIn) external view returns (uint144 amountOut);

    function twap(address _token, uint256 _amountIn) external view returns (uint144 _amountOut);
}

pragma solidity 0.6.12;

/***
.-. .-. .-. .-. .-. .-. .-.   .-. .-. . . .-. . . .-. .-. 
`-. |-' |-  |    |  |-  |(    |-   |  |\| |-| |\| |   |-  
`-' '   `-' `-'  '  `-' ' '   '   `-' ' ` ` ' ' ` `-' `-' 
***/

contract Specter is ERC20Burnable, Operator {
    using SafeMath8 for uint8;
    using SafeMath for uint256;

    // Initial distribution for the first 24h genesis pools
    uint256 public constant INITIAL_GENESIS_POOL_DISTRIBUTION = 20000 ether;
    // Initial distribution for the days 2-3 SPECTER-WFTM LP -> SPECTER pool
    uint256 public constant INITIAL_SPECTER_POOL_DISTRIBUTION = 140000 ether;
    // Distribution for airdrops wallet
    uint256 public constant INITIAL_AIRDROP_WALLET_DISTRIBUTION = 9000 ether;

    // Have the rewards been distributed to the pools
    bool public rewardPoolDistributed = false;

    /* ================= Taxation =============== */
    // Address of the Oracle
    address public specterOracle;
    // Address of the Tax Office
    address public taxOffice;

    // Current tax rate
    uint256 public taxRate;
    // Price threshold below which taxes will get burned
    uint256 public burnThreshold = 1.10e18;
    // Address of the tax collector wallet
    address public taxCollectorAddress;

    // Should the taxes be calculated using the tax tiers
    bool public autoCalculateTax;

    // Tax Tiers
    uint256[] public taxTiersTwaps = [0, 5e17, 6e17, 7e17, 8e17, 9e17, 9.5e17, 1e18, 1.05e18, 1.10e18, 1.20e18, 1.30e18, 1.40e18, 1.50e18];
    uint256[] public taxTiersRates = [2000, 1900, 1800, 1700, 1600, 1500, 1500, 1500, 1500, 1400, 900, 400, 200, 100];

    // Sender addresses excluded from Tax
    mapping(address => bool) public excludedAddresses;

    event TaxOfficeTransferred(address oldAddress, address newAddress);

    modifier onlyTaxOffice() {
        require(taxOffice == msg.sender, "Caller is not the tax office");
        _;
    }

    modifier onlyOperatorOrTaxOffice() {
        require(isOperator() || taxOffice == msg.sender, "Caller is not the operator or the tax office");
        _;
    }

    /**
     * @notice Constructs the SPECTER ERC-20 contract.
     */
    constructor(uint256 _taxRate, address _taxCollectorAddress) public ERC20("Specter Finance", "SPECTER") {
        // Mints 1 SPECTER to contract creator for initial pool setup
        require(_taxRate < 10000, "tax equal or bigger to 100%");
        require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address");

        excludeAddress(address(this));

        _mint(msg.sender, 1 ether);
        taxRate = _taxRate;
        taxCollectorAddress = _taxCollectorAddress;
    }

    /* ============= Taxation ============= */

    function getTaxTiersTwapsCount() public view returns (uint256 count) {
        return taxTiersTwaps.length;
    }

    function getTaxTiersRatesCount() public view returns (uint256 count) {
        return taxTiersRates.length;
    }

    function isAddressExcluded(address _address) public view returns (bool) {
        return excludedAddresses[_address];
    }

    function setTaxTiersTwap(uint8 _index, uint256 _value) public onlyTaxOffice returns (bool) {
        require(_index >= 0, "Index has to be higher than 0");
        require(_index < getTaxTiersTwapsCount(), "Index has to lower than count of tax tiers");
        if (_index > 0) {
            require(_value > taxTiersTwaps[_index - 1]);
        }
        if (_index < getTaxTiersTwapsCount().sub(1)) {
            require(_value < taxTiersTwaps[_index + 1]);
        }
        taxTiersTwaps[_index] = _value;
        return true;
    }

    function setTaxTiersRate(uint8 _index, uint256 _value) public onlyTaxOffice returns (bool) {
        require(_index >= 0, "Index has to be higher than 0");
        require(_index < getTaxTiersRatesCount(), "Index has to lower than count of tax tiers");
        taxTiersRates[_index] = _value;
        return true;
    }

    function setBurnThreshold(uint256 _burnThreshold) public onlyTaxOffice returns (bool) {
        burnThreshold = _burnThreshold;
    }

    function _getSpecterPrice() internal view returns (uint256 _specterPrice) {
        try IOracle(specterOracle).consult(address(this), 1e18) returns (uint144 _price) {
            return uint256(_price);
        } catch {
            revert("Specter: failed to fetch SPECTER price from Oracle");
        }
    }

    function _updateTaxRate(uint256 _specterPrice) internal returns (uint256) {
        if (autoCalculateTax) {
            for (uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1); tierId >= 0; --tierId) {
                if (_specterPrice >= taxTiersTwaps[tierId]) {
                    require(taxTiersRates[tierId] < 10000, "tax equal or bigger to 100%");
                    taxRate = taxTiersRates[tierId];
                    return taxTiersRates[tierId];
                }
            }
        }
    }

    function enableAutoCalculateTax() public onlyTaxOffice {
        autoCalculateTax = true;
    }

    function disableAutoCalculateTax() public onlyTaxOffice {
        autoCalculateTax = false;
    }

    function setSpecterOracle(address _specterOracle) public onlyOperatorOrTaxOffice {
        require(_specterOracle != address(0), "oracle address cannot be 0 address");
        specterOracle = _specterOracle;
    }

    function setTaxOffice(address _taxOffice) public onlyOperatorOrTaxOffice {
        require(_taxOffice != address(0), "tax office address cannot be 0 address");
        emit TaxOfficeTransferred(taxOffice, _taxOffice);
        taxOffice = _taxOffice;
    }

    function setTaxCollectorAddress(address _taxCollectorAddress) public onlyTaxOffice {
        require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address");
        taxCollectorAddress = _taxCollectorAddress;
    }

    function setTaxRate(uint256 _taxRate) public onlyTaxOffice {
        require(!autoCalculateTax, "auto calculate tax cannot be enabled");
        require(_taxRate < 10000, "tax equal or bigger to 100%");
        taxRate = _taxRate;
    }

    function excludeAddress(address _address) public onlyOperatorOrTaxOffice returns (bool) {
        require(!excludedAddresses[_address], "address can't be excluded");
        excludedAddresses[_address] = true;
        return true;
    }

    function includeAddress(address _address) public onlyOperatorOrTaxOffice returns (bool) {
        require(excludedAddresses[_address], "address can't be included");
        excludedAddresses[_address] = false;
        return true;
    }

    /**
     * @notice Operator mints SPECTER to a recipient
     * @param recipient_ The address of recipient
     * @param amount_ The amount of SPECTER to mint to
     * @return whether the process has been done
     */
    function mint(address recipient_, uint256 amount_) public onlyOperator returns (bool) {
        uint256 balanceBefore = balanceOf(recipient_);
        _mint(recipient_, amount_);
        uint256 balanceAfter = balanceOf(recipient_);

        return balanceAfter > balanceBefore;
    }

    function burn(uint256 amount) public override {
        super.burn(amount);
    }

    function burnFrom(address account, uint256 amount) public override onlyOperator {
        super.burnFrom(account, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        uint256 currentTaxRate = 0;
        bool burnTax = false;

        if (autoCalculateTax) {
            uint256 currentSpecterPrice = _getSpecterPrice();
            currentTaxRate = _updateTaxRate(currentSpecterPrice);
            if (currentSpecterPrice < burnThreshold) {
                burnTax = true;
            }
        }

        if (currentTaxRate == 0 || excludedAddresses[sender]) {
            _transfer(sender, recipient, amount);
        } else {
            _transferWithTax(sender, recipient, amount, burnTax);
        }

        _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function _transferWithTax(
        address sender,
        address recipient,
        uint256 amount,
        bool burnTax
    ) internal returns (bool) {
        uint256 taxAmount = amount.mul(taxRate).div(10000);
        uint256 amountAfterTax = amount.sub(taxAmount);

        if (burnTax) {
            // Burn tax
            super.burnFrom(sender, taxAmount);
        } else {
            // Transfer tax to tax collector
            _transfer(sender, taxCollectorAddress, taxAmount);
        }

        // Transfer amount after tax to recipient
        _transfer(sender, recipient, amountAfterTax);

        return true;
    }

    /**
     * @notice distribute to reward pool (only once)
     */
    function distributeReward(
        address _genesisPool,
        address _specterPool,
        address _airdropWallet
    ) external onlyOperator {
        require(!rewardPoolDistributed, "only can distribute once");
        require(_genesisPool != address(0), "!_genesisPool");
        require(_specterPool != address(0), "!_specterPool");
        require(_airdropWallet != address(0), "!_airdropWallet");
        rewardPoolDistributed = true;
        _mint(_genesisPool, INITIAL_GENESIS_POOL_DISTRIBUTION);
        _mint(_specterPool, INITIAL_SPECTER_POOL_DISTRIBUTION);
        _mint(_airdropWallet, INITIAL_AIRDROP_WALLET_DISTRIBUTION);
    }

    function governanceRecoverUnsupported(
        IERC20 _token,
        uint256 _amount,
        address _to
    ) external onlyOperator {
        _token.transfer(_to, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"},{"internalType":"address","name":"_taxCollectorAddress","type":"address"}],"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":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":"oldAddress","type":"address"},{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"TaxOfficeTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INITIAL_AIRDROP_WALLET_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_GENESIS_POOL_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_SPECTER_POOL_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoCalculateTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_genesisPool","type":"address"},{"internalType":"address","name":"_specterPool","type":"address"},{"internalType":"address","name":"_airdropWallet","type":"address"}],"name":"distributeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersRatesCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersTwapsCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeAddress","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":"address","name":"_address","type":"address"}],"name":"isAddressExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPoolDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnThreshold","type":"uint256"}],"name":"setBurnThreshold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_specterOracle","type":"address"}],"name":"setSpecterOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxCollectorAddress","type":"address"}],"name":"setTaxCollectorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxOffice","type":"address"}],"name":"setTaxOffice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersRate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersTwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"specterOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxCollectorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxOffice","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersRates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersTwaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6006805460ff60a01b19169055670f43fc2c04ee0000600a819055610240604052600060809081526706f05b59d3b2000060a052670853a0d2313c000060c0526709b6e64a8ec6000060e052670b1a2bc2ec50000061010052670c7d713b49da000061012052670d2f13f7789f000061014052670de0b6b3a764000061016052670e92596fd6290000610180526101a0919091526710a741a4627800006101c05267120a871cc00200006101e05267136dcc951d8c0000610200526714d1120d7b16000061022052620000d790600c90600e6200065b565b50604080516101c0810182526107d0815261076c6020820152610708918101919091526106a4606082015261064060808201526105dc60a0820181905260c0820181905260e0820181905261010082015261057861012082015261038461014082015261019061016082015260c861018082015260646101a08201526200016390600d90600e620006b6565b503480156200017157600080fd5b506040516200308738038062003087833981810160405260408110156200019757600080fd5b508051602091820151604080518082018252600f81526e537065637465722046696e616e636560881b8186019081528251808401909352600783526629a822a1aa22a960c91b958301959095528051939492939092620001fb9160039190620006fa565b50805162000211906004906020840190620006fa565b50506005805460ff191660121790555060006200022d620003c2565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200028d620003c2565b600680546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3612710821062000330576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b6001600160a01b038116620003775760405162461bcd60e51b815260040180806020018281038252602e8152602001806200302d602e913960400191505060405180910390fd5b6200038230620003c6565b506200039733670de0b6b3a7640000620004bd565b600991909155600b80546001600160a01b0319166001600160a01b0390921691909117905562000784565b3390565b6000620003d2620005cc565b80620003e857506008546001600160a01b031633145b620004255760405162461bcd60e51b815260040180806020018281038252602c8152602001806200305b602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff161562000494576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff1916600190811790915590565b6001600160a01b03821662000519576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200052760008383620005f4565b6200054381600254620005f960201b62001ae81790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200057691839062001ae8620005f9821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6006546000906001600160a01b0316620005e5620003c2565b6001600160a01b031614905090565b505050565b60008282018381101562000654576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054828255906000526020600020908101928215620006a4579160200282015b82811115620006a457825182906001600160401b03169055916020019190600101906200067c565b50620006b29291506200076d565b5090565b828054828255906000526020600020908101928215620006a4579160200282015b82811115620006a4578251829061ffff16905591602001919060010190620006d7565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200073d57805160ff1916838001178555620006a4565b82800160010185558215620006a4579182015b82811115620006a457825182559160200191906001019062000750565b5b80821115620006b257600081556001016200076e565b61289980620007946000396000f3fe608060405234801561001057600080fd5b50600436106102bb5760003560e01c8063715018a611610182578063b60863d9116100e9578063dd62ed3e116100a2578063ee2a95351161007c578063ee2a953514610834578063f2fde38b1461083c578063ff87fc7c14610862578063ffa8226e1461086a576102bb565b8063dd62ed3e146107ba578063e178c848146107e8578063ebca1bd91461080e576102bb565b8063b60863d914610739578063b87c5a4a14610741578063c31a93b814610767578063c3bdf6131461076f578063c6d69a3014610777578063cf011b2614610794576102bb565b806395d89b411161013b57806395d89b41146106ac5780639662676c146106b45780639d6b5f21146106bc578063a457c2d7146106d9578063a6431bba14610705578063a9059cbb1461070d576102bb565b8063715018a61461063a578063771a3a1d1461064257806379cc67901461064a5780638d3cc818146106765780638da5cb5b1461067e57806393995d4b14610686576102bb565b806342c6b4f111610226578063570ca735116101df578063570ca7351461059b5780635c29908d146105a357806365bbacd9146105c057806366206ce9146105c857806369356d47146105ee57806370a0823114610614576102bb565b806342c6b4f1146104f85780634456eda2146105155780634e20a02c1461051d5780634f6d38d014610525578063521181d51461052d57806354575af414610565576102bb565b80633758e6ce116102785780633758e6ce1461041357806339509351146104395780633e5f13d4146104655780633f07d76a1461048957806340c10f19146104af57806342966c68146104db576102bb565b806306fdde03146102c0578063095ea7b31461033d57806318160ddd1461037d57806323b872dd1461039757806329605e77146103cd578063313ce567146103f5575b600080fd5b6102c8610872565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103025781810151838201526020016102ea565b50505050905090810190601f16801561032f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103696004803603604081101561035357600080fd5b506001600160a01b038135169060200135610909565b604080519115158252519081900360200190f35b610385610927565b60408051918252519081900360200190f35b610369600480360360608110156103ad57600080fd5b506001600160a01b0381358116916020810135909116906040013561092d565b6103f3600480360360208110156103e357600080fd5b50356001600160a01b0316610a08565b005b6103fd610a88565b6040805160ff9092168252519081900360200190f35b6103696004803603602081101561042957600080fd5b50356001600160a01b0316610a91565b6103696004803603604081101561044f57600080fd5b506001600160a01b038135169060200135610b86565b61046d610bd4565b604080516001600160a01b039092168252519081900360200190f35b6103f36004803603602081101561049f57600080fd5b50356001600160a01b0316610be3565b610369600480360360408110156104c557600080fd5b506001600160a01b038135169060200135610cea565b6103f3600480360360208110156104f157600080fd5b5035610d64565b6103856004803603602081101561050e57600080fd5b5035610d6d565b610369610d8b565b610385610db1565b610385610dbf565b6103f36004803603606081101561054357600080fd5b506001600160a01b038135811691602081013582169160409091013516610dc5565b6103f36004803603606081101561057b57600080fd5b506001600160a01b03813581169160208101359160409091013516610fa4565b61046d611075565b610385600480360360208110156105b957600080fd5b5035611084565b6103f3611091565b610369600480360360408110156105de57600080fd5b5060ff81351690602001356110ed565b6103f36004803603602081101561060457600080fd5b50356001600160a01b0316611223565b6103856004803603602081101561062a57600080fd5b50356001600160a01b03166112d7565b6103f36112f2565b6103856113b6565b6103f36004803603604081101561066057600080fd5b506001600160a01b0381351690602001356113bc565b610369611413565b61046d611423565b6103696004803603602081101561069c57600080fd5b50356001600160a01b0316611437565b6102c8611523565b610369611584565b610369600480360360208110156106d257600080fd5b5035611594565b610369600480360360408110156106ef57600080fd5b506001600160a01b0381351690602001356115ed565b610385611655565b6103696004803603604081101561072357600080fd5b506001600160a01b03813516906020013561165b565b61046d61166f565b6103696004803603604081101561075757600080fd5b5060ff813516906020013561167e565b610385611727565b61046d611735565b6103f36004803603602081101561078d57600080fd5b5035611744565b610369600480360360208110156107aa57600080fd5b50356001600160a01b0316611835565b610385600480360360408110156107d057600080fd5b506001600160a01b038135811691602001351661184a565b6103f3600480360360208110156107fe57600080fd5b50356001600160a01b0316611875565b6103696004803603602081101561082457600080fd5b50356001600160a01b0316611934565b610385611952565b6103f36004803603602081101561085257600080fd5b50356001600160a01b0316611958565b6103f3611a78565b610385611ada565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505090505b90565b600061091d610916611b49565b8484611b4d565b5060015b92915050565b60025490565b600b5460009081908190600160a01b900460ff161561096e576000610950611c39565b905061095b81611d0d565b9250600a5481101561096c57600191505b505b81158061099357506001600160a01b0386166000908152600e602052604090205460ff165b156109a8576109a3868686611e1b565b6109b6565b6109b486868684611f76565b505b6109fc866109c2611b49565b6109f78760405180606001604052806028815260200161269b602891396109f08c6109eb611b49565b61184a565b9190611fef565b611b4d565b50600195945050505050565b610a10611b49565b6001600160a01b0316610a21611423565b6001600160a01b031614610a7c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a8581612086565b50565b60055460ff1690565b6000610a9b610d8b565b80610ab057506008546001600160a01b031633145b610aeb5760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ef602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610b59576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b600061091d610b93611b49565b846109f78560016000610ba4611b49565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611ae8565b6008546001600160a01b031681565b610beb610d8b565b80610c0057506008546001600160a01b031633145b610c3b5760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ef602c913960400191505060405180910390fd5b6001600160a01b038116610c805760405162461bcd60e51b81526004018080602001828103825260268152602001806125f56026913960400191505060405180910390fd5b600854604080516001600160a01b039283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b03163314610d365760405162461bcd60e51b81526004018080602001828103825260248152602001806127156024913960400191505060405180910390fd5b6000610d41846112d7565b9050610d4d8484612123565b6000610d58856112d7565b91909111949350505050565b610a8581612213565b600c8181548110610d7a57fe5b600091825260209091200154905081565b6006546000906001600160a01b0316610da2611b49565b6001600160a01b031614905090565b69043c33c193756480000081565b600a5481565b6006546001600160a01b03163314610e0e5760405162461bcd60e51b81526004018080602001828103825260248152602001806127156024913960400191505060405180910390fd5b600654600160a01b900460ff1615610e6d576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b038316610eb8576040805162461bcd60e51b815260206004820152600d60248201526c0857d9d95b995cda5cd41bdbdb609a1b604482015290519081900360640190fd5b6001600160a01b038216610f03576040805162461bcd60e51b815260206004820152600d60248201526c0857dcdc1958dd195c941bdbdb609a1b604482015290519081900360640190fd5b6001600160a01b038116610f50576040805162461bcd60e51b815260206004820152600f60248201526e0857d85a5c991c9bdc15d85b1b195d608a1b604482015290519081900360640190fd5b6006805460ff60a01b1916600160a01b179055610f778369043c33c1937564800000612123565b610f8b82691da56a4b0835bf800000612123565b610f9f816901e7e4171bf4d3a00000612123565b505050565b6006546001600160a01b03163314610fed5760405162461bcd60e51b81526004018080602001828103825260248152602001806127156024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561104457600080fd5b505af1158015611058573d6000803e3d6000fd5b505050506040513d602081101561106e57600080fd5b5050505050565b6006546001600160a01b031690565b600d8181548110610d7a57fe5b6008546001600160a01b031633146110de576040805162461bcd60e51b815260206004820152601c60248201526000805160206125af833981519152604482015290519081900360640190fd5b600b805460ff60a01b19169055565b6008546000906001600160a01b0316331461113d576040805162461bcd60e51b815260206004820152601c60248201526000805160206125af833981519152604482015290519081900360640190fd5b611145611655565b8360ff16106111855760405162461bcd60e51b815260040180806020018281038252602a815260200180612739602a913960400191505060405180910390fd5b60ff8316156111b757600c6001840360ff16815481106111a157fe5b906000526020600020015482116111b757600080fd5b6111ca60016111c4611655565b90612224565b8360ff1610156111fd57600c8360010160ff16815481106111e757fe5b906000526020600020015482106111fd57600080fd5b81600c8460ff168154811061120e57fe5b60009182526020909120015550600192915050565b6008546001600160a01b03163314611270576040805162461bcd60e51b815260206004820152601c60248201526000805160206125af833981519152604482015290519081900360640190fd5b6001600160a01b0381166112b55760405162461bcd60e51b815260040180806020018281038252602e8152602001806126c3602e913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b6112fa611b49565b6001600160a01b031661130b611423565b6001600160a01b031614611366576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60095481565b6006546001600160a01b031633146114055760405162461bcd60e51b81526004018080602001828103825260248152602001806127156024913960400191505060405180910390fd5b61140f8282612281565b5050565b600b54600160a01b900460ff1681565b60055461010090046001600160a01b031690565b6000611441610d8b565b8061145657506008546001600160a01b031633145b6114915760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ef602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff166114fe576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fe5780601f106108d3576101008083540402835291602001916108fe565b600654600160a01b900460ff1681565b6008546000906001600160a01b031633146115e4576040805162461bcd60e51b815260206004820152601c60248201526000805160206125af833981519152604482015290519081900360640190fd5b600a9190915590565b600061091d6115fa611b49565b846109f78560405180606001604052806025815260200161283f6025913960016000611624611b49565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fef565b600c5490565b600061091d611668611b49565b8484611e1b565b6007546001600160a01b031681565b6008546000906001600160a01b031633146116ce576040805162461bcd60e51b815260206004820152601c60248201526000805160206125af833981519152604482015290519081900360640190fd5b6116d6611952565b8360ff16106117165760405162461bcd60e51b815260040180806020018281038252602a815260200180612739602a913960400191505060405180910390fd5b81600d8460ff168154811061120e57fe5b691da56a4b0835bf80000081565b600b546001600160a01b031681565b6008546001600160a01b03163314611791576040805162461bcd60e51b815260206004820152601c60248201526000805160206125af833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff16156117da5760405162461bcd60e51b81526004018080602001828103825260248152602001806127a66024913960400191505060405180910390fd5b6127108110611830576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b600e6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61187d610d8b565b8061189257506008546001600160a01b031633145b6118cd5760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ef602c913960400191505060405180910390fd5b6001600160a01b0381166119125760405162461bcd60e51b81526004018080602001828103825260228152602001806127846022913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5490565b611960611b49565b6001600160a01b0316611971611423565b6001600160a01b0316146119cc576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116611a115760405162461bcd60e51b81526004018080602001828103825260268152602001806125676026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6008546001600160a01b03163314611ac5576040805162461bcd60e51b815260206004820152601c60248201526000805160206125af833981519152604482015290519081900360640190fd5b600b805460ff60a01b1916600160a01b179055565b6901e7e4171bf4d3a0000081565b600082820183811015611b42576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316611b925760405162461bcd60e51b815260040180806020018281038252602481526020018061281b6024913960400191505060405180910390fd5b6001600160a01b038216611bd75760405162461bcd60e51b815260040180806020018281038252602281526020018061258d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60075460408051633ddac95360e01b8152306004820152670de0b6b3a7640000602482015290516000926001600160a01b031691633ddac953916044808301926020929190829003018186803b158015611c9257600080fd5b505afa925050508015611cb757506040513d6020811015611cb257600080fd5b505160015b611cf25760405162461bcd60e51b815260040180806020018281038252603281526020018061261b6032913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff169050610906565b600b54600090600160a01b900460ff1615610b81576000611d3a6001611d31611655565b60ff16906122ca565b90505b600c8160ff1681548110611d4d57fe5b90600052602060002001548310611e1257612710600d8260ff1681548110611d7157fe5b906000526020600020015410611dce576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff1681548110611dde57fe5b9060005260206000200154600981905550600d8160ff1681548110611dff57fe5b9060005260206000200154915050610b81565b60001901611d3d565b6001600160a01b038316611e605760405162461bcd60e51b81526004018080602001828103825260258152602001806127ca6025913960400191505060405180910390fd5b6001600160a01b038216611ea55760405162461bcd60e51b81526004018080602001828103825260238152602001806125226023913960400191505060405180910390fd5b611eb0838383610f9f565b611eed816040518060600160405280602681526020016125cf602691396001600160a01b0386166000908152602081905260409020549190611fef565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f1c9082611ae8565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080611f9a612710611f946009548761230c90919063ffffffff16565b90612365565b90506000611fa88583612224565b90508315611fbf57611fba8783612281565b611fd7565b600b54611fd79088906001600160a01b031684611e1b565b611fe2878783611e1b565b5060019695505050505050565b6000818484111561207e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561204357818101518382015260200161202b565b50505050905090810190601f1680156120705780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0381166120cb5760405162461bcd60e51b815260040180806020018281038252602d81526020018061264d602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821661217e576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61218a60008383610f9f565b6002546121979082611ae8565b6002556001600160a01b0382166000908152602081905260409020546121bd9082611ae8565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610a8561221e611b49565b826123cc565b60008282111561227b576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006122ac826040518060600160405280602481526020016126f1602491396109f0866109eb611b49565b90506122c0836122ba611b49565b83611b4d565b610f9f83836123cc565b6000611b4283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506124c8565b60008261231b57506000610921565b8282028284828161232857fe5b0414611b425760405162461bcd60e51b815260040180806020018281038252602181526020018061267a6021913960400191505060405180910390fd5b60008082116123bb576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816123c457fe5b049392505050565b6001600160a01b0382166124115760405162461bcd60e51b81526004018080602001828103825260218152602001806127636021913960400191505060405180910390fd5b61241d82600083610f9f565b61245a81604051806060016040528060228152602001612545602291396001600160a01b0385166000908152602081905260409020549190611fef565b6001600160a01b0383166000908152602081905260409020556002546124809082612224565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff161115829061207e5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561204357818101518382015260200161202b56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f7420626520302061646472657373537065637465723a206661696c656420746f20666574636820535045435445522070726963652066726f6d204f7261636c656f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203f9e284ccbe12814bcbf52f17511b9a547d895050bc4f5b2aa49fdf9ac7148b864736f6c634300060c003374617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f66666963650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000413e15506392e90773dd1150eaffdef2584694e5

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102bb5760003560e01c8063715018a611610182578063b60863d9116100e9578063dd62ed3e116100a2578063ee2a95351161007c578063ee2a953514610834578063f2fde38b1461083c578063ff87fc7c14610862578063ffa8226e1461086a576102bb565b8063dd62ed3e146107ba578063e178c848146107e8578063ebca1bd91461080e576102bb565b8063b60863d914610739578063b87c5a4a14610741578063c31a93b814610767578063c3bdf6131461076f578063c6d69a3014610777578063cf011b2614610794576102bb565b806395d89b411161013b57806395d89b41146106ac5780639662676c146106b45780639d6b5f21146106bc578063a457c2d7146106d9578063a6431bba14610705578063a9059cbb1461070d576102bb565b8063715018a61461063a578063771a3a1d1461064257806379cc67901461064a5780638d3cc818146106765780638da5cb5b1461067e57806393995d4b14610686576102bb565b806342c6b4f111610226578063570ca735116101df578063570ca7351461059b5780635c29908d146105a357806365bbacd9146105c057806366206ce9146105c857806369356d47146105ee57806370a0823114610614576102bb565b806342c6b4f1146104f85780634456eda2146105155780634e20a02c1461051d5780634f6d38d014610525578063521181d51461052d57806354575af414610565576102bb565b80633758e6ce116102785780633758e6ce1461041357806339509351146104395780633e5f13d4146104655780633f07d76a1461048957806340c10f19146104af57806342966c68146104db576102bb565b806306fdde03146102c0578063095ea7b31461033d57806318160ddd1461037d57806323b872dd1461039757806329605e77146103cd578063313ce567146103f5575b600080fd5b6102c8610872565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103025781810151838201526020016102ea565b50505050905090810190601f16801561032f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103696004803603604081101561035357600080fd5b506001600160a01b038135169060200135610909565b604080519115158252519081900360200190f35b610385610927565b60408051918252519081900360200190f35b610369600480360360608110156103ad57600080fd5b506001600160a01b0381358116916020810135909116906040013561092d565b6103f3600480360360208110156103e357600080fd5b50356001600160a01b0316610a08565b005b6103fd610a88565b6040805160ff9092168252519081900360200190f35b6103696004803603602081101561042957600080fd5b50356001600160a01b0316610a91565b6103696004803603604081101561044f57600080fd5b506001600160a01b038135169060200135610b86565b61046d610bd4565b604080516001600160a01b039092168252519081900360200190f35b6103f36004803603602081101561049f57600080fd5b50356001600160a01b0316610be3565b610369600480360360408110156104c557600080fd5b506001600160a01b038135169060200135610cea565b6103f3600480360360208110156104f157600080fd5b5035610d64565b6103856004803603602081101561050e57600080fd5b5035610d6d565b610369610d8b565b610385610db1565b610385610dbf565b6103f36004803603606081101561054357600080fd5b506001600160a01b038135811691602081013582169160409091013516610dc5565b6103f36004803603606081101561057b57600080fd5b506001600160a01b03813581169160208101359160409091013516610fa4565b61046d611075565b610385600480360360208110156105b957600080fd5b5035611084565b6103f3611091565b610369600480360360408110156105de57600080fd5b5060ff81351690602001356110ed565b6103f36004803603602081101561060457600080fd5b50356001600160a01b0316611223565b6103856004803603602081101561062a57600080fd5b50356001600160a01b03166112d7565b6103f36112f2565b6103856113b6565b6103f36004803603604081101561066057600080fd5b506001600160a01b0381351690602001356113bc565b610369611413565b61046d611423565b6103696004803603602081101561069c57600080fd5b50356001600160a01b0316611437565b6102c8611523565b610369611584565b610369600480360360208110156106d257600080fd5b5035611594565b610369600480360360408110156106ef57600080fd5b506001600160a01b0381351690602001356115ed565b610385611655565b6103696004803603604081101561072357600080fd5b506001600160a01b03813516906020013561165b565b61046d61166f565b6103696004803603604081101561075757600080fd5b5060ff813516906020013561167e565b610385611727565b61046d611735565b6103f36004803603602081101561078d57600080fd5b5035611744565b610369600480360360208110156107aa57600080fd5b50356001600160a01b0316611835565b610385600480360360408110156107d057600080fd5b506001600160a01b038135811691602001351661184a565b6103f3600480360360208110156107fe57600080fd5b50356001600160a01b0316611875565b6103696004803603602081101561082457600080fd5b50356001600160a01b0316611934565b610385611952565b6103f36004803603602081101561085257600080fd5b50356001600160a01b0316611958565b6103f3611a78565b610385611ada565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505090505b90565b600061091d610916611b49565b8484611b4d565b5060015b92915050565b60025490565b600b5460009081908190600160a01b900460ff161561096e576000610950611c39565b905061095b81611d0d565b9250600a5481101561096c57600191505b505b81158061099357506001600160a01b0386166000908152600e602052604090205460ff165b156109a8576109a3868686611e1b565b6109b6565b6109b486868684611f76565b505b6109fc866109c2611b49565b6109f78760405180606001604052806028815260200161269b602891396109f08c6109eb611b49565b61184a565b9190611fef565b611b4d565b50600195945050505050565b610a10611b49565b6001600160a01b0316610a21611423565b6001600160a01b031614610a7c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a8581612086565b50565b60055460ff1690565b6000610a9b610d8b565b80610ab057506008546001600160a01b031633145b610aeb5760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ef602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610b59576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b600061091d610b93611b49565b846109f78560016000610ba4611b49565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611ae8565b6008546001600160a01b031681565b610beb610d8b565b80610c0057506008546001600160a01b031633145b610c3b5760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ef602c913960400191505060405180910390fd5b6001600160a01b038116610c805760405162461bcd60e51b81526004018080602001828103825260268152602001806125f56026913960400191505060405180910390fd5b600854604080516001600160a01b039283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b03163314610d365760405162461bcd60e51b81526004018080602001828103825260248152602001806127156024913960400191505060405180910390fd5b6000610d41846112d7565b9050610d4d8484612123565b6000610d58856112d7565b91909111949350505050565b610a8581612213565b600c8181548110610d7a57fe5b600091825260209091200154905081565b6006546000906001600160a01b0316610da2611b49565b6001600160a01b031614905090565b69043c33c193756480000081565b600a5481565b6006546001600160a01b03163314610e0e5760405162461bcd60e51b81526004018080602001828103825260248152602001806127156024913960400191505060405180910390fd5b600654600160a01b900460ff1615610e6d576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b038316610eb8576040805162461bcd60e51b815260206004820152600d60248201526c0857d9d95b995cda5cd41bdbdb609a1b604482015290519081900360640190fd5b6001600160a01b038216610f03576040805162461bcd60e51b815260206004820152600d60248201526c0857dcdc1958dd195c941bdbdb609a1b604482015290519081900360640190fd5b6001600160a01b038116610f50576040805162461bcd60e51b815260206004820152600f60248201526e0857d85a5c991c9bdc15d85b1b195d608a1b604482015290519081900360640190fd5b6006805460ff60a01b1916600160a01b179055610f778369043c33c1937564800000612123565b610f8b82691da56a4b0835bf800000612123565b610f9f816901e7e4171bf4d3a00000612123565b505050565b6006546001600160a01b03163314610fed5760405162461bcd60e51b81526004018080602001828103825260248152602001806127156024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561104457600080fd5b505af1158015611058573d6000803e3d6000fd5b505050506040513d602081101561106e57600080fd5b5050505050565b6006546001600160a01b031690565b600d8181548110610d7a57fe5b6008546001600160a01b031633146110de576040805162461bcd60e51b815260206004820152601c60248201526000805160206125af833981519152604482015290519081900360640190fd5b600b805460ff60a01b19169055565b6008546000906001600160a01b0316331461113d576040805162461bcd60e51b815260206004820152601c60248201526000805160206125af833981519152604482015290519081900360640190fd5b611145611655565b8360ff16106111855760405162461bcd60e51b815260040180806020018281038252602a815260200180612739602a913960400191505060405180910390fd5b60ff8316156111b757600c6001840360ff16815481106111a157fe5b906000526020600020015482116111b757600080fd5b6111ca60016111c4611655565b90612224565b8360ff1610156111fd57600c8360010160ff16815481106111e757fe5b906000526020600020015482106111fd57600080fd5b81600c8460ff168154811061120e57fe5b60009182526020909120015550600192915050565b6008546001600160a01b03163314611270576040805162461bcd60e51b815260206004820152601c60248201526000805160206125af833981519152604482015290519081900360640190fd5b6001600160a01b0381166112b55760405162461bcd60e51b815260040180806020018281038252602e8152602001806126c3602e913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b6112fa611b49565b6001600160a01b031661130b611423565b6001600160a01b031614611366576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60095481565b6006546001600160a01b031633146114055760405162461bcd60e51b81526004018080602001828103825260248152602001806127156024913960400191505060405180910390fd5b61140f8282612281565b5050565b600b54600160a01b900460ff1681565b60055461010090046001600160a01b031690565b6000611441610d8b565b8061145657506008546001600160a01b031633145b6114915760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ef602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff166114fe576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fe5780601f106108d3576101008083540402835291602001916108fe565b600654600160a01b900460ff1681565b6008546000906001600160a01b031633146115e4576040805162461bcd60e51b815260206004820152601c60248201526000805160206125af833981519152604482015290519081900360640190fd5b600a9190915590565b600061091d6115fa611b49565b846109f78560405180606001604052806025815260200161283f6025913960016000611624611b49565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fef565b600c5490565b600061091d611668611b49565b8484611e1b565b6007546001600160a01b031681565b6008546000906001600160a01b031633146116ce576040805162461bcd60e51b815260206004820152601c60248201526000805160206125af833981519152604482015290519081900360640190fd5b6116d6611952565b8360ff16106117165760405162461bcd60e51b815260040180806020018281038252602a815260200180612739602a913960400191505060405180910390fd5b81600d8460ff168154811061120e57fe5b691da56a4b0835bf80000081565b600b546001600160a01b031681565b6008546001600160a01b03163314611791576040805162461bcd60e51b815260206004820152601c60248201526000805160206125af833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff16156117da5760405162461bcd60e51b81526004018080602001828103825260248152602001806127a66024913960400191505060405180910390fd5b6127108110611830576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b600e6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61187d610d8b565b8061189257506008546001600160a01b031633145b6118cd5760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ef602c913960400191505060405180910390fd5b6001600160a01b0381166119125760405162461bcd60e51b81526004018080602001828103825260228152602001806127846022913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5490565b611960611b49565b6001600160a01b0316611971611423565b6001600160a01b0316146119cc576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116611a115760405162461bcd60e51b81526004018080602001828103825260268152602001806125676026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6008546001600160a01b03163314611ac5576040805162461bcd60e51b815260206004820152601c60248201526000805160206125af833981519152604482015290519081900360640190fd5b600b805460ff60a01b1916600160a01b179055565b6901e7e4171bf4d3a0000081565b600082820183811015611b42576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316611b925760405162461bcd60e51b815260040180806020018281038252602481526020018061281b6024913960400191505060405180910390fd5b6001600160a01b038216611bd75760405162461bcd60e51b815260040180806020018281038252602281526020018061258d6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60075460408051633ddac95360e01b8152306004820152670de0b6b3a7640000602482015290516000926001600160a01b031691633ddac953916044808301926020929190829003018186803b158015611c9257600080fd5b505afa925050508015611cb757506040513d6020811015611cb257600080fd5b505160015b611cf25760405162461bcd60e51b815260040180806020018281038252603281526020018061261b6032913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff169050610906565b600b54600090600160a01b900460ff1615610b81576000611d3a6001611d31611655565b60ff16906122ca565b90505b600c8160ff1681548110611d4d57fe5b90600052602060002001548310611e1257612710600d8260ff1681548110611d7157fe5b906000526020600020015410611dce576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff1681548110611dde57fe5b9060005260206000200154600981905550600d8160ff1681548110611dff57fe5b9060005260206000200154915050610b81565b60001901611d3d565b6001600160a01b038316611e605760405162461bcd60e51b81526004018080602001828103825260258152602001806127ca6025913960400191505060405180910390fd5b6001600160a01b038216611ea55760405162461bcd60e51b81526004018080602001828103825260238152602001806125226023913960400191505060405180910390fd5b611eb0838383610f9f565b611eed816040518060600160405280602681526020016125cf602691396001600160a01b0386166000908152602081905260409020549190611fef565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f1c9082611ae8565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080611f9a612710611f946009548761230c90919063ffffffff16565b90612365565b90506000611fa88583612224565b90508315611fbf57611fba8783612281565b611fd7565b600b54611fd79088906001600160a01b031684611e1b565b611fe2878783611e1b565b5060019695505050505050565b6000818484111561207e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561204357818101518382015260200161202b565b50505050905090810190601f1680156120705780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0381166120cb5760405162461bcd60e51b815260040180806020018281038252602d81526020018061264d602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821661217e576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61218a60008383610f9f565b6002546121979082611ae8565b6002556001600160a01b0382166000908152602081905260409020546121bd9082611ae8565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610a8561221e611b49565b826123cc565b60008282111561227b576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006122ac826040518060600160405280602481526020016126f1602491396109f0866109eb611b49565b90506122c0836122ba611b49565b83611b4d565b610f9f83836123cc565b6000611b4283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506124c8565b60008261231b57506000610921565b8282028284828161232857fe5b0414611b425760405162461bcd60e51b815260040180806020018281038252602181526020018061267a6021913960400191505060405180910390fd5b60008082116123bb576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816123c457fe5b049392505050565b6001600160a01b0382166124115760405162461bcd60e51b81526004018080602001828103825260218152602001806127636021913960400191505060405180910390fd5b61241d82600083610f9f565b61245a81604051806060016040528060228152602001612545602291396001600160a01b0385166000908152602081905260409020549190611fef565b6001600160a01b0383166000908152602081905260409020556002546124809082612224565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff161115829061207e5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561204357818101518382015260200161202b56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f7420626520302061646472657373537065637465723a206661696c656420746f20666574636820535045435445522070726963652066726f6d204f7261636c656f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203f9e284ccbe12814bcbf52f17511b9a547d895050bc4f5b2aa49fdf9ac7148b864736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000413e15506392e90773dd1150eaffdef2584694e5

-----Decoded View---------------
Arg [0] : _taxRate (uint256): 0
Arg [1] : _taxCollectorAddress (address): 0x413E15506392E90773DD1150eafFdeF2584694E5

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 000000000000000000000000413e15506392e90773dd1150eaffdef2584694e5


Deployed Bytecode Sourcemap

33884:9746:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13502:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15648:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15648:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;14601:108;;;:::i;:::-;;;;;;;;;;;;;;;;41169:862;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41169:862:0;;;;;;;;;;;;;;;;;:::i;32944:115::-;;;;;;;;;;;;;;;;-1:-1:-1;32944:115:0;-1:-1:-1;;;;;32944:115:0;;:::i;:::-;;14445:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39917:240;;;;;;;;;;;;;;;;-1:-1:-1;39917:240:0;-1:-1:-1;;;;;39917:240:0;;:::i;17029:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17029:218:0;;;;;;;;:::i;34678:24::-;;;:::i;:::-;;;;-1:-1:-1;;;;;34678:24:0;;;;;;;;;;;;;;39146:259;;;;;;;;;;;;;;;;-1:-1:-1;39146:259:0;-1:-1:-1;;;;;39146:259:0;;:::i;40642:290::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40642:290:0;;;;;;;;:::i;40940:83::-;;;;;;;;;;;;;;;;-1:-1:-1;40940:83:0;;:::i;35069:134::-;;;;;;;;;;;;;;;;-1:-1:-1;35069:134:0;;:::i;32836:100::-;;;:::i;34063:71::-;;;:::i;34823:38::-;;;:::i;42773:659::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42773:659:0;;;;;;;;;;;;;;;;;;;:::i;43440:187::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;43440:187:0;;;;;;;;;;;;;;;;;:::i;32608:85::-;;;:::i;35210:113::-;;;;;;;;;;;;;;;;-1:-1:-1;35210:113:0;;:::i;38815:99::-;;;:::i;36833:545::-;;;;;;;;;;;;;;;;-1:-1:-1;36833:545:0;;;;;;;;;:::i;39413:248::-;;;;;;;;;;;;;;;;-1:-1:-1;39413:248:0;-1:-1:-1;;;;;39413:248:0;;:::i;14772:127::-;;;;;;;;;;;;;;;;-1:-1:-1;14772:127:0;-1:-1:-1;;;;;14772:127:0;;:::i;31671:148::-;;;:::i;34736:22::-;;;:::i;41031:130::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41031:130:0;;;;;;;;:::i;35014:28::-;;;:::i;31020:87::-;;;:::i;40165:240::-;;;;;;;;;;;;;;;;-1:-1:-1;40165:240:0;-1:-1:-1;;;;;40165:240:0;;:::i;13712:95::-;;;:::i;34475:41::-;;;:::i;37718:135::-;;;;;;;;;;;;;;;;-1:-1:-1;37718:135:0;;:::i;17750:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17750:269:0;;;;;;;;:::i;36454:115::-;;;:::i;15112:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15112:175:0;;;;;;;;:::i;34609:28::-;;;:::i;37386:324::-;;;;;;;;;;;;;;;;-1:-1:-1;37386:324:0;;;;;;;;;:::i;34219:72::-;;;:::i;34912:34::-;;;:::i;39669:240::-;;;;;;;;;;;;;;;;-1:-1:-1;39669:240:0;;:::i;35375:49::-;;;;;;;;;;;;;;;;-1:-1:-1;35375:49:0;-1:-1:-1;;;;;35375:49:0;;:::i;15350:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15350:151:0;;;;;;;;;;:::i;38922:216::-;;;;;;;;;;;;;;;;-1:-1:-1;38922:216:0;-1:-1:-1;;;;;38922:216:0;;:::i;36700:125::-;;;;;;;;;;;;;;;;-1:-1:-1;36700:125:0;-1:-1:-1;;;;;36700:125:0;;:::i;36577:115::-;;;:::i;31974:244::-;;;;;;;;;;;;;;;;-1:-1:-1;31974:244:0;-1:-1:-1;;;;;31974:244:0;;:::i;38710:97::-;;;:::i;34339:72::-;;;:::i;13502:91::-;13580:5;13573:12;;;;;;;;-1:-1:-1;;13573:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13547:13;;13573:12;;13580:5;;13573:12;;13580:5;13573:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13502:91;;:::o;15648:169::-;15731:4;15748:39;15757:12;:10;:12::i;:::-;15771:7;15780:6;15748:8;:39::i;:::-;-1:-1:-1;15805:4:0;15648:169;;;;;:::o;14601:108::-;14689:12;;14601:108;:::o;41169:862::-;41392:16;;41301:4;;;;;;-1:-1:-1;;;41392:16:0;;;;41388:268;;;41425:27;41455:18;:16;:18::i;:::-;41425:48;;41505:35;41520:19;41505:14;:35::i;:::-;41488:52;;41581:13;;41559:19;:35;41555:90;;;41625:4;41615:14;;41555:90;41388:268;;41672:19;;;:48;;-1:-1:-1;;;;;;41695:25:0;;;;;;:17;:25;;;;;;;;41672:48;41668:202;;;41737:36;41747:6;41755:9;41766:6;41737:9;:36::i;:::-;41668:202;;;41806:52;41823:6;41831:9;41842:6;41850:7;41806:16;:52::i;:::-;;41668:202;41882:119;41891:6;41899:12;:10;:12::i;:::-;41913:87;41949:6;41913:87;;;;;;;;;;;;;;;;;:31;41923:6;41931:12;:10;:12::i;:::-;41913:9;:31::i;:::-;:35;:87;:35;:87::i;:::-;41882:8;:119::i;:::-;-1:-1:-1;42019:4:0;;41169:862;-1:-1:-1;;;;;41169:862:0:o;32944:115::-;31251:12;:10;:12::i;:::-;-1:-1:-1;;;;;31240:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;31240:23:0;;31232:68;;;;;-1:-1:-1;;;31232:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33020:31:::1;33038:12;33020:17;:31::i;:::-;32944:115:::0;:::o;14445:91::-;14519:9;;;;14445:91;:::o;39917:240::-;39999:4;35690:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35706:9:0;;-1:-1:-1;;;;;35706:9:0;35719:10;35706:23;35690:39;35682:96;;;;-1:-1:-1;;;35682:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40025:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;40024:28;40016:66;;;::::0;;-1:-1:-1;;;40016:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;40093:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;:34;;-1:-1:-1;;40093:34:0::1;40123:4;40093:34:::0;;::::1;::::0;;;35789:1:::1;39917:240:::0;;;:::o;17029:218::-;17117:4;17134:83;17143:12;:10;:12::i;:::-;17157:7;17166:50;17205:10;17166:11;:25;17178:12;:10;:12::i;:::-;-1:-1:-1;;;;;17166:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17166:25:0;;;:34;;;;;;;;;;;:38;:50::i;34678:24::-;;;-1:-1:-1;;;;;34678:24:0;;:::o;39146:259::-;35690:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35706:9:0;;-1:-1:-1;;;;;35706:9:0;35719:10;35706:23;35690:39;35682:96;;;;-1:-1:-1;;;35682:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39238:24:0;::::1;39230:75;;;;-1:-1:-1::0;;;39230:75:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39342:9;::::0;39321:43:::1;::::0;;-1:-1:-1;;;;;39342:9:0;;::::1;39321:43:::0;;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;39375:9;:22:::0;;-1:-1:-1;;;;;;39375:22:0::1;-1:-1:-1::0;;;;;39375:22:0;;;::::1;::::0;;;::::1;::::0;;39146:259::o;40642:290::-;32744:9;;40722:4;;-1:-1:-1;;;;;32744:9:0;32757:10;32744:23;32736:72;;;;-1:-1:-1;;;32736:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40739:21:::1;40763;40773:10;40763:9;:21::i;:::-;40739:45;;40795:26;40801:10;40813:7;40795:5;:26::i;:::-;40832:20;40855:21;40865:10;40855:9;:21::i;:::-;40896:28:::0;;;::::1;::::0;40642:290;-1:-1:-1;;;;40642:290:0:o;40940:83::-;40997:18;41008:6;40997:10;:18::i;35069:134::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35069:134:0;:::o;32836:100::-;32919:9;;32879:4;;-1:-1:-1;;;;;32919:9:0;32903:12;:10;:12::i;:::-;-1:-1:-1;;;;;32903:25:0;;32896:32;;32836:100;:::o;34063:71::-;34123:11;34063:71;:::o;34823:38::-;;;;:::o;42773:659::-;32744:9;;-1:-1:-1;;;;;32744:9:0;32757:10;32744:23;32736:72;;;;-1:-1:-1;;;32736:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42943:21:::1;::::0;-1:-1:-1;;;42943:21:0;::::1;;;42942:22;42934:59;;;::::0;;-1:-1:-1;;;42934:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;43012:26:0;::::1;43004:52;;;::::0;;-1:-1:-1;;;43004:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;43004:52:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;43075:26:0;::::1;43067:52;;;::::0;;-1:-1:-1;;;43067:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;43067:52:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;43138:28:0;::::1;43130:56;;;::::0;;-1:-1:-1;;;43130:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;43130:56:0;;;;;;;;;;;;;::::1;;43197:21;:28:::0;;-1:-1:-1;;;;43197:28:0::1;-1:-1:-1::0;;;43197:28:0::1;::::0;;43236:54:::1;43242:12:::0;34123:11:::1;43236:5;:54::i;:::-;43301;43307:12;34279;43301:5;:54::i;:::-;43366:58;43372:14;34401:10;43366:5;:58::i;:::-;42773:659:::0;;;:::o;43440:187::-;32744:9;;-1:-1:-1;;;;;32744:9:0;32757:10;32744:23;32736:72;;;;-1:-1:-1;;;32736:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43590:6:::1;-1:-1:-1::0;;;;;43590:15:0::1;;43606:3;43611:7;43590:29;;;;;;;;;;;;;-1:-1:-1::0;;;;;43590:29:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;;43440:187:0:o;32608:85::-;32676:9;;-1:-1:-1;;;;;32676:9:0;32608:85;:::o;35210:113::-;;;;;;;;;;38815:99;35552:9;;-1:-1:-1;;;;;35552:9:0;35565:10;35552:23;35544:64;;;;;-1:-1:-1;;;35544:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35544:64:0;;;;;;;;;;;;;;;38882:16:::1;:24:::0;;-1:-1:-1;;;;38882:24:0::1;::::0;;38815:99::o;36833:545::-;35552:9;;36918:4;;-1:-1:-1;;;;;35552:9:0;35565:10;35552:23;35544:64;;;;;-1:-1:-1;;;35544:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35544:64:0;;;;;;;;;;;;;;;37016:23:::1;:21;:23::i;:::-;37007:6;:32;;;36999:87;;;;-1:-1:-1::0;;;36999:87:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37101:10;::::0;::::1;::::0;37097:86:::1;;37145:13;37168:1;37159:6;:10;37145:25;;;;;;;;;;;;;;;;;;37136:6;:34;37128:43;;;::::0;::::1;;37206:30;37234:1;37206:23;:21;:23::i;:::-;:27:::0;::::1;:30::i;:::-;37197:6;:39;;;37193:115;;;37270:13;37284:6;37293:1;37284:10;37270:25;;;;;;;;;;;;;;;;;;37261:6;:34;37253:43;;;::::0;::::1;;37342:6;37318:13;37332:6;37318:21;;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:30:::0;-1:-1:-1;37366:4:0::1;36833:545:::0;;;;:::o;39413:248::-;35552:9;;-1:-1:-1;;;;;35552:9:0;35565:10;35552:23;35544:64;;;;;-1:-1:-1;;;35544:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35544:64:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39515:34:0;::::1;39507:93;;;;-1:-1:-1::0;;;39507:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39611:19;:42:::0;;-1:-1:-1;;;;;;39611:42:0::1;-1:-1:-1::0;;;;;39611:42:0;;;::::1;::::0;;;::::1;::::0;;39413:248::o;14772:127::-;-1:-1:-1;;;;;14873:18:0;14846:7;14873:18;;;;;;;;;;;;14772:127::o;31671:148::-;31251:12;:10;:12::i;:::-;-1:-1:-1;;;;;31240:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;31240:23:0;;31232:68;;;;;-1:-1:-1;;;31232:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31762:6:::1;::::0;31741:40:::1;::::0;31778:1:::1;::::0;31762:6:::1;::::0;::::1;-1:-1:-1::0;;;;;31762:6:0::1;::::0;31741:40:::1;::::0;31778:1;;31741:40:::1;31792:6;:19:::0;;-1:-1:-1;;;;;;31792:19:0::1;::::0;;31671:148::o;34736:22::-;;;;:::o;41031:130::-;32744:9;;-1:-1:-1;;;;;32744:9:0;32757:10;32744:23;32736:72;;;;-1:-1:-1;;;32736:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41122:31:::1;41137:7;41146:6;41122:14;:31::i;:::-;41031:130:::0;;:::o;35014:28::-;;;-1:-1:-1;;;35014:28:0;;;;;:::o;31020:87::-;31093:6;;;;;-1:-1:-1;;;;;31093:6:0;;31020:87::o;40165:240::-;40247:4;35690:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35706:9:0;;-1:-1:-1;;;;;35706:9:0;35719:10;35706:23;35690:39;35682:96;;;;-1:-1:-1;;;35682:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40272:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;40264:65;;;::::0;;-1:-1:-1;;;40264:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;40340:27:0::1;40370:5;40340:27:::0;;;:17:::1;:27;::::0;;;;:35;;-1:-1:-1;;40340:35:0::1;::::0;;-1:-1:-1;;40165:240:0:o;13712:95::-;13792:7;13785:14;;;;;;;;-1:-1:-1;;13785:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13759:13;;13785:14;;13792:7;;13785:14;;13792:7;13785:14;;;;;;;;;;;;;;;;;;;;;;;;34475:41;;;-1:-1:-1;;;34475:41:0;;;;;:::o;37718:135::-;35552:9;;37798:4;;-1:-1:-1;;;;;35552:9:0;35565:10;35552:23;35544:64;;;;;-1:-1:-1;;;35544:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35544:64:0;;;;;;;;;;;;;;;37815:13:::1;:30:::0;;;;37718:135;:::o;17750:269::-;17843:4;17860:129;17869:12;:10;:12::i;:::-;17883:7;17892:96;17931:15;17892:96;;;;;;;;;;;;;;;;;:11;:25;17904:12;:10;:12::i;:::-;-1:-1:-1;;;;;17892:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17892:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;36454:115::-;36541:13;:20;36454:115;:::o;15112:175::-;15198:4;15215:42;15225:12;:10;:12::i;:::-;15239:9;15250:6;15215:9;:42::i;34609:28::-;;;-1:-1:-1;;;;;34609:28:0;;:::o;37386:324::-;35552:9;;37471:4;;-1:-1:-1;;;;;35552:9:0;35565:10;35552:23;35544:64;;;;;-1:-1:-1;;;35544:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35544:64:0;;;;;;;;;;;;;;;37569:23:::1;:21;:23::i;:::-;37560:6;:32;;;37552:87;;;;-1:-1:-1::0;;;37552:87:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37674:6;37650:13;37664:6;37650:21;;;;;;;;;34219:72:::0;34279:12;34219:72;:::o;34912:34::-;;;-1:-1:-1;;;;;34912:34:0;;:::o;39669:240::-;35552:9;;-1:-1:-1;;;;;35552:9:0;35565:10;35552:23;35544:64;;;;;-1:-1:-1;;;35544:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35544:64:0;;;;;;;;;;;;;;;39748:16:::1;::::0;-1:-1:-1;;;39748:16:0;::::1;;;39747:17;39739:66;;;;-1:-1:-1::0;;;39739:66:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39835:5;39824:8;:16;39816:56;;;::::0;;-1:-1:-1;;;39816:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;39883:7;:18:::0;39669:240::o;35375:49::-;;;;;;;;;;;;;;;:::o;15350:151::-;-1:-1:-1;;;;;15466:18:0;;;15439:7;15466:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15350:151::o;38922:216::-;35690:12;:10;:12::i;:::-;:39;;;-1:-1:-1;35706:9:0;;-1:-1:-1;;;;;35706:9:0;35719:10;35706:23;35690:39;35682:96;;;;-1:-1:-1;;;35682:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39022:28:0;::::1;39014:75;;;;-1:-1:-1::0;;;39014:75:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39100:13;:30:::0;;-1:-1:-1;;;;;;39100:30:0::1;-1:-1:-1::0;;;;;39100:30:0;;;::::1;::::0;;;::::1;::::0;;38922:216::o;36700:125::-;-1:-1:-1;;;;;36790:27:0;36766:4;36790:27;;;:17;:27;;;;;;;;;36700:125::o;36577:115::-;36664:13;:20;36577:115;:::o;31974:244::-;31251:12;:10;:12::i;:::-;-1:-1:-1;;;;;31240:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;31240:23:0;;31232:68;;;;;-1:-1:-1;;;31232:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32063:22:0;::::1;32055:73;;;;-1:-1:-1::0;;;32055:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32165:6;::::0;32144:38:::1;::::0;-1:-1:-1;;;;;32144:38:0;;::::1;::::0;32165:6:::1;::::0;::::1;;::::0;32144:38:::1;::::0;;;::::1;32193:6;:17:::0;;-1:-1:-1;;;;;32193:17:0;;::::1;;;-1:-1:-1::0;;;;;;32193:17:0;;::::1;::::0;;;::::1;::::0;;31974:244::o;38710:97::-;35552:9;;-1:-1:-1;;;;;35552:9:0;35565:10;35552:23;35544:64;;;;;-1:-1:-1;;;35544:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;35544:64:0;;;;;;;;;;;;;;;38776:16:::1;:23:::0;;-1:-1:-1;;;;38776:23:0::1;-1:-1:-1::0;;;38776:23:0::1;::::0;;38710:97::o;34339:72::-;34401:10;34339:72;:::o;6661:179::-;6719:7;6751:5;;;6775:6;;;;6767:46;;;;;-1:-1:-1;;;6767:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6831:1;6661:179;-1:-1:-1;;;6661:179:0:o;683:106::-;771:10;683:106;:::o;20897:346::-;-1:-1:-1;;;;;20999:19:0;;20991:68;;;;-1:-1:-1;;;20991:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21078:21:0;;21070:68;;;;-1:-1:-1;;;21070:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21151:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21203:32;;;;;;;;;;;;;;;;;20897:346;;;:::o;37861:316::-;37958:13;;37950:51;;;-1:-1:-1;;;37950:51:0;;37989:4;37950:51;;;;37996:4;37950:51;;;;;;37912:21;;-1:-1:-1;;;;;37958:13:0;;37950:30;;:51;;;;;;;;;;;;;;37958:13;37950:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37950:51:0;;;37946:224;;38098:60;;-1:-1:-1;;;38098:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37946:224;38049:15;;;-1:-1:-1;38042:22:0;;38185:517;38274:16;;38250:7;;-1:-1:-1;;;38274:16:0;;;;38270:425;;;38312:12;38327:37;38362:1;38333:23;:21;:23::i;:::-;38327:34;;;;:37::i;:::-;38312:52;;38307:377;38429:13;38443:6;38429:21;;;;;;;;;;;;;;;;;;38412:13;:38;38408:261;;38507:5;38483:13;38497:6;38483:21;;;;;;;;;;;;;;;;;;:29;38475:69;;;;;-1:-1:-1;;;38475:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38577:13;38591:6;38577:21;;;;;;;;;;;;;;;;;;38567:7;:31;;;;38628:13;38642:6;38628:21;;;;;;;;;;;;;;;;;;38621:28;;;;;38408:261;-1:-1:-1;;38379:8:0;38307:377;;18509:539;-1:-1:-1;;;;;18615:20:0;;18607:70;;;;-1:-1:-1;;;18607:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18696:23:0;;18688:71;;;;-1:-1:-1;;;18688:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18772:47;18793:6;18801:9;18812:6;18772:20;:47::i;:::-;18852:71;18874:6;18852:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18852:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18832:17:0;;;:9;:17;;;;;;;;;;;:91;;;;18957:20;;;;;;;:32;;18982:6;18957:24;:32::i;:::-;-1:-1:-1;;;;;18934:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;19005:35;;;;;;;18934:20;;19005:35;;;;;;;;;;;;;18509:539;;;:::o;42039:654::-;42191:4;42208:17;42228:30;42252:5;42228:19;42239:7;;42228:6;:10;;:19;;;;:::i;:::-;:23;;:30::i;:::-;42208:50;-1:-1:-1;42269:22:0;42294:21;:6;42208:50;42294:10;:21::i;:::-;42269:46;;42332:7;42328:226;;;42381:33;42396:6;42404:9;42381:14;:33::i;:::-;42328:226;;;42511:19;;42493:49;;42503:6;;-1:-1:-1;;;;;42511:19:0;42532:9;42493;:49::i;:::-;42617:44;42627:6;42635:9;42646:14;42617:9;:44::i;:::-;-1:-1:-1;42681:4:0;;42039:654;-1:-1:-1;;;;;;42039:654:0:o;9488:166::-;9574:7;9610:12;9602:6;;;;9594:29;;;;-1:-1:-1;;;9594:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9641:5:0;;;9488:166::o;33067:257::-;-1:-1:-1;;;;;33144:26:0;;33136:84;;;;-1:-1:-1;;;33136:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33236:45;;-1:-1:-1;;;;;33236:45:0;;;33264:1;;33236:45;;33264:1;;33236:45;33292:9;:24;;-1:-1:-1;;;;;;33292:24:0;-1:-1:-1;;;;;33292:24:0;;;;;;;;;;33067:257::o;19330:378::-;-1:-1:-1;;;;;19414:21:0;;19406:65;;;;;-1:-1:-1;;;19406:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19484:49;19513:1;19517:7;19526:6;19484:20;:49::i;:::-;19561:12;;:24;;19578:6;19561:16;:24::i;:::-;19546:12;:39;-1:-1:-1;;;;;19617:18:0;;:9;:18;;;;;;;;;;;:30;;19640:6;19617:22;:30::i;:::-;-1:-1:-1;;;;;19596:18:0;;:9;:18;;;;;;;;;;;:51;;;;19663:37;;;;;;;19596:18;;:9;;19663:37;;;;;;;;;;19330:378;;:::o;22904:91::-;22960:27;22966:12;:10;:12::i;:::-;22980:6;22960:5;:27::i;7123:158::-;7181:7;7214:1;7209;:6;;7201:49;;;;;-1:-1:-1;;;7201:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7268:5:0;;;7123:158::o;23314:295::-;23391:26;23420:84;23457:6;23420:84;;;;;;;;;;;;;;;;;:32;23430:7;23439:12;:10;:12::i;23420:84::-;23391:113;;23517:51;23526:7;23535:12;:10;:12::i;:::-;23549:18;23517:8;:51::i;:::-;23579:22;23585:7;23594:6;23579:5;:22::i;25854:130::-;25908:5;25933:43;25937:1;25940;25933:43;;;;;;;;;;;;;;;;;:3;:43::i;7540:220::-;7598:7;7622:6;7618:20;;-1:-1:-1;7637:1:0;7630:8;;7618:20;7661:5;;;7665:1;7661;:5;:1;7685:5;;;;;:10;7677:56;;;;-1:-1:-1;;;7677:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8238:153;8296:7;8328:1;8324;:5;8316:44;;;;;-1:-1:-1;;;8316:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8382:1;8378;:5;;;;;;;8238:153;-1:-1:-1;;;8238:153:0:o;20041:418::-;-1:-1:-1;;;;;20125:21:0;;20117:67;;;;-1:-1:-1;;;20117:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20197:49;20218:7;20235:1;20239:6;20197:20;:49::i;:::-;20280:68;20303:6;20280:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20280:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;20259:18:0;;:9;:18;;;;;;;;;;:89;20374:12;;:24;;20391:6;20374:16;:24::i;:::-;20359:12;:39;20414:37;;;;;;;;20440:1;;-1:-1:-1;;;;;20414:37:0;;;;;;;;;;;;20041:418;;:::o;26287:184::-;26369:5;26400:1;26395:6;;:1;:6;;;;26403:12;26387:29;;;;;-1:-1:-1;;;26387:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://3f9e284ccbe12814bcbf52f17511b9a547d895050bc4f5b2aa49fdf9ac7148b8

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

An algorithmic stablecoin on Fantom Opera, pegged to the price of 1 FTM via seigniorage.

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.