ETH Price: $2,677.45 (+1.82%)

Token

BlockNoteX (BNOX)
 

Overview

Max Total Supply

124,572.61 BNOX

Holders

73 (0.00%)

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 2 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BNOx is a secure digital asset on the Ethereum blockchain that has a 100% gold deposit.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BlockNoteX

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : BlockNoteX.sol
// SPDX-License-Identifier: Unlicense
pragma solidity 0.8.4;

import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/utils/math/SafeMath.sol';
import './BlockNoteXACL.sol';

/// @author Blockben
/// @title BlockNoteX
/// @notice BlockNoteX implementation
contract BlockNoteX is ERC20, BlockNoteXACL {
  using SafeMath for uint256;

  constructor(address _superadmin) ERC20('BlockNoteX', 'BNOX') BlockNoteXACL(_superadmin) {}

  /**
   * Set the decimals of token to 4.
   */
  function decimals() public view virtual override returns (uint8) {
    return 2;
  }

  /**
   * @param _to Recipient address
   * @param _value Value to send to the recipient from the caller account
   */
  function transfer(address _to, uint256 _value) public override whenNotPaused returns (bool) {
    _transfer(_msgSender(), _to, _value);
    return true;
  }

  /**
   * @param _from Sender address
   * @param _to Recipient address
   * @param _value Value to send to the recipient from the sender account
   */
  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  ) public override whenNotPaused returns (bool) {
    return super.transferFrom(_from, _to, _value);
  }

  /**
   * @param _spender Spender account
   * @param _value Value to approve
   */
  function approve(address _spender, uint256 _value) public override whenNotPaused returns (bool) {
    require((_value == 0) || (allowance(_msgSender(), _spender) == 0), 'Approve: zero first');
    return super.approve(_spender, _value);
  }

  /**
   * @param _spender Account that allows the spending
   * @param _addedValue Amount which will increase the total allowance
   */
  function increaseAllowance(address _spender, uint256 _addedValue) public override whenNotPaused returns (bool) {
    return super.increaseAllowance(_spender, _addedValue);
  }

  /**
   * @param _spender Account that allows the spending
   * @param _subtractValue Amount which will decrease the total allowance
   */
  function decreaseAllowance(address _spender, uint256 _subtractValue) public override whenNotPaused returns (bool) {
    return super.decreaseAllowance(_spender, _subtractValue);
  }

  /**
   * @notice Only account with TREASURY_ADMIN is able to mint!
   * @param _account Mint BNOX to this account
   * @param _amount The mintig amount
   */
  function mint(address _account, uint256 _amount) external onlyRole(TREASURY_ADMIN) whenNotPaused returns (bool) {
    _mint(_account, _amount);
    return true;
  }

  /**
   * Burn BNOX from treasury account
   * @notice Only account with TREASURY_ADMIN is able to burn!
   * @param _amount The burning amount
   */
  function burn(uint256 _amount) external onlyRole(TREASURY_ADMIN) whenNotPaused {
    require(!getSourceAccountBL(treasuryAddress), 'Blacklist: treasury');
    _burn(treasuryAddress, _amount);
  }

  /**
   * @notice Account must not be on blacklist
   * @param _account Mint BNOX to this account
   * @param _amount The minting amount
   */
  function _mint(address _account, uint256 _amount) internal override {
    require(!getDestinationAccountBL(_account), 'Blacklist: target');
    super._mint(_account, _amount);
  }

  /**
   * Transfer token between accounts, based on BNOX TOS.
   * - bsoFee% of the transferred amount is going to bsoPoolAddress
   * - generalFee% of the transferred amount is going to amountGeneral
   *
   * @param _sender The address from where the token sent
   * @param _recipient Recipient address
   * @param _amount The amount to be transferred
   */
  function _transfer(
    address _sender,
    address _recipient,
    uint256 _amount
  ) internal override {
    require(!getSourceAccountBL(_sender), 'Blacklist: sender');
    require(!getDestinationAccountBL(_recipient), 'Blacklist: recipient');

    if ((_sender == treasuryAddress) || (_recipient == treasuryAddress)) {
      super._transfer(_sender, _recipient, _amount);
    } else {
      /**
       * Three decimal in percent.
       * The decimal correction is 100.000, but to avoid rounding errors, first divide by 10.000
       * and after that the calculation must add 5 and divide 10 at the end.
       */
      uint256 decimalCorrection = 10000;
      uint256 generalFeePercent256 = generalFee;
      uint256 bsoFeePercent256 = bsoFee;
      uint256 totalFeePercent = generalFeePercent256.add(bsoFeePercent256);

      uint256 totalFeeAmount = _amount.mul(totalFeePercent).div(decimalCorrection).add(5).div(10);
      uint256 amountBso = _amount.mul(bsoFeePercent256).div(decimalCorrection).add(5).div(10);
      uint256 amountGeneral = totalFeeAmount.sub(amountBso);

      uint256 recipientTransferAmount = _amount.sub(totalFeeAmount);

      super._transfer(_sender, _recipient, recipientTransferAmount);

      if (amountGeneral > 0) {
        super._transfer(_sender, feeAddress, amountGeneral);
      }

      if (amountBso > 0) {
        super._transfer(_sender, bsoPoolAddress, amountBso);
      }
    }
  }
}

File 2 of 13 : BlockNoteXACL.sol
// SPDX-License-Identifier: Unlicense
pragma solidity 0.8.4;

import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/access/AccessControl.sol';
import '@openzeppelin/contracts/utils/Context.sol';

abstract contract BlockNoteXACL is Pausable, AccessControl {
  /// @notice TOKEN_ADMIN
  bytes32 public constant TOKEN_ADMIN = keccak256('TOKEN_ADMIN');

  /// @notice TREASURY_ADMIN. Treasury admins can only mint or burn
  bytes32 public constant TREASURY_ADMIN = keccak256('TREASURY_ADMIN');

  /// @notice AML_ADMIN. AML Admins can only whitelist and blacklist addresses
  bytes32 public constant AML_ADMIN = keccak256('AML_ADMIN');

  /**
   * @notice superadmin on paper wallet for worst case compromise
   */
  address superadmin;

  mapping(address => bool) sourceAccountBL;

  mapping(address => bool) destinationAccountBL;

  /**
   * @notice Public URL, that contains detailed up-to-date information about the token.
   */
  string public url;

  address public treasuryAddress;
  address public feeAddress;
  address public bsoPoolAddress;
  uint16 public generalFee;
  uint16 public bsoFee;

  event BNOXSourceAccountBL(address indexed _account, bool _lockValue);
  event BNOXDestinationAccountBL(address indexed _account, bool _lockValue);
  event BNOXUrlSet(string url);
  event BNOXTreasuryAddressChange(address _newAddress);
  event BNOXFeeAddressChange(address _newAddress);
  event BNOXBsoPoolAddressChange(address _newAddress);
  event BNOXGeneralFeeChange(uint256 _newFee);
  event BNOXBsoFeeChange(uint256 _newFee);

  // Setting the superadmin and adding the deployer as admin
  constructor(address _superadmin) {
    require(_superadmin != address(0), '_superadmin cannot be 0');
    superadmin = _superadmin;

    _setRoleAdmin(TOKEN_ADMIN, TOKEN_ADMIN);
    _setRoleAdmin(TREASURY_ADMIN, TOKEN_ADMIN);
    _setRoleAdmin(AML_ADMIN, TOKEN_ADMIN);

    _setupRole(TOKEN_ADMIN, _superadmin);
    _setupRole(TREASURY_ADMIN, _superadmin);
    _setupRole(AML_ADMIN, _superadmin);

    _setupRole(TOKEN_ADMIN, _msgSender());
  }

  /**
   * @notice Override for AccessControl.sol revokeRole to prevent revoke against superadmin
   * @param _role The role which
   * @param _account Revokes role from the account
   */
  function revokeRole(bytes32 _role, address _account) public virtual override onlyRole(getRoleAdmin(_role)) {
    require(_account != superadmin, 'superadmin can not be changed');
    super.revokeRole(_role, _account);
  }

  function getSourceAccountBL(address _account) public view returns (bool) {
    return sourceAccountBL[_account];
  }

  function getDestinationAccountBL(address _account) public view returns (bool) {
    return destinationAccountBL[_account];
  }

  function setSourceAccountBL(address _account, bool _lockValue) external onlyRole(AML_ADMIN) {
    sourceAccountBL[_account] = _lockValue;
    emit BNOXSourceAccountBL(_account, _lockValue);
  }

  function setBatchSourceAccountBL(address[] calldata _addresses, bool _lockValue) external onlyRole(AML_ADMIN) {
    require(_addresses.length <= 200, 'Batch: too many addresses');
    for (uint256 i = 0; i < _addresses.length; i++) {
      sourceAccountBL[_addresses[i]] = _lockValue;
    }
  }

  function setBatchDestinationAccountBL(address[] calldata _addresses, bool _lockValue) external onlyRole(AML_ADMIN) {
    require(_addresses.length <= 200, 'Batch: too many addresses');
    for (uint256 i = 0; i < _addresses.length; i++) {
      destinationAccountBL[_addresses[i]] = _lockValue;
    }
  }

  function setDestinationAccountBL(address _account, bool _lockValue) external onlyRole(AML_ADMIN) {
    destinationAccountBL[_account] = _lockValue;
    emit BNOXDestinationAccountBL(_account, _lockValue);
  }

  function setUrl(string calldata _newUrl) external onlyRole(TOKEN_ADMIN) {
    url = _newUrl;
    emit BNOXUrlSet(_newUrl);
  }

  function setTreasuryAddress(address _newAddress) external onlyRole(TOKEN_ADMIN) {
    require(_newAddress != address(0), 'treasury address cannot be 0');
    treasuryAddress = _newAddress;
    emit BNOXTreasuryAddressChange(_newAddress);
  }

  function setFeeAddress(address _newAddress) external onlyRole(TOKEN_ADMIN) {
    require(_newAddress != address(0), 'fee address cannot be 0');
    feeAddress = _newAddress;
    emit BNOXFeeAddressChange(_newAddress);
  }

  function setBsoPoolAddress(address _newAddress) external onlyRole(TOKEN_ADMIN) {
    require(_newAddress != address(0), 'bso pool address cannot be 0');
    bsoPoolAddress = _newAddress;
    emit BNOXBsoPoolAddressChange(_newAddress);
  }

  function setGeneralFee(uint16 _newFee) external onlyRole(TOKEN_ADMIN) {
    generalFee = _newFee;
    emit BNOXGeneralFeeChange(_newFee);
  }

  function setBsoFee(uint16 _newFee) external onlyRole(TOKEN_ADMIN) {
    bsoFee = _newFee;
    emit BNOXBsoFeeChange(_newFee);
  }

  function pause() external onlyRole(TOKEN_ADMIN) {
    _pause();
  }

  function unpause() external onlyRole(TOKEN_ADMIN) {
    _unpause();
  }
}

File 3 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 4 of 13 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

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

        return true;
    }

    /**
     * @dev 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] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 6 of 13 : AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 7 of 13 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 8 of 13 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 9 of 13 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 10 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 12 of 13 : IAccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_superadmin","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":false,"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"BNOXBsoFeeChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_newAddress","type":"address"}],"name":"BNOXBsoPoolAddressChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_account","type":"address"},{"indexed":false,"internalType":"bool","name":"_lockValue","type":"bool"}],"name":"BNOXDestinationAccountBL","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_newAddress","type":"address"}],"name":"BNOXFeeAddressChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"BNOXGeneralFeeChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_account","type":"address"},{"indexed":false,"internalType":"bool","name":"_lockValue","type":"bool"}],"name":"BNOXSourceAccountBL","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_newAddress","type":"address"}],"name":"BNOXTreasuryAddressChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"url","type":"string"}],"name":"BNOXUrlSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"AML_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bsoFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bsoPoolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"_subtractValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generalFee","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getDestinationAccountBL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getSourceAccountBL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_account","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_role","type":"bytes32"},{"internalType":"address","name":"_account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_lockValue","type":"bool"}],"name":"setBatchDestinationAccountBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_lockValue","type":"bool"}],"name":"setBatchSourceAccountBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_newFee","type":"uint16"}],"name":"setBsoFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setBsoPoolAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_lockValue","type":"bool"}],"name":"setDestinationAccountBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_newFee","type":"uint16"}],"name":"setGeneralFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_lockValue","type":"bool"}],"name":"setSourceAccountBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUrl","type":"string"}],"name":"setUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"url","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200504338038062005043833981810160405281019062000037919062000622565b806040518060400160405280600a81526020017f426c6f636b4e6f746558000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424e4f58000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bc9291906200055b565b508060049080519060200190620000d59291906200055b565b5050506000600560006101000a81548160ff021916908315150217905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000166576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015d9062000675565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001d97f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d877806200035c60201b60201c565b6200022b7f27f406f19fd1b378cfb619bc553f0cd86d17e85e38ecad46997fb68ad17b73077f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d8776200035c60201b60201c565b6200027d7f7100d427dec4d84128633ececd9e234641183788c2749fc3a4aa24ea8f5cfaf17f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d8776200035c60201b60201c565b620002af7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d87782620003c060201b60201c565b620002e17f27f406f19fd1b378cfb619bc553f0cd86d17e85e38ecad46997fb68ad17b730782620003c060201b60201c565b620003137f7100d427dec4d84128633ececd9e234641183788c2749fc3a4aa24ea8f5cfaf182620003c060201b60201c565b620003547f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d87762000348620003d660201b60201c565b620003c060201b60201c565b505062000784565b60006200036f83620003de60201b60201c565b90508160066000858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b620003d28282620003fe60201b60201c565b5050565b600033905090565b600060066000838152602001908152602001600020600101549050919050565b620004108282620004f060201b60201c565b620004ec5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000491620003d660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8280546200056990620006dc565b90600052602060002090601f0160209004810192826200058d5760008555620005d9565b82601f10620005a857805160ff1916838001178555620005d9565b82800160010185558215620005d9579182015b82811115620005d8578251825591602001919060010190620005bb565b5b509050620005e89190620005ec565b5090565b5b8082111562000607576000816000905550600101620005ed565b5090565b6000815190506200061c816200076a565b92915050565b6000602082840312156200063557600080fd5b600062000645848285016200060b565b91505092915050565b60006200065d60178362000697565b91506200066a8262000741565b602082019050919050565b6000602082019050818103600083015262000690816200064e565b9050919050565b600082825260208201905092915050565b6000620006b582620006bc565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620006f557607f821691505b602082108114156200070c576200070b62000712565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f5f737570657261646d696e2063616e6e6f742062652030000000000000000000600082015250565b6200077581620006a8565b81146200078157600080fd5b50565b6148af80620007946000396000f3fe608060405234801561001057600080fd5b50600436106102745760003560e01c80636605bfda11610151578063a328f135116100c3578063c5f956af11610087578063c5f956af14610771578063d1efebfe1461078f578063d547741f146107ad578063d8427cce146107c9578063dd62ed3e146107f9578063e8738c9e1461082957610274565b8063a328f135146106bd578063a457c2d7146106d9578063a9059cbb14610709578063adc557d414610739578063bc949df81461075557610274565b80638456cb59116101155780638456cb591461060f5780638705fcd41461061957806391d148541461063557806395d89b41146106655780639f4e14b014610683578063a217fddf1461069f57610274565b80636605bfda14610569578063691e44091461058557806370a08231146105a3578063769ac726146105d3578063826e14a0146105f157610274565b8063313ce567116101ea57806341275358116101ae57806341275358146104a557806342966c68146104c35780634c67fedd146104df5780635600f04f1461050f5780635c1161761461052d5780635c975abb1461054b57610274565b8063313ce5671461040157806336568abe1461041f578063395093511461043b5780633f4ba83a1461046b57806340c10f191461047557610274565b806323b872dd1161023c57806323b872dd14610331578063248a9ca314610361578063252498a21461039157806325daa8f9146103ad57806329012777146103c95780632f2ff15d146103e557610274565b806301ffc9a7146102795780630369795d146102a957806306fdde03146102c5578063095ea7b3146102e357806318160ddd14610313575b600080fd5b610293600480360381019061028e9190613552565b610847565b6040516102a09190613af5565b60405180910390f35b6102c360048036038101906102be9190613369565b6108c1565b005b6102cd6109df565b6040516102da9190613b4f565b60405180910390f35b6102fd60048036038101906102f89190613459565b610a71565b60405161030a9190613af5565b60405180910390f35b61031b610b2b565b6040516103289190613ea7565b60405180910390f35b61034b600480360381019061034691906133ce565b610b35565b6040516103589190613af5565b60405180910390f35b61037b600480360381019061037691906134ed565b610b93565b6040516103889190613b10565b60405180910390f35b6103ab60048036038101906103a6919061357b565b610bb3565b005b6103c760048036038101906103c291906135c0565b610c35565b005b6103e360048036038101906103de9190613495565b610cbf565b005b6103ff60048036038101906103fa9190613516565b610e04565b005b610409610e2d565b6040516104169190613ec2565b60405180910390f35b61043960048036038101906104349190613516565b610e36565b005b61045560048036038101906104509190613459565b610eb9565b6040516104629190613af5565b60405180910390f35b610473610f15565b005b61048f600480360381019061048a9190613459565b610f52565b60405161049c9190613af5565b60405180910390f35b6104ad610fe3565b6040516104ba9190613ada565b60405180910390f35b6104dd60048036038101906104d891906135e9565b611009565b005b6104f960048036038101906104f49190613369565b61111e565b6040516105069190613af5565b60405180910390f35b610517611174565b6040516105249190613b4f565b60405180910390f35b610535611202565b6040516105429190613b10565b60405180910390f35b610553611226565b6040516105609190613af5565b60405180910390f35b610583600480360381019061057e9190613369565b61123d565b005b61058d61135b565b60405161059a9190613e71565b60405180910390f35b6105bd60048036038101906105b89190613369565b61136f565b6040516105ca9190613ea7565b60405180910390f35b6105db6113b7565b6040516105e89190613b10565b60405180910390f35b6105f96113db565b6040516106069190613e71565b60405180910390f35b6106176113ef565b005b610633600480360381019061062e9190613369565b61142c565b005b61064f600480360381019061064a9190613516565b61154a565b60405161065c9190613af5565b60405180910390f35b61066d6115b5565b60405161067a9190613b4f565b60405180910390f35b61069d60048036038101906106989190613495565b611647565b005b6106a761178c565b6040516106b49190613b10565b60405180910390f35b6106d760048036038101906106d291906135c0565b611793565b005b6106f360048036038101906106ee9190613459565b61181d565b6040516107009190613af5565b60405180910390f35b610723600480360381019061071e9190613459565b611879565b6040516107309190613af5565b60405180910390f35b610753600480360381019061074e919061341d565b6118df565b005b61076f600480360381019061076a919061341d565b6119bb565b005b610779611a97565b6040516107869190613ada565b60405180910390f35b610797611abd565b6040516107a49190613b10565b60405180910390f35b6107c760048036038101906107c29190613516565b611ae1565b005b6107e360048036038101906107de9190613369565b611b9b565b6040516107f09190613af5565b60405180910390f35b610813600480360381019061080e9190613392565b611bf1565b6040516108209190613ea7565b60405180910390f35b610831611c78565b60405161083e9190613ada565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57506108b982611c9e565b5b9050919050565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d8776108f3816108ee611d08565b611d10565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a90613cf1565b60405180910390fd5b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f330c8e2a6df6a20eca900e61e3f21b01f0f4a4d06999d077cb31d1d2b4d6d48a826040516109d39190613ada565b60405180910390a15050565b6060600380546109ee90614130565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1a90614130565b8015610a675780601f10610a3c57610100808354040283529160200191610a67565b820191906000526020600020905b815481529060010190602001808311610a4a57829003601f168201915b5050505050905090565b6000610a7b611226565b15610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290613c71565b60405180910390fd5b6000821480610ada57506000610ad8610ad2611d08565b85611bf1565b145b610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1090613c11565b60405180910390fd5b610b238383611dad565b905092915050565b6000600254905090565b6000610b3f611226565b15610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690613c71565b60405180910390fd5b610b8a848484611dcb565b90509392505050565b600060066000838152602001908152602001600020600101549050919050565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d877610be581610be0611d08565b611d10565b8282600a9190610bf69291906131b4565b507f11bd4228f26e963bf45f4d1d28a1d9d76f012fb35e7c11e6f38eefff9ad57d4c8383604051610c28929190613b2b565b60405180910390a1505050565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d877610c6781610c62611d08565b611d10565b81600d60146101000a81548161ffff021916908361ffff1602179055507fe06ee303f51f795aa6ae952675bab131de328a2f93adbb4c57472bb3af0e302182604051610cb39190613e8c565b60405180910390a15050565b7f7100d427dec4d84128633ececd9e234641183788c2749fc3a4aa24ea8f5cfaf1610cf181610cec611d08565b611d10565b60c8848490501115610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90613cb1565b60405180910390fd5b60005b84849050811015610dfd578260096000878785818110610d84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610d999190613369565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610df590614162565b915050610d3b565b5050505050565b610e0d82610b93565b610e1e81610e19611d08565b611d10565b610e288383611ec3565b505050565b60006002905090565b610e3e611d08565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290613e31565b60405180910390fd5b610eb58282611fa4565b5050565b6000610ec3611226565b15610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90613c71565b60405180910390fd5b610f0d8383612086565b905092915050565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d877610f4781610f42611d08565b611d10565b610f4f612132565b50565b60007f27f406f19fd1b378cfb619bc553f0cd86d17e85e38ecad46997fb68ad17b7307610f8681610f81611d08565b611d10565b610f8e611226565b15610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc590613c71565b60405180910390fd5b610fd884846121d4565b600191505092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f27f406f19fd1b378cfb619bc553f0cd86d17e85e38ecad46997fb68ad17b730761103b81611036611d08565b611d10565b611043611226565b15611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a90613c71565b60405180910390fd5b6110ae600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661111e565b156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590613c91565b60405180910390fd5b61111a600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361222b565b5050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a805461118190614130565b80601f01602080910402602001604051908101604052809291908181526020018280546111ad90614130565b80156111fa5780601f106111cf576101008083540402835291602001916111fa565b820191906000526020600020905b8154815290600101906020018083116111dd57829003601f168201915b505050505081565b7f7100d427dec4d84128633ececd9e234641183788c2749fc3a4aa24ea8f5cfaf181565b6000600560009054906101000a900460ff16905090565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d87761126f8161126a611d08565b611d10565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690613d11565b60405180910390fd5b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f5f32a921289307d02cf38bb8899057f1fcb449b02d9fb1d419c6c2aef1c325b28260405161134f9190613ada565b60405180910390a15050565b600d60169054906101000a900461ffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f27f406f19fd1b378cfb619bc553f0cd86d17e85e38ecad46997fb68ad17b730781565b600d60149054906101000a900461ffff1681565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d8776114218161141c611d08565b611d10565b611429612402565b50565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d87761145e81611459611d08565b611d10565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613cd1565b60405180910390fd5b81600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa95a4d73d6e1881ecbcc3f905d9c1d2bdcc28cf9971d01850098192ef7b852678260405161153e9190613ada565b60405180910390a15050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546115c490614130565b80601f01602080910402602001604051908101604052809291908181526020018280546115f090614130565b801561163d5780601f106116125761010080835404028352916020019161163d565b820191906000526020600020905b81548152906001019060200180831161162057829003601f168201915b5050505050905090565b7f7100d427dec4d84128633ececd9e234641183788c2749fc3a4aa24ea8f5cfaf161167981611674611d08565b611d10565b60c88484905011156116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b790613cb1565b60405180910390fd5b60005b8484905081101561178557826008600087878581811061170c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906117219190613369565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061177d90614162565b9150506116c3565b5050505050565b6000801b81565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d8776117c5816117c0611d08565b611d10565b81600d60166101000a81548161ffff021916908361ffff1602179055507f0d4498f13b4c202299f8c9d01e5e2690390f45fbaefd8f5bfddd01f4272ea8ff826040516118119190613e8c565b60405180910390a15050565b6000611827611226565b15611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e90613c71565b60405180910390fd5b61187183836124a5565b905092915050565b6000611883611226565b156118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba90613c71565b60405180910390fd5b6118d56118ce611d08565b8484612590565b6001905092915050565b7f7100d427dec4d84128633ececd9e234641183788c2749fc3a4aa24ea8f5cfaf16119118161190c611d08565b611d10565b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff167f35e5c9d995483969ad7906cae9ceeeb59bad376f6f6cc350eda9d9ddff649af8836040516119ae9190613af5565b60405180910390a2505050565b7f7100d427dec4d84128633ececd9e234641183788c2749fc3a4aa24ea8f5cfaf16119ed816119e8611d08565b611d10565b81600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff167f3d9ca9f82173d198d467975c1539865b168e6988175217b564f32ac1f062319e83604051611a8a9190613af5565b60405180910390a2505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d87781565b611aea82610b93565b611afb81611af6611d08565b611d10565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390613d91565b60405180910390fd5b611b968383612883565b505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b611d1a828261154a565b611da957611d3f8173ffffffffffffffffffffffffffffffffffffffff1660146128ac565b611d4d8360001c60206128ac565b604051602001611d5e929190613aa0565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da09190613b4f565b60405180910390fd5b5050565b6000611dc1611dba611d08565b8484612ba6565b6001905092915050565b6000611dd8848484612590565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611e23611d08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90613d31565b60405180910390fd5b611eb785611eaf611d08565b858403612ba6565b60019150509392505050565b611ecd828261154a565b611fa05760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f45611d08565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611fae828261154a565b156120825760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612027611d08565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612128612093611d08565b8484600160006120a1611d08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121239190613f04565b612ba6565b6001905092915050565b61213a611226565b612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090613bb1565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121bd611d08565b6040516121ca9190613ada565b60405180910390a1565b6121dd82611b9b565b1561221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490613df1565b60405180910390fd5b6122278282612d71565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229290613d51565b60405180910390fd5b6122a782600083612ed1565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561232d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232490613bd1565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546123849190613fe5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123e99190613ea7565b60405180910390a36123fd83600084612ed6565b505050565b61240a611226565b1561244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190613c71565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861248e611d08565b60405161249b9190613ada565b60405180910390a1565b600080600160006124b4611d08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256890613e11565b60405180910390fd5b61258561257c611d08565b85858403612ba6565b600191505092915050565b6125998361111e565b156125d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d090613c51565b60405180910390fd5b6125e282611b9b565b15612622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261990613d71565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806126cb5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156126e0576126db838383612edb565b61287e565b600061271090506000600d60149054906101000a900461ffff1661ffff1690506000600d60169054906101000a900461ffff1661ffff169050600061272e828461315c90919063ffffffff16565b9050600061277d600a61276f600561276189612753888d61317290919063ffffffff16565b61318890919063ffffffff16565b61315c90919063ffffffff16565b61318890919063ffffffff16565b905060006127cc600a6127be60056127b08a6127a28a8e61317290919063ffffffff16565b61318890919063ffffffff16565b61315c90919063ffffffff16565b61318890919063ffffffff16565b905060006127e3828461319e90919063ffffffff16565b905060006127fa848a61319e90919063ffffffff16565b90506128078b8b83612edb565b600082111561283e5761283d8b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612edb565b5b6000831115612875576128748b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612edb565b5b50505050505050505b505050565b61288c82610b93565b61289d81612898611d08565b611d10565b6128a78383611fa4565b505050565b6060600060028360026128bf9190613f8b565b6128c99190613f04565b67ffffffffffffffff811115612908577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561293a5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612998577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612a22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612a629190613f8b565b612a6c9190613f04565b90505b6001811115612b58577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612ad4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612b11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612b5190614106565b9050612a6f565b5060008414612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9390613b71565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0d90613dd1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7d90613bf1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612d649190613ea7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd890613e51565b60405180910390fd5b612ded60008383612ed1565b8060026000828254612dff9190613f04565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e549190613f04565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612eb99190613ea7565b60405180910390a3612ecd60008383612ed6565b5050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4290613db1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb290613b91565b60405180910390fd5b612fc6838383612ed1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561304c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304390613c31565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130df9190613f04565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516131439190613ea7565b60405180910390a3613156848484612ed6565b50505050565b6000818361316a9190613f04565b905092915050565b600081836131809190613f8b565b905092915050565b600081836131969190613f5a565b905092915050565b600081836131ac9190613fe5565b905092915050565b8280546131c090614130565b90600052602060002090601f0160209004810192826131e25760008555613229565b82601f106131fb57803560ff1916838001178555613229565b82800160010185558215613229579182015b8281111561322857823582559160200191906001019061320d565b5b509050613236919061323a565b5090565b5b8082111561325357600081600090555060010161323b565b5090565b600081359050613266816147ef565b92915050565b60008083601f84011261327e57600080fd5b8235905067ffffffffffffffff81111561329757600080fd5b6020830191508360208202830111156132af57600080fd5b9250929050565b6000813590506132c581614806565b92915050565b6000813590506132da8161481d565b92915050565b6000813590506132ef81614834565b92915050565b60008083601f84011261330757600080fd5b8235905067ffffffffffffffff81111561332057600080fd5b60208301915083600182028301111561333857600080fd5b9250929050565b60008135905061334e8161484b565b92915050565b60008135905061336381614862565b92915050565b60006020828403121561337b57600080fd5b600061338984828501613257565b91505092915050565b600080604083850312156133a557600080fd5b60006133b385828601613257565b92505060206133c485828601613257565b9150509250929050565b6000806000606084860312156133e357600080fd5b60006133f186828701613257565b935050602061340286828701613257565b925050604061341386828701613354565b9150509250925092565b6000806040838503121561343057600080fd5b600061343e85828601613257565b925050602061344f858286016132b6565b9150509250929050565b6000806040838503121561346c57600080fd5b600061347a85828601613257565b925050602061348b85828601613354565b9150509250929050565b6000806000604084860312156134aa57600080fd5b600084013567ffffffffffffffff8111156134c457600080fd5b6134d08682870161326c565b935093505060206134e3868287016132b6565b9150509250925092565b6000602082840312156134ff57600080fd5b600061350d848285016132cb565b91505092915050565b6000806040838503121561352957600080fd5b6000613537858286016132cb565b925050602061354885828601613257565b9150509250929050565b60006020828403121561356457600080fd5b6000613572848285016132e0565b91505092915050565b6000806020838503121561358e57600080fd5b600083013567ffffffffffffffff8111156135a857600080fd5b6135b4858286016132f5565b92509250509250929050565b6000602082840312156135d257600080fd5b60006135e08482850161333f565b91505092915050565b6000602082840312156135fb57600080fd5b600061360984828501613354565b91505092915050565b61361b81614019565b82525050565b61362a8161402b565b82525050565b61363981614037565b82525050565b600061364b8385613ee8565b93506136588385846140c4565b61366183614238565b840190509392505050565b600061367782613edd565b6136818185613ee8565b93506136918185602086016140d3565b61369a81614238565b840191505092915050565b60006136b082613edd565b6136ba8185613ef9565b93506136ca8185602086016140d3565b80840191505092915050565b60006136e3602083613ee8565b91506136ee82614249565b602082019050919050565b6000613706602383613ee8565b915061371182614272565b604082019050919050565b6000613729601483613ee8565b9150613734826142c1565b602082019050919050565b600061374c602283613ee8565b9150613757826142ea565b604082019050919050565b600061376f602283613ee8565b915061377a82614339565b604082019050919050565b6000613792601383613ee8565b915061379d82614388565b602082019050919050565b60006137b5602683613ee8565b91506137c0826143b1565b604082019050919050565b60006137d8601183613ee8565b91506137e382614400565b602082019050919050565b60006137fb601083613ee8565b915061380682614429565b602082019050919050565b600061381e601383613ee8565b915061382982614452565b602082019050919050565b6000613841601983613ee8565b915061384c8261447b565b602082019050919050565b6000613864601783613ee8565b915061386f826144a4565b602082019050919050565b6000613887601c83613ee8565b9150613892826144cd565b602082019050919050565b60006138aa601c83613ee8565b91506138b5826144f6565b602082019050919050565b60006138cd602883613ee8565b91506138d88261451f565b604082019050919050565b60006138f0602183613ee8565b91506138fb8261456e565b604082019050919050565b6000613913601483613ee8565b915061391e826145bd565b602082019050919050565b6000613936601d83613ee8565b9150613941826145e6565b602082019050919050565b6000613959602583613ee8565b91506139648261460f565b604082019050919050565b600061397c602483613ee8565b91506139878261465e565b604082019050919050565b600061399f601783613ef9565b91506139aa826146ad565b601782019050919050565b60006139c2601183613ee8565b91506139cd826146d6565b602082019050919050565b60006139e5602583613ee8565b91506139f0826146ff565b604082019050919050565b6000613a08601183613ef9565b9150613a138261474e565b601182019050919050565b6000613a2b602f83613ee8565b9150613a3682614777565b604082019050919050565b6000613a4e601f83613ee8565b9150613a59826147c6565b602082019050919050565b613a6d8161406d565b82525050565b613a7c816140b2565b82525050565b613a8b8161409b565b82525050565b613a9a816140a5565b82525050565b6000613aab82613992565b9150613ab782856136a5565b9150613ac2826139fb565b9150613ace82846136a5565b91508190509392505050565b6000602082019050613aef6000830184613612565b92915050565b6000602082019050613b0a6000830184613621565b92915050565b6000602082019050613b256000830184613630565b92915050565b60006020820190508181036000830152613b4681848661363f565b90509392505050565b60006020820190508181036000830152613b69818461366c565b905092915050565b60006020820190508181036000830152613b8a816136d6565b9050919050565b60006020820190508181036000830152613baa816136f9565b9050919050565b60006020820190508181036000830152613bca8161371c565b9050919050565b60006020820190508181036000830152613bea8161373f565b9050919050565b60006020820190508181036000830152613c0a81613762565b9050919050565b60006020820190508181036000830152613c2a81613785565b9050919050565b60006020820190508181036000830152613c4a816137a8565b9050919050565b60006020820190508181036000830152613c6a816137cb565b9050919050565b60006020820190508181036000830152613c8a816137ee565b9050919050565b60006020820190508181036000830152613caa81613811565b9050919050565b60006020820190508181036000830152613cca81613834565b9050919050565b60006020820190508181036000830152613cea81613857565b9050919050565b60006020820190508181036000830152613d0a8161387a565b9050919050565b60006020820190508181036000830152613d2a8161389d565b9050919050565b60006020820190508181036000830152613d4a816138c0565b9050919050565b60006020820190508181036000830152613d6a816138e3565b9050919050565b60006020820190508181036000830152613d8a81613906565b9050919050565b60006020820190508181036000830152613daa81613929565b9050919050565b60006020820190508181036000830152613dca8161394c565b9050919050565b60006020820190508181036000830152613dea8161396f565b9050919050565b60006020820190508181036000830152613e0a816139b5565b9050919050565b60006020820190508181036000830152613e2a816139d8565b9050919050565b60006020820190508181036000830152613e4a81613a1e565b9050919050565b60006020820190508181036000830152613e6a81613a41565b9050919050565b6000602082019050613e866000830184613a64565b92915050565b6000602082019050613ea16000830184613a73565b92915050565b6000602082019050613ebc6000830184613a82565b92915050565b6000602082019050613ed76000830184613a91565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000613f0f8261409b565b9150613f1a8361409b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f4f57613f4e6141ab565b5b828201905092915050565b6000613f658261409b565b9150613f708361409b565b925082613f8057613f7f6141da565b5b828204905092915050565b6000613f968261409b565b9150613fa18361409b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fda57613fd96141ab565b5b828202905092915050565b6000613ff08261409b565b9150613ffb8361409b565b92508282101561400e5761400d6141ab565b5b828203905092915050565b60006140248261407b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006140bd8261406d565b9050919050565b82818337600083830152505050565b60005b838110156140f15780820151818401526020810190506140d6565b83811115614100576000848401525b50505050565b60006141118261409b565b91506000821415614125576141246141ab565b5b600182039050919050565b6000600282049050600182168061414857607f821691505b6020821081141561415c5761415b614209565b5b50919050565b600061416d8261409b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141a05761419f6141ab565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f417070726f76653a207a65726f20666972737400000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c6973743a2073656e646572000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f426c61636b6c6973743a20747265617375727900000000000000000000000000600082015250565b7f42617463683a20746f6f206d616e792061646472657373657300000000000000600082015250565b7f66656520616464726573732063616e6e6f742062652030000000000000000000600082015250565b7f62736f20706f6f6c20616464726573732063616e6e6f74206265203000000000600082015250565b7f747265617375727920616464726573732063616e6e6f74206265203000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c6973743a20726563697069656e74000000000000000000000000600082015250565b7f737570657261646d696e2063616e206e6f74206265206368616e676564000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f426c61636b6c6973743a20746172676574000000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6147f881614019565b811461480357600080fd5b50565b61480f8161402b565b811461481a57600080fd5b50565b61482681614037565b811461483157600080fd5b50565b61483d81614041565b811461484857600080fd5b50565b6148548161406d565b811461485f57600080fd5b50565b61486b8161409b565b811461487657600080fd5b5056fea26469706673582212202d59ae33ffd1f902940cf1e5b4aa57699e30528392ed92b9fc885d3bfcc9999764736f6c634300080400330000000000000000000000009ed40c115447c9101cdd7c7e0c0b3880f8f743ce

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102745760003560e01c80636605bfda11610151578063a328f135116100c3578063c5f956af11610087578063c5f956af14610771578063d1efebfe1461078f578063d547741f146107ad578063d8427cce146107c9578063dd62ed3e146107f9578063e8738c9e1461082957610274565b8063a328f135146106bd578063a457c2d7146106d9578063a9059cbb14610709578063adc557d414610739578063bc949df81461075557610274565b80638456cb59116101155780638456cb591461060f5780638705fcd41461061957806391d148541461063557806395d89b41146106655780639f4e14b014610683578063a217fddf1461069f57610274565b80636605bfda14610569578063691e44091461058557806370a08231146105a3578063769ac726146105d3578063826e14a0146105f157610274565b8063313ce567116101ea57806341275358116101ae57806341275358146104a557806342966c68146104c35780634c67fedd146104df5780635600f04f1461050f5780635c1161761461052d5780635c975abb1461054b57610274565b8063313ce5671461040157806336568abe1461041f578063395093511461043b5780633f4ba83a1461046b57806340c10f191461047557610274565b806323b872dd1161023c57806323b872dd14610331578063248a9ca314610361578063252498a21461039157806325daa8f9146103ad57806329012777146103c95780632f2ff15d146103e557610274565b806301ffc9a7146102795780630369795d146102a957806306fdde03146102c5578063095ea7b3146102e357806318160ddd14610313575b600080fd5b610293600480360381019061028e9190613552565b610847565b6040516102a09190613af5565b60405180910390f35b6102c360048036038101906102be9190613369565b6108c1565b005b6102cd6109df565b6040516102da9190613b4f565b60405180910390f35b6102fd60048036038101906102f89190613459565b610a71565b60405161030a9190613af5565b60405180910390f35b61031b610b2b565b6040516103289190613ea7565b60405180910390f35b61034b600480360381019061034691906133ce565b610b35565b6040516103589190613af5565b60405180910390f35b61037b600480360381019061037691906134ed565b610b93565b6040516103889190613b10565b60405180910390f35b6103ab60048036038101906103a6919061357b565b610bb3565b005b6103c760048036038101906103c291906135c0565b610c35565b005b6103e360048036038101906103de9190613495565b610cbf565b005b6103ff60048036038101906103fa9190613516565b610e04565b005b610409610e2d565b6040516104169190613ec2565b60405180910390f35b61043960048036038101906104349190613516565b610e36565b005b61045560048036038101906104509190613459565b610eb9565b6040516104629190613af5565b60405180910390f35b610473610f15565b005b61048f600480360381019061048a9190613459565b610f52565b60405161049c9190613af5565b60405180910390f35b6104ad610fe3565b6040516104ba9190613ada565b60405180910390f35b6104dd60048036038101906104d891906135e9565b611009565b005b6104f960048036038101906104f49190613369565b61111e565b6040516105069190613af5565b60405180910390f35b610517611174565b6040516105249190613b4f565b60405180910390f35b610535611202565b6040516105429190613b10565b60405180910390f35b610553611226565b6040516105609190613af5565b60405180910390f35b610583600480360381019061057e9190613369565b61123d565b005b61058d61135b565b60405161059a9190613e71565b60405180910390f35b6105bd60048036038101906105b89190613369565b61136f565b6040516105ca9190613ea7565b60405180910390f35b6105db6113b7565b6040516105e89190613b10565b60405180910390f35b6105f96113db565b6040516106069190613e71565b60405180910390f35b6106176113ef565b005b610633600480360381019061062e9190613369565b61142c565b005b61064f600480360381019061064a9190613516565b61154a565b60405161065c9190613af5565b60405180910390f35b61066d6115b5565b60405161067a9190613b4f565b60405180910390f35b61069d60048036038101906106989190613495565b611647565b005b6106a761178c565b6040516106b49190613b10565b60405180910390f35b6106d760048036038101906106d291906135c0565b611793565b005b6106f360048036038101906106ee9190613459565b61181d565b6040516107009190613af5565b60405180910390f35b610723600480360381019061071e9190613459565b611879565b6040516107309190613af5565b60405180910390f35b610753600480360381019061074e919061341d565b6118df565b005b61076f600480360381019061076a919061341d565b6119bb565b005b610779611a97565b6040516107869190613ada565b60405180910390f35b610797611abd565b6040516107a49190613b10565b60405180910390f35b6107c760048036038101906107c29190613516565b611ae1565b005b6107e360048036038101906107de9190613369565b611b9b565b6040516107f09190613af5565b60405180910390f35b610813600480360381019061080e9190613392565b611bf1565b6040516108209190613ea7565b60405180910390f35b610831611c78565b60405161083e9190613ada565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108ba57506108b982611c9e565b5b9050919050565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d8776108f3816108ee611d08565b611d10565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a90613cf1565b60405180910390fd5b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f330c8e2a6df6a20eca900e61e3f21b01f0f4a4d06999d077cb31d1d2b4d6d48a826040516109d39190613ada565b60405180910390a15050565b6060600380546109ee90614130565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1a90614130565b8015610a675780601f10610a3c57610100808354040283529160200191610a67565b820191906000526020600020905b815481529060010190602001808311610a4a57829003601f168201915b5050505050905090565b6000610a7b611226565b15610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290613c71565b60405180910390fd5b6000821480610ada57506000610ad8610ad2611d08565b85611bf1565b145b610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1090613c11565b60405180910390fd5b610b238383611dad565b905092915050565b6000600254905090565b6000610b3f611226565b15610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690613c71565b60405180910390fd5b610b8a848484611dcb565b90509392505050565b600060066000838152602001908152602001600020600101549050919050565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d877610be581610be0611d08565b611d10565b8282600a9190610bf69291906131b4565b507f11bd4228f26e963bf45f4d1d28a1d9d76f012fb35e7c11e6f38eefff9ad57d4c8383604051610c28929190613b2b565b60405180910390a1505050565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d877610c6781610c62611d08565b611d10565b81600d60146101000a81548161ffff021916908361ffff1602179055507fe06ee303f51f795aa6ae952675bab131de328a2f93adbb4c57472bb3af0e302182604051610cb39190613e8c565b60405180910390a15050565b7f7100d427dec4d84128633ececd9e234641183788c2749fc3a4aa24ea8f5cfaf1610cf181610cec611d08565b611d10565b60c8848490501115610d38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2f90613cb1565b60405180910390fd5b60005b84849050811015610dfd578260096000878785818110610d84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610d999190613369565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610df590614162565b915050610d3b565b5050505050565b610e0d82610b93565b610e1e81610e19611d08565b611d10565b610e288383611ec3565b505050565b60006002905090565b610e3e611d08565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea290613e31565b60405180910390fd5b610eb58282611fa4565b5050565b6000610ec3611226565b15610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa90613c71565b60405180910390fd5b610f0d8383612086565b905092915050565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d877610f4781610f42611d08565b611d10565b610f4f612132565b50565b60007f27f406f19fd1b378cfb619bc553f0cd86d17e85e38ecad46997fb68ad17b7307610f8681610f81611d08565b611d10565b610f8e611226565b15610fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc590613c71565b60405180910390fd5b610fd884846121d4565b600191505092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f27f406f19fd1b378cfb619bc553f0cd86d17e85e38ecad46997fb68ad17b730761103b81611036611d08565b611d10565b611043611226565b15611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a90613c71565b60405180910390fd5b6110ae600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661111e565b156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590613c91565b60405180910390fd5b61111a600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361222b565b5050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a805461118190614130565b80601f01602080910402602001604051908101604052809291908181526020018280546111ad90614130565b80156111fa5780601f106111cf576101008083540402835291602001916111fa565b820191906000526020600020905b8154815290600101906020018083116111dd57829003601f168201915b505050505081565b7f7100d427dec4d84128633ececd9e234641183788c2749fc3a4aa24ea8f5cfaf181565b6000600560009054906101000a900460ff16905090565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d87761126f8161126a611d08565b611d10565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690613d11565b60405180910390fd5b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f5f32a921289307d02cf38bb8899057f1fcb449b02d9fb1d419c6c2aef1c325b28260405161134f9190613ada565b60405180910390a15050565b600d60169054906101000a900461ffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f27f406f19fd1b378cfb619bc553f0cd86d17e85e38ecad46997fb68ad17b730781565b600d60149054906101000a900461ffff1681565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d8776114218161141c611d08565b611d10565b611429612402565b50565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d87761145e81611459611d08565b611d10565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590613cd1565b60405180910390fd5b81600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fa95a4d73d6e1881ecbcc3f905d9c1d2bdcc28cf9971d01850098192ef7b852678260405161153e9190613ada565b60405180910390a15050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600480546115c490614130565b80601f01602080910402602001604051908101604052809291908181526020018280546115f090614130565b801561163d5780601f106116125761010080835404028352916020019161163d565b820191906000526020600020905b81548152906001019060200180831161162057829003601f168201915b5050505050905090565b7f7100d427dec4d84128633ececd9e234641183788c2749fc3a4aa24ea8f5cfaf161167981611674611d08565b611d10565b60c88484905011156116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b790613cb1565b60405180910390fd5b60005b8484905081101561178557826008600087878581811061170c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906117219190613369565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061177d90614162565b9150506116c3565b5050505050565b6000801b81565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d8776117c5816117c0611d08565b611d10565b81600d60166101000a81548161ffff021916908361ffff1602179055507f0d4498f13b4c202299f8c9d01e5e2690390f45fbaefd8f5bfddd01f4272ea8ff826040516118119190613e8c565b60405180910390a15050565b6000611827611226565b15611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e90613c71565b60405180910390fd5b61187183836124a5565b905092915050565b6000611883611226565b156118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba90613c71565b60405180910390fd5b6118d56118ce611d08565b8484612590565b6001905092915050565b7f7100d427dec4d84128633ececd9e234641183788c2749fc3a4aa24ea8f5cfaf16119118161190c611d08565b611d10565b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff167f35e5c9d995483969ad7906cae9ceeeb59bad376f6f6cc350eda9d9ddff649af8836040516119ae9190613af5565b60405180910390a2505050565b7f7100d427dec4d84128633ececd9e234641183788c2749fc3a4aa24ea8f5cfaf16119ed816119e8611d08565b611d10565b81600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff167f3d9ca9f82173d198d467975c1539865b168e6988175217b564f32ac1f062319e83604051611a8a9190613af5565b60405180910390a2505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f74088672d183ee797e5da8fa05521697933bd36698c07546fac57bdf4023d87781565b611aea82610b93565b611afb81611af6611d08565b611d10565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8390613d91565b60405180910390fd5b611b968383612883565b505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b611d1a828261154a565b611da957611d3f8173ffffffffffffffffffffffffffffffffffffffff1660146128ac565b611d4d8360001c60206128ac565b604051602001611d5e929190613aa0565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da09190613b4f565b60405180910390fd5b5050565b6000611dc1611dba611d08565b8484612ba6565b6001905092915050565b6000611dd8848484612590565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611e23611d08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90613d31565b60405180910390fd5b611eb785611eaf611d08565b858403612ba6565b60019150509392505050565b611ecd828261154a565b611fa05760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f45611d08565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611fae828261154a565b156120825760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612027611d08565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612128612093611d08565b8484600160006120a1611d08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121239190613f04565b612ba6565b6001905092915050565b61213a611226565b612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090613bb1565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121bd611d08565b6040516121ca9190613ada565b60405180910390a1565b6121dd82611b9b565b1561221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490613df1565b60405180910390fd5b6122278282612d71565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229290613d51565b60405180910390fd5b6122a782600083612ed1565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561232d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232490613bd1565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546123849190613fe5565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123e99190613ea7565b60405180910390a36123fd83600084612ed6565b505050565b61240a611226565b1561244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190613c71565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861248e611d08565b60405161249b9190613ada565b60405180910390a1565b600080600160006124b4611d08565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256890613e11565b60405180910390fd5b61258561257c611d08565b85858403612ba6565b600191505092915050565b6125998361111e565b156125d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d090613c51565b60405180910390fd5b6125e282611b9b565b15612622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261990613d71565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806126cb5750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156126e0576126db838383612edb565b61287e565b600061271090506000600d60149054906101000a900461ffff1661ffff1690506000600d60169054906101000a900461ffff1661ffff169050600061272e828461315c90919063ffffffff16565b9050600061277d600a61276f600561276189612753888d61317290919063ffffffff16565b61318890919063ffffffff16565b61315c90919063ffffffff16565b61318890919063ffffffff16565b905060006127cc600a6127be60056127b08a6127a28a8e61317290919063ffffffff16565b61318890919063ffffffff16565b61315c90919063ffffffff16565b61318890919063ffffffff16565b905060006127e3828461319e90919063ffffffff16565b905060006127fa848a61319e90919063ffffffff16565b90506128078b8b83612edb565b600082111561283e5761283d8b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612edb565b5b6000831115612875576128748b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612edb565b5b50505050505050505b505050565b61288c82610b93565b61289d81612898611d08565b611d10565b6128a78383611fa4565b505050565b6060600060028360026128bf9190613f8b565b6128c99190613f04565b67ffffffffffffffff811115612908577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561293a5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612998577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612a22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612a629190613f8b565b612a6c9190613f04565b90505b6001811115612b58577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612ad4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612b11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612b5190614106565b9050612a6f565b5060008414612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9390613b71565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0d90613dd1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7d90613bf1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612d649190613ea7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd890613e51565b60405180910390fd5b612ded60008383612ed1565b8060026000828254612dff9190613f04565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e549190613f04565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612eb99190613ea7565b60405180910390a3612ecd60008383612ed6565b5050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4290613db1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb290613b91565b60405180910390fd5b612fc6838383612ed1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561304c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304390613c31565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130df9190613f04565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516131439190613ea7565b60405180910390a3613156848484612ed6565b50505050565b6000818361316a9190613f04565b905092915050565b600081836131809190613f8b565b905092915050565b600081836131969190613f5a565b905092915050565b600081836131ac9190613fe5565b905092915050565b8280546131c090614130565b90600052602060002090601f0160209004810192826131e25760008555613229565b82601f106131fb57803560ff1916838001178555613229565b82800160010185558215613229579182015b8281111561322857823582559160200191906001019061320d565b5b509050613236919061323a565b5090565b5b8082111561325357600081600090555060010161323b565b5090565b600081359050613266816147ef565b92915050565b60008083601f84011261327e57600080fd5b8235905067ffffffffffffffff81111561329757600080fd5b6020830191508360208202830111156132af57600080fd5b9250929050565b6000813590506132c581614806565b92915050565b6000813590506132da8161481d565b92915050565b6000813590506132ef81614834565b92915050565b60008083601f84011261330757600080fd5b8235905067ffffffffffffffff81111561332057600080fd5b60208301915083600182028301111561333857600080fd5b9250929050565b60008135905061334e8161484b565b92915050565b60008135905061336381614862565b92915050565b60006020828403121561337b57600080fd5b600061338984828501613257565b91505092915050565b600080604083850312156133a557600080fd5b60006133b385828601613257565b92505060206133c485828601613257565b9150509250929050565b6000806000606084860312156133e357600080fd5b60006133f186828701613257565b935050602061340286828701613257565b925050604061341386828701613354565b9150509250925092565b6000806040838503121561343057600080fd5b600061343e85828601613257565b925050602061344f858286016132b6565b9150509250929050565b6000806040838503121561346c57600080fd5b600061347a85828601613257565b925050602061348b85828601613354565b9150509250929050565b6000806000604084860312156134aa57600080fd5b600084013567ffffffffffffffff8111156134c457600080fd5b6134d08682870161326c565b935093505060206134e3868287016132b6565b9150509250925092565b6000602082840312156134ff57600080fd5b600061350d848285016132cb565b91505092915050565b6000806040838503121561352957600080fd5b6000613537858286016132cb565b925050602061354885828601613257565b9150509250929050565b60006020828403121561356457600080fd5b6000613572848285016132e0565b91505092915050565b6000806020838503121561358e57600080fd5b600083013567ffffffffffffffff8111156135a857600080fd5b6135b4858286016132f5565b92509250509250929050565b6000602082840312156135d257600080fd5b60006135e08482850161333f565b91505092915050565b6000602082840312156135fb57600080fd5b600061360984828501613354565b91505092915050565b61361b81614019565b82525050565b61362a8161402b565b82525050565b61363981614037565b82525050565b600061364b8385613ee8565b93506136588385846140c4565b61366183614238565b840190509392505050565b600061367782613edd565b6136818185613ee8565b93506136918185602086016140d3565b61369a81614238565b840191505092915050565b60006136b082613edd565b6136ba8185613ef9565b93506136ca8185602086016140d3565b80840191505092915050565b60006136e3602083613ee8565b91506136ee82614249565b602082019050919050565b6000613706602383613ee8565b915061371182614272565b604082019050919050565b6000613729601483613ee8565b9150613734826142c1565b602082019050919050565b600061374c602283613ee8565b9150613757826142ea565b604082019050919050565b600061376f602283613ee8565b915061377a82614339565b604082019050919050565b6000613792601383613ee8565b915061379d82614388565b602082019050919050565b60006137b5602683613ee8565b91506137c0826143b1565b604082019050919050565b60006137d8601183613ee8565b91506137e382614400565b602082019050919050565b60006137fb601083613ee8565b915061380682614429565b602082019050919050565b600061381e601383613ee8565b915061382982614452565b602082019050919050565b6000613841601983613ee8565b915061384c8261447b565b602082019050919050565b6000613864601783613ee8565b915061386f826144a4565b602082019050919050565b6000613887601c83613ee8565b9150613892826144cd565b602082019050919050565b60006138aa601c83613ee8565b91506138b5826144f6565b602082019050919050565b60006138cd602883613ee8565b91506138d88261451f565b604082019050919050565b60006138f0602183613ee8565b91506138fb8261456e565b604082019050919050565b6000613913601483613ee8565b915061391e826145bd565b602082019050919050565b6000613936601d83613ee8565b9150613941826145e6565b602082019050919050565b6000613959602583613ee8565b91506139648261460f565b604082019050919050565b600061397c602483613ee8565b91506139878261465e565b604082019050919050565b600061399f601783613ef9565b91506139aa826146ad565b601782019050919050565b60006139c2601183613ee8565b91506139cd826146d6565b602082019050919050565b60006139e5602583613ee8565b91506139f0826146ff565b604082019050919050565b6000613a08601183613ef9565b9150613a138261474e565b601182019050919050565b6000613a2b602f83613ee8565b9150613a3682614777565b604082019050919050565b6000613a4e601f83613ee8565b9150613a59826147c6565b602082019050919050565b613a6d8161406d565b82525050565b613a7c816140b2565b82525050565b613a8b8161409b565b82525050565b613a9a816140a5565b82525050565b6000613aab82613992565b9150613ab782856136a5565b9150613ac2826139fb565b9150613ace82846136a5565b91508190509392505050565b6000602082019050613aef6000830184613612565b92915050565b6000602082019050613b0a6000830184613621565b92915050565b6000602082019050613b256000830184613630565b92915050565b60006020820190508181036000830152613b4681848661363f565b90509392505050565b60006020820190508181036000830152613b69818461366c565b905092915050565b60006020820190508181036000830152613b8a816136d6565b9050919050565b60006020820190508181036000830152613baa816136f9565b9050919050565b60006020820190508181036000830152613bca8161371c565b9050919050565b60006020820190508181036000830152613bea8161373f565b9050919050565b60006020820190508181036000830152613c0a81613762565b9050919050565b60006020820190508181036000830152613c2a81613785565b9050919050565b60006020820190508181036000830152613c4a816137a8565b9050919050565b60006020820190508181036000830152613c6a816137cb565b9050919050565b60006020820190508181036000830152613c8a816137ee565b9050919050565b60006020820190508181036000830152613caa81613811565b9050919050565b60006020820190508181036000830152613cca81613834565b9050919050565b60006020820190508181036000830152613cea81613857565b9050919050565b60006020820190508181036000830152613d0a8161387a565b9050919050565b60006020820190508181036000830152613d2a8161389d565b9050919050565b60006020820190508181036000830152613d4a816138c0565b9050919050565b60006020820190508181036000830152613d6a816138e3565b9050919050565b60006020820190508181036000830152613d8a81613906565b9050919050565b60006020820190508181036000830152613daa81613929565b9050919050565b60006020820190508181036000830152613dca8161394c565b9050919050565b60006020820190508181036000830152613dea8161396f565b9050919050565b60006020820190508181036000830152613e0a816139b5565b9050919050565b60006020820190508181036000830152613e2a816139d8565b9050919050565b60006020820190508181036000830152613e4a81613a1e565b9050919050565b60006020820190508181036000830152613e6a81613a41565b9050919050565b6000602082019050613e866000830184613a64565b92915050565b6000602082019050613ea16000830184613a73565b92915050565b6000602082019050613ebc6000830184613a82565b92915050565b6000602082019050613ed76000830184613a91565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000613f0f8261409b565b9150613f1a8361409b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f4f57613f4e6141ab565b5b828201905092915050565b6000613f658261409b565b9150613f708361409b565b925082613f8057613f7f6141da565b5b828204905092915050565b6000613f968261409b565b9150613fa18361409b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fda57613fd96141ab565b5b828202905092915050565b6000613ff08261409b565b9150613ffb8361409b565b92508282101561400e5761400d6141ab565b5b828203905092915050565b60006140248261407b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006140bd8261406d565b9050919050565b82818337600083830152505050565b60005b838110156140f15780820151818401526020810190506140d6565b83811115614100576000848401525b50505050565b60006141118261409b565b91506000821415614125576141246141ab565b5b600182039050919050565b6000600282049050600182168061414857607f821691505b6020821081141561415c5761415b614209565b5b50919050565b600061416d8261409b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141a05761419f6141ab565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f417070726f76653a207a65726f20666972737400000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c6973743a2073656e646572000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f426c61636b6c6973743a20747265617375727900000000000000000000000000600082015250565b7f42617463683a20746f6f206d616e792061646472657373657300000000000000600082015250565b7f66656520616464726573732063616e6e6f742062652030000000000000000000600082015250565b7f62736f20706f6f6c20616464726573732063616e6e6f74206265203000000000600082015250565b7f747265617375727920616464726573732063616e6e6f74206265203000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c6973743a20726563697069656e74000000000000000000000000600082015250565b7f737570657261646d696e2063616e206e6f74206265206368616e676564000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f426c61636b6c6973743a20746172676574000000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6147f881614019565b811461480357600080fd5b50565b61480f8161402b565b811461481a57600080fd5b50565b61482681614037565b811461483157600080fd5b50565b61483d81614041565b811461484857600080fd5b50565b6148548161406d565b811461485f57600080fd5b50565b61486b8161409b565b811461487657600080fd5b5056fea26469706673582212202d59ae33ffd1f902940cf1e5b4aa57699e30528392ed92b9fc885d3bfcc9999764736f6c63430008040033

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

0000000000000000000000009ed40c115447c9101cdd7c7e0c0b3880f8f743ce

-----Decoded View---------------
Arg [0] : _superadmin (address): 0x9Ed40c115447c9101CDD7c7e0c0B3880f8F743Ce

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009ed40c115447c9101cdd7c7e0c0b3880f8f743ce


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.