ETH Price: $3,364.52 (-2.32%)
Gas: 1 Gwei

Token

BRICK (Brick Block)
 

Overview

Max Total Supply

100,000,000 Brick Block

Holders

1,576 ( -0.063%)

Market

Price

$0.03 @ 0.000009 ETH (-4.86%)

Onchain Market Cap

$2,913,534.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,050.69215344832 Brick Block

Value
$147.15 ( ~0.043735827872458 Eth) [0.0051%]
0xc16ac46556adf7ccd8c909c4a6678e89a08ded76
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BrickBlock enables fractional ownership through NFTs. This allows individuals to invest in a portion of a high-value property with a smaller capital outlay, opening doors for a wider range of investors.

Market

Volume (24H):$2,057.07
Market Capitalization:$0.00
Circulating Supply:0.00 Brick Block
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BB

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : brickBlockv2.sol
/****

Telegram: https://t.me/brickblockETH
Twitter: https://twitter.com/brickblockETH
Website: https://brickblock.estate/

****/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

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

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

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

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

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

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

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

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

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

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

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

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

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

  function feeTo() external view returns (address);

  function feeToSetter() external view returns (address);

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

  function allPairs(uint256) external view returns (address pair);

  function allPairsLength() external view returns (uint256);

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

  function setFeeTo(address) external;

  function setFeeToSetter(address) external;
}

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

  function WETH() external pure returns (address);

  function addLiquidity(
    address tokenA,
    address tokenB,
    uint256 amountADesired,
    uint256 amountBDesired,
    uint256 amountAMin,
    uint256 amountBMin,
    address to,
    uint256 deadline
  )
  external
  returns (
    uint256 amountA,
    uint256 amountB,
    uint256 liquidity
  );

  function addLiquidityETH(
    address token,
    uint256 amountTokenDesired,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline
  )
  external
  payable
  returns (
    uint256 amountToken,
    uint256 amountETH,
    uint256 liquidity
  );

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

  function swapExactETHForTokensSupportingFeeOnTransferTokens(
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external payable;

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

contract BB is ERC20, Ownable {
  IUniswapV2Router02 public immutable uniswapV2Router;

  bool private swapping;

  address public marketingWallet;
  address public devWallet;
  address public treasuryWallet;

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

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

  uint256 public buyTotalFees;
  uint256 public buyMarketingFee;
  uint256 public buyDevFee;
  uint256 public buyTreasuryFee;

  uint256 public sellTotalFees;
  uint256 public sellMarketingFee;
  uint256 public sellDevFee;
  uint256 public sellTreasuryFee;

  uint256 public tokensForMarketing;
  uint256 public tokensForDev;
  uint256 public tokensForTreasury;

  mapping(address => bool) private _isExcludedFromFees;
  mapping(address => bool) public _isExcludedMaxTransactionAmount;
  mapping(address => bool) public automatedMarketMakerPairs;
  uint256 public blacklistCount;
  mapping(address => uint256) public blacklist;



  event ExcludeFromFees(address indexed account, bool isExcluded);
  event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

  constructor() ERC20("BRICK", "Brick Block") {// 
    IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    excludeFromMaxTransaction(address(_uniswapV2Router), true);
    uniswapV2Router = _uniswapV2Router;

    uint256 totalSupply = 100_000_000 * 1e18;

    maxTransactionAmount = 1_000_000 * 1e18; // 1.0% from total supply maxTransactionAmount
    maxWallet = 1_000_000 * 1e18; // 1.0% from total supply maxWallet
    swapTokensAtAmount = 50_000 * 1e18; // 0.05% swap wallet

    buyMarketingFee = 3; // 10% initial buy fee for marketing wallet
    buyDevFee = 3; // 10% initial buy fee for dev wallet
    buyTreasuryFee = 0; // 15% initial buy fee for treasury wallet
    buyTotalFees = buyMarketingFee + buyDevFee + buyTreasuryFee;

    sellMarketingFee = 10; // 10% initial sell fee for marketing wallet
    sellDevFee = 10; // 10% initial sell fee for dev wallet
    sellTreasuryFee = 15; // 15% initial sell fee for treasury wallet
    sellTotalFees = sellMarketingFee + sellDevFee + sellTreasuryFee;

    marketingWallet = address(0x5F0517656D4237272A969a38B2e321A4B905D5e9); // 
    devWallet = address(0x5e1a478E351Bd852eCa2C30775DB146A8da24078); // 
    treasuryWallet = address(0x95e008d2C6E156634BA25D8F0A94d5deD49b5ed6); // 

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

    excludeFromMaxTransaction(owner(), true);
    excludeFromMaxTransaction(marketingWallet, true);
    excludeFromMaxTransaction(devWallet, true);
    excludeFromMaxTransaction(treasuryWallet, true);
    excludeFromMaxTransaction(address(this), true);
    excludeFromMaxTransaction(address(0xdead), true);

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

  receive() external payable {}

  function enableTrading(bool trade) external onlyOwner {
    tradingActive = trade;
    swapEnabled = trade;
  }

  function removeLimits() external onlyOwner returns (bool) {
    limitsInEffect = false;
    return true;
  }

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

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

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

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

  function updateSwapEnabled(bool enabled) external onlyOwner {
    swapEnabled = enabled;
  }

  function updateBuyFees(uint256 _marketingFee, uint256 _devFee, uint256 _treasuryFee) external onlyOwner {
    require(_marketingFee <= 10, "Cannot set marketingFee higher than 10%");
    require(_devFee <= 10, "Cannot set devFee higher than 10%");
    require(_treasuryFee <= 15, "Cannot set treasuryFee higher than 15%");
    buyMarketingFee = _marketingFee;
    buyDevFee = _devFee;
    buyTreasuryFee = _treasuryFee;
    buyTotalFees = buyMarketingFee + buyDevFee + buyTreasuryFee;
  }

  function updateSellFees(uint256 _marketingFee, uint256 _devFee, uint256 _treasuryFee) external onlyOwner {
    require(_marketingFee <= 10, "Cannot set marketingFee higher than 10%");
    require(_devFee <= 10, "Cannot set devFee higher than 10%");
    require(_treasuryFee <= 15, "Cannot set treasuryFee higher than 15%");
    sellMarketingFee = _marketingFee;
    sellDevFee = _devFee;
    sellTreasuryFee = _treasuryFee;
    sellTotalFees = sellMarketingFee + sellDevFee + sellTreasuryFee;
  }

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

  function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
    automatedMarketMakerPairs[pair] = value;
    emit SetAutomatedMarketMakerPair(pair, value);
  }

  function updateMarketingWallet(address _marketingWallet) external onlyOwner {
    marketingWallet = _marketingWallet;
  }

  function updateDevWallet(address _devWallet) external onlyOwner {
    devWallet = _devWallet;
  }

  function updateTreasuryWallet(address _treasuryWallet) external onlyOwner {
    treasuryWallet = _treasuryWallet;
  }

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

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

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

    bool takeFee = !swapping;
    if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
      takeFee = false;
    }

    uint256 fees = 0;
    if (takeFee) {
      if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
        fees = (amount * sellTotalFees) / 100;
        tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
        tokensForDev += fees * sellDevFee / sellTotalFees;
        tokensForTreasury += fees * sellTreasuryFee / sellTotalFees;
      }
      else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        fees = (amount * buyTotalFees) / 100;
        tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
        tokensForDev += fees * buyDevFee / buyTotalFees;
        tokensForTreasury += fees * buyTreasuryFee / buyTotalFees;
      }
      amount -= fees;
    }

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

        // when buy
        if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
          require(
            amount <= maxTransactionAmount,
            "Buy transfer amount exceeds the max tx"
          );
          require(
            amount + balanceOf(to) <= maxWallet,
            "Max wallet exceeded"
          );
        }
        // when sell
        else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
          require(
            amount <= maxTransactionAmount,
            "Sell transfer amount exceeds the max tx"
          );
        } else if (!_isExcludedMaxTransactionAmount[to]) {
          require(
            amount + balanceOf(to) <= maxWallet,
            "Max wallet exceeded"
          );
        }
      }
    }

    uint256 contractTokenBalance = balanceOf(address(this));

    bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

      swapBack();

      swapping = false;
    }

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

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

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

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

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

  function airdrop(
    address[] calldata addresses,
    uint256[] calldata amounts
  ) external onlyOwner {
    require(addresses.length > 0 && amounts.length == addresses.length);
    address from = msg.sender;
    for (uint i = 0; i < addresses.length; i++) {
        _transfer(from, addresses[i], amounts[i]);
    
    }
  }

   function recoverERC20(address tokenAddress, address tokenReceiver, uint256 tokenAmount) external onlyOwner virtual {
        IERC20(tokenAddress).transfer(tokenReceiver, tokenAmount);
    }


  function clearStuckBalance(
    uint256 amountPercentage,
    address adr
  ) external onlyOwner {
    uint256 amountETH = address(this).balance;

    if (amountETH > 0) {
      (bool sent, ) = adr.call{value: (amountETH * amountPercentage) / 100}("");
      require(sent, "Failed to transfer funds");
    }
  }

  function blacklistWallets(
    address[] calldata _wallets,
    bool _blacklist
  ) external onlyOwner {
    for (uint i = 0; i < _wallets.length; i++) {
      if (_blacklist) {
        blacklistCount++;
      } else {
        if (blacklist[_wallets[i]] != 0) blacklistCount--;
      }
      blacklist[_wallets[i]] = _blacklist ? block.number : 0;
    }
  }

  function swapBack() private {
    uint256 totalTokensFor = tokensForMarketing + tokensForDev + tokensForTreasury;
    uint256 contractBalance = balanceOf(address(this));
    uint256 totalTokensToSwap = swapTokensAtAmount;

    if (contractBalance > swapTokensAtAmount * 40) {
      totalTokensToSwap = swapTokensAtAmount * 40;
    }

    uint256 initialETHBalance = address(this).balance;

    swapTokensForEth(totalTokensToSwap);

    uint256 ethBalance = address(this).balance - initialETHBalance;

    uint256 ethForMarketing = (ethBalance * tokensForMarketing) / totalTokensFor;
    uint256 ethForDev = (ethBalance * tokensForDev) / totalTokensFor;
    uint256 ethForTreasury = (ethBalance * tokensForTreasury) / totalTokensFor;

    tokensForMarketing = 0;
    tokensForDev = 0;
    tokensForTreasury = 0;

    bool success;
    (success,) = address(marketingWallet).call{value : ethForMarketing}("");
    (success,) = address(devWallet).call{value : ethForDev}("");
    (success,) = address(treasuryWallet).call{value : ethForTreasury}("");
  }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklistCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"},{"internalType":"bool","name":"_blacklist","type":"bool"}],"name":"blacklistWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountPercentage","type":"uint256"},{"internalType":"address","name":"adr","type":"address"}],"name":"clearStuckBalance","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":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"trade","type":"bool"}],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"tokenReceiver","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_treasuryFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526001600c5f6101000a81548160ff0219169083151502179055505f600c60016101000a81548160ff0219169083151502179055505f600c60026101000a81548160ff02191690831515021790555034801561005d575f80fd5b506040518060400160405280600581526020017f425249434b0000000000000000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f427269636b20426c6f636b00000000000000000000000000000000000000000081525081600390816100d99190610b86565b5080600490816100e99190610b86565b5050506101086100fd6104df60201b60201c565b6104e660201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90506101318160016105a960201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505f6a52b7d2dcc80cd2e4000000905069d3c21bcecceda100000060098190555069d3c21bcecceda1000000600b81905550690a968163f0a57b400000600a819055506003600e819055506003600f819055505f601081905550601054600f54600e546101d19190610c82565b6101db9190610c82565b600d81905550600a601281905550600a601381905550600f60148190555060145460135460125461020c9190610c82565b6102169190610c82565b601181905550735f0517656d4237272a969a38b2e321a4b905d5e960065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735e1a478e351bd852eca2c30775db146a8da2407860075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507395e008d2c6e156634ba25d8f0a94d5ded49b5ed660085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061033661032961068960201b60201c565b60016106b160201b60201c565b61036860065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016106b160201b60201c565b61039a60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016106b160201b60201c565b6103cc60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016106b160201b60201c565b6103dd3060016106b160201b60201c565b6103f061dead60016106b160201b60201c565b61040e61040161068960201b60201c565b60016105a960201b60201c565b61044060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016105a960201b60201c565b61047260075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016105a960201b60201c565b6104a460085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016105a960201b60201c565b6104b53060016105a960201b60201c565b6104c861dead60016105a960201b60201c565b6104d833826107df60201b60201c565b5050610df0565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6105b76104df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166105db61068960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614610631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062890610d0f565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6106bf6104df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166106e361068960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073090610d0f565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516107d39190610d47565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361084d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084490610daa565b60405180910390fd5b61085e5f838361094260201b60201c565b8060025f82825461086f9190610c82565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546108c19190610c82565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516109259190610dd7565b60405180910390a361093e5f838361094760201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806109c757607f821691505b6020821081036109da576109d9610983565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610a3c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610a01565b610a468683610a01565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610a8a610a85610a8084610a5e565b610a67565b610a5e565b9050919050565b5f819050919050565b610aa383610a70565b610ab7610aaf82610a91565b848454610a0d565b825550505050565b5f90565b610acb610abf565b610ad6818484610a9a565b505050565b5b81811015610af957610aee5f82610ac3565b600181019050610adc565b5050565b601f821115610b3e57610b0f816109e0565b610b18846109f2565b81016020851015610b27578190505b610b3b610b33856109f2565b830182610adb565b50505b505050565b5f82821c905092915050565b5f610b5e5f1984600802610b43565b1980831691505092915050565b5f610b768383610b4f565b9150826002028217905092915050565b610b8f8261094c565b67ffffffffffffffff811115610ba857610ba7610956565b5b610bb282546109b0565b610bbd828285610afd565b5f60209050601f831160018114610bee575f8415610bdc578287015190505b610be68582610b6b565b865550610c4d565b601f198416610bfc866109e0565b5f5b82811015610c2357848901518255600182019150602085019450602081019050610bfe565b86831015610c405784890151610c3c601f891682610b4f565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610c8c82610a5e565b9150610c9783610a5e565b9250828201905080821115610caf57610cae610c55565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f610cf9602083610cb5565b9150610d0482610cc5565b602082019050919050565b5f6020820190508181035f830152610d2681610ced565b9050919050565b5f8115159050919050565b610d4181610d2d565b82525050565b5f602082019050610d5a5f830184610d38565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610d94601f83610cb5565b9150610d9f82610d60565b602082019050919050565b5f6020820190508181035f830152610dc181610d88565b9050919050565b610dd181610a5e565b82525050565b5f602082019050610dea5f830184610dc8565b92915050565b6080516153a0610e1d5f395f8181610f7e01528181613bb601528181613c950152613cbc01526153a05ff3fe608060405260043610610384575f3560e01c8063809d458d116101d0578063bb2188b411610101578063d257b34f1161009f578063f275f64b1161006e578063f275f64b14610cff578063f2fde38b14610d27578063f8b45b0514610d4f578063f9f92be414610d795761038b565b8063d257b34f14610c33578063d85ba06314610c6f578063dd62ed3e14610c99578063e2f4560514610cd55761038b565b8063c17b5b8c116100db578063c17b5b8c14610b8f578063c18bc19514610bb7578063c8c8ebe414610bdf578063cc2ffe7c14610c095761038b565b8063bb2188b414610b15578063bbc0c74214610b3d578063c024666814610b675761038b565b80639c3b4fdc1161016e578063a457c2d711610148578063a457c2d714610a39578063a9059cbb14610a75578063aacebbe314610ab1578063b62496f514610ad95761038b565b80639c3b4fdc146109bb5780639fccce32146109e5578063a0d82dc514610a0f5761038b565b806392136913116101aa5780639213691314610917578063924de9b71461094157806395d89b41146109695780639a7a23d6146109935761038b565b8063809d458d1461089b5780638da5cb5b146108c35780638ea5220f146108ed5761038b565b80634a62bb65116102b55780636ddd1713116102535780637571336a116102225780637571336a146107f757806375f0a8741461081f5780637bce5a04146108495780638095d564146108735761038b565b80636ddd17131461075157806370a082311461077b578063715018a6146107b7578063751039fc146107cd5761038b565b80635c068a8c1161028f5780635c068a8c146106ab57806367243482146106d55780636a486a8e146106fd5780636b2fb124146107275761038b565b80634a62bb651461061d5780634fbee1931461064757806356a227f2146106835761038b565b8063188d16441161032257806323b872dd116102fc57806323b872dd14610551578063313ce5671461058d57806339509351146105b75780634626402b146105f35761038b565b8063188d1644146104d55780631f3fed8f146104ff578063203e727e146105295761038b565b80631171bda91161035e5780631171bda9146104315780631694505e1461045957806318160ddd146104835780631816467f146104ad5761038b565b806306fdde031461038f578063095ea7b3146103b957806310d5de53146103f55761038b565b3661038b57005b5f80fd5b34801561039a575f80fd5b506103a3610db5565b6040516103b09190613dbc565b60405180910390f35b3480156103c4575f80fd5b506103df60048036038101906103da9190613e71565b610e45565b6040516103ec9190613ec9565b60405180910390f35b348015610400575f80fd5b5061041b60048036038101906104169190613ee2565b610e62565b6040516104289190613ec9565b60405180910390f35b34801561043c575f80fd5b5061045760048036038101906104529190613f0d565b610e7f565b005b348015610464575f80fd5b5061046d610f7c565b60405161047a9190613fb8565b60405180910390f35b34801561048e575f80fd5b50610497610fa0565b6040516104a49190613fe0565b60405180910390f35b3480156104b8575f80fd5b506104d360048036038101906104ce9190613ee2565b610fa9565b005b3480156104e0575f80fd5b506104e9611068565b6040516104f69190613fe0565b60405180910390f35b34801561050a575f80fd5b5061051361106e565b6040516105209190613fe0565b60405180910390f35b348015610534575f80fd5b5061054f600480360381019061054a9190613ff9565b611074565b005b34801561055c575f80fd5b5061057760048036038101906105729190613f0d565b611183565b6040516105849190613ec9565b60405180910390f35b348015610598575f80fd5b506105a1611275565b6040516105ae919061403f565b60405180910390f35b3480156105c2575f80fd5b506105dd60048036038101906105d89190613e71565b61127d565b6040516105ea9190613ec9565b60405180910390f35b3480156105fe575f80fd5b50610607611324565b6040516106149190614067565b60405180910390f35b348015610628575f80fd5b50610631611349565b60405161063e9190613ec9565b60405180910390f35b348015610652575f80fd5b5061066d60048036038101906106689190613ee2565b61135b565b60405161067a9190613ec9565b60405180910390f35b34801561068e575f80fd5b506106a960048036038101906106a49190614080565b6113ad565b005b3480156106b6575f80fd5b506106bf6114fb565b6040516106cc9190613fe0565b60405180910390f35b3480156106e0575f80fd5b506106fb60048036038101906106f69190614174565b611501565b005b348015610708575f80fd5b5061071161160d565b60405161071e9190613fe0565b60405180910390f35b348015610732575f80fd5b5061073b611613565b6040516107489190613fe0565b60405180910390f35b34801561075c575f80fd5b50610765611619565b6040516107729190613ec9565b60405180910390f35b348015610786575f80fd5b506107a1600480360381019061079c9190613ee2565b61162c565b6040516107ae9190613fe0565b60405180910390f35b3480156107c2575f80fd5b506107cb611671565b005b3480156107d8575f80fd5b506107e16116f8565b6040516107ee9190613ec9565b60405180910390f35b348015610802575f80fd5b5061081d6004803603810190610818919061421c565b611795565b005b34801561082a575f80fd5b50610833611869565b6040516108409190614067565b60405180910390f35b348015610854575f80fd5b5061085d61188e565b60405161086a9190613fe0565b60405180910390f35b34801561087e575f80fd5b506108996004803603810190610894919061425a565b611894565b005b3480156108a6575f80fd5b506108c160048036038101906108bc9190613ee2565b611a19565b005b3480156108ce575f80fd5b506108d7611ad8565b6040516108e49190614067565b60405180910390f35b3480156108f8575f80fd5b50610901611b00565b60405161090e9190614067565b60405180910390f35b348015610922575f80fd5b5061092b611b25565b6040516109389190613fe0565b60405180910390f35b34801561094c575f80fd5b50610967600480360381019061096291906142aa565b611b2b565b005b348015610974575f80fd5b5061097d611bc4565b60405161098a9190613dbc565b60405180910390f35b34801561099e575f80fd5b506109b960048036038101906109b4919061421c565b611c54565b005b3480156109c6575f80fd5b506109cf611d6e565b6040516109dc9190613fe0565b60405180910390f35b3480156109f0575f80fd5b506109f9611d74565b604051610a069190613fe0565b60405180910390f35b348015610a1a575f80fd5b50610a23611d7a565b604051610a309190613fe0565b60405180910390f35b348015610a44575f80fd5b50610a5f6004803603810190610a5a9190613e71565b611d80565b604051610a6c9190613ec9565b60405180910390f35b348015610a80575f80fd5b50610a9b6004803603810190610a969190613e71565b611e66565b604051610aa89190613ec9565b60405180910390f35b348015610abc575f80fd5b50610ad76004803603810190610ad29190613ee2565b611e83565b005b348015610ae4575f80fd5b50610aff6004803603810190610afa9190613ee2565b611f42565b604051610b0c9190613ec9565b60405180910390f35b348015610b20575f80fd5b50610b3b6004803603810190610b3691906142d5565b611f5f565b005b348015610b48575f80fd5b50610b51612116565b604051610b5e9190613ec9565b60405180910390f35b348015610b72575f80fd5b50610b8d6004803603810190610b88919061421c565b612129565b005b348015610b9a575f80fd5b50610bb56004803603810190610bb0919061425a565b61224b565b005b348015610bc2575f80fd5b50610bdd6004803603810190610bd89190613ff9565b6123d0565b005b348015610bea575f80fd5b50610bf36124df565b604051610c009190613fe0565b60405180910390f35b348015610c14575f80fd5b50610c1d6124e5565b604051610c2a9190613fe0565b60405180910390f35b348015610c3e575f80fd5b50610c596004803603810190610c549190613ff9565b6124eb565b604051610c669190613ec9565b60405180910390f35b348015610c7a575f80fd5b50610c8361263f565b604051610c909190613fe0565b60405180910390f35b348015610ca4575f80fd5b50610cbf6004803603810190610cba9190614332565b612645565b604051610ccc9190613fe0565b60405180910390f35b348015610ce0575f80fd5b50610ce96126c7565b604051610cf69190613fe0565b60405180910390f35b348015610d0a575f80fd5b50610d256004803603810190610d2091906142aa565b6126cd565b005b348015610d32575f80fd5b50610d4d6004803603810190610d489190613ee2565b612780565b005b348015610d5a575f80fd5b50610d63612876565b604051610d709190613fe0565b60405180910390f35b348015610d84575f80fd5b50610d9f6004803603810190610d9a9190613ee2565b61287c565b604051610dac9190613fe0565b60405180910390f35b606060038054610dc49061439d565b80601f0160208091040260200160405190810160405280929190818152602001828054610df09061439d565b8015610e3b5780601f10610e1257610100808354040283529160200191610e3b565b820191905f5260205f20905b815481529060010190602001808311610e1e57829003601f168201915b5050505050905090565b5f610e58610e51612891565b8484612898565b6001905092915050565b6019602052805f5260405f205f915054906101000a900460ff1681565b610e87612891565b73ffffffffffffffffffffffffffffffffffffffff16610ea5611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290614417565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610f36929190614435565b6020604051808303815f875af1158015610f52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f769190614470565b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b610fb1612891565b73ffffffffffffffffffffffffffffffffffffffff16610fcf611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c90614417565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b5481565b60155481565b61107c612891565b73ffffffffffffffffffffffffffffffffffffffff1661109a611ad8565b73ffffffffffffffffffffffffffffffffffffffff16146110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790614417565b60405180910390fd5b670de0b6b3a76400006103e8600f611106610fa0565b61111091906144c8565b61111a9190614536565b6111249190614536565b811015611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d906145d6565b60405180910390fd5b670de0b6b3a76400008161117a91906144c8565b60098190555050565b5f61118f848484612a5b565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6111d6612891565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90614664565b60405180910390fd5b61126985611261612891565b858403612898565b60019150509392505050565b5f6012905090565b5f61131a611289612891565b848460015f611296612891565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546113159190614682565b612898565b6001905092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5f9054906101000a900460ff1681565b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b6113b5612891565b73ffffffffffffffffffffffffffffffffffffffff166113d3611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090614417565b60405180910390fd5b5f4790505f8111156114f6575f8273ffffffffffffffffffffffffffffffffffffffff166064858461145b91906144c8565b6114659190614536565b604051611471906146e2565b5f6040518083038185875af1925050503d805f81146114ab576040519150601f19603f3d011682016040523d82523d5f602084013e6114b0565b606091505b50509050806114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb90614740565b60405180910390fd5b505b505050565b60105481565b611509612891565b73ffffffffffffffffffffffffffffffffffffffff16611527611ad8565b73ffffffffffffffffffffffffffffffffffffffff161461157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490614417565b60405180910390fd5b5f8484905011801561159457508383905082829050145b61159c575f80fd5b5f3390505f5b85859050811015611605576115f8828787848181106115c4576115c361475e565b5b90506020020160208101906115d99190613ee2565b8686858181106115ec576115eb61475e565b5b90506020020135612a5b565b80806001019150506115a2565b505050505050565b60115481565b60145481565b600c60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611679612891565b73ffffffffffffffffffffffffffffffffffffffff16611697611ad8565b73ffffffffffffffffffffffffffffffffffffffff16146116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e490614417565b60405180910390fd5b6116f65f61354e565b565b5f611701612891565b73ffffffffffffffffffffffffffffffffffffffff1661171f611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90614417565b60405180910390fd5b5f600c5f6101000a81548160ff0219169083151502179055506001905090565b61179d612891565b73ffffffffffffffffffffffffffffffffffffffff166117bb611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890614417565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b61189c612891565b73ffffffffffffffffffffffffffffffffffffffff166118ba611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190790614417565b60405180910390fd5b600a831115611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b906147fb565b60405180910390fd5b600a821115611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90614889565b60405180910390fd5b600f8111156119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d390614917565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e54611a049190614682565b611a0e9190614682565b600d81905550505050565b611a21612891565b73ffffffffffffffffffffffffffffffffffffffff16611a3f611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90614417565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611b33612891565b73ffffffffffffffffffffffffffffffffffffffff16611b51611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e90614417565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b606060048054611bd39061439d565b80601f0160208091040260200160405190810160405280929190818152602001828054611bff9061439d565b8015611c4a5780601f10611c2157610100808354040283529160200191611c4a565b820191905f5260205f20905b815481529060010190602001808311611c2d57829003601f168201915b5050505050905090565b611c5c612891565b73ffffffffffffffffffffffffffffffffffffffff16611c7a611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc790614417565b60405180910390fd5b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600f5481565b60165481565b60135481565b5f8060015f611d8d612891565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e906149a5565b60405180910390fd5b611e5b611e52612891565b85858403612898565b600191505092915050565b5f611e79611e72612891565b8484612a5b565b6001905092915050565b611e8b612891565b73ffffffffffffffffffffffffffffffffffffffff16611ea9611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690614417565b60405180910390fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a602052805f5260405f205f915054906101000a900460ff1681565b611f67612891565b73ffffffffffffffffffffffffffffffffffffffff16611f85611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290614417565b60405180910390fd5b5f5b8383905081101561211057811561200a57601b5f815480929190612000906149c3565b919050555061208e565b5f601c5f8686858181106120215761202061475e565b5b90506020020160208101906120369190613ee2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541461208d57601b5f81548092919061208790614a0a565b91905055505b5b81612099575f61209b565b435b601c5f8686858181106120b1576120b061475e565b5b90506020020160208101906120c69190613ee2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508080600101915050611fdd565b50505050565b600c60019054906101000a900460ff1681565b612131612891565b73ffffffffffffffffffffffffffffffffffffffff1661214f611ad8565b73ffffffffffffffffffffffffffffffffffffffff16146121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90614417565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161223f9190613ec9565b60405180910390a25050565b612253612891565b73ffffffffffffffffffffffffffffffffffffffff16612271611ad8565b73ffffffffffffffffffffffffffffffffffffffff16146122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be90614417565b60405180910390fd5b600a83111561230b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612302906147fb565b60405180910390fd5b600a82111561234f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234690614889565b60405180910390fd5b600f811115612393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238a90614917565b60405180910390fd5b8260128190555081601381905550806014819055506014546013546012546123bb9190614682565b6123c59190614682565b601181905550505050565b6123d8612891565b73ffffffffffffffffffffffffffffffffffffffff166123f6611ad8565b73ffffffffffffffffffffffffffffffffffffffff161461244c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244390614417565b60405180910390fd5b670de0b6b3a76400006103e8600f612462610fa0565b61246c91906144c8565b6124769190614536565b6124809190614536565b8110156124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b990614aa1565b60405180910390fd5b670de0b6b3a7640000816124d691906144c8565b600b8190555050565b60095481565b60175481565b5f6124f4612891565b73ffffffffffffffffffffffffffffffffffffffff16612512611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614612568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255f90614417565b60405180910390fd5b620186a06001612576610fa0565b61258091906144c8565b61258a9190614536565b8210156125cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c390614b2f565b60405180910390fd5b6103e860056125d9610fa0565b6125e391906144c8565b6125ed9190614536565b82111561262f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262690614bbd565b60405180910390fd5b81600a8190555060019050919050565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600a5481565b6126d5612891565b73ffffffffffffffffffffffffffffffffffffffff166126f3611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614612749576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274090614417565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555080600c60026101000a81548160ff02191690831515021790555050565b612788612891565b73ffffffffffffffffffffffffffffffffffffffff166127a6611ad8565b73ffffffffffffffffffffffffffffffffffffffff16146127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f390614417565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361286a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286190614c4b565b60405180910390fd5b6128738161354e565b50565b600b5481565b601c602052805f5260405f205f915090505481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fd90614cd9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296b90614d67565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a4e9190613fe0565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac090614df5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2e90614e83565b60405180910390fd5b5f601c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414612bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bad90614eeb565b60405180910390fd5b5f8103612bcd57612bc883835f613611565b613549565b5f600560149054906101000a900460ff1615905060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612c7c575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612c85575f90505b5f8115612ebe57601a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612ce357505f601154115b15612d9f57606460115484612cf891906144c8565b612d029190614536565b905060115460125482612d1591906144c8565b612d1f9190614536565b60155f828254612d2f9190614682565b9250508190555060115460135482612d4791906144c8565b612d519190614536565b60165f828254612d619190614682565b9250508190555060115460145482612d7991906144c8565b612d839190614536565b60175f828254612d939190614682565b92505081905550612eaf565b601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612df657505f600d54115b15612eae576064600d5484612e0b91906144c8565b612e159190614536565b9050600d54600e5482612e2891906144c8565b612e329190614536565b60155f828254612e429190614682565b92505081905550600d54600f5482612e5a91906144c8565b612e649190614536565b60165f828254612e749190614682565b92505081905550600d5460105482612e8c91906144c8565b612e969190614536565b60175f828254612ea69190614682565b925050819055505b5b8083612ebb9190614f09565b92505b600c5f9054906101000a900460ff16156133a257612eda611ad8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015612f485750612f18611ad8565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612f8057505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612fba575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612fd35750600560149054906101000a900460ff16155b156133a157600c60019054906101000a900460ff166130c75760185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613087575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6130c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bd90614f86565b60405180910390fd5b5b601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613164575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561320b576009548311156131ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a590615014565b60405180910390fd5b600b546131ba8561162c565b846131c59190614682565b1115613206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fd9061507c565b60405180910390fd5b6133a0565b601a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156132a8575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156132f7576009548311156132f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e99061510a565b60405180910390fd5b61339f565b60195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661339e57600b546133518561162c565b8461335c9190614682565b111561339d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133949061507c565b60405180910390fd5b5b5b5b5b5b5f6133ac3061162c565b90505f600a5482101590508080156133d05750600c60029054906101000a900460ff165b80156133e95750600560149054906101000a900460ff16155b801561343c5750601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561348f575060185f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156134e2575060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613525576001600560146101000a81548160ff02191690831515021790555061350a613886565b5f600560146101000a81548160ff0219169083151502179055505b5f83111561353957613538873085613611565b5b613544878787613611565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361367f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367690614df5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036136ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e490614e83565b60405180910390fd5b6136f8838383613b0f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561377b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377290615198565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546138099190614682565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161386d9190613fe0565b60405180910390a3613880848484613b14565b50505050565b5f60175460165460155461389a9190614682565b6138a49190614682565b90505f6138b03061162c565b90505f600a5490506028600a546138c791906144c8565b8211156138e0576028600a546138dd91906144c8565b90505b5f4790506138ed82613b19565b5f81476138fa9190614f09565b90505f856015548361390c91906144c8565b6139169190614536565b90505f866016548461392891906144c8565b6139329190614536565b90505f876017548561394491906144c8565b61394e9190614536565b90505f6015819055505f6016819055505f6017819055505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16846040516139ab906146e2565b5f6040518083038185875af1925050503d805f81146139e5576040519150601f19603f3d011682016040523d82523d5f602084013e6139ea565b606091505b50508091505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051613a35906146e2565b5f6040518083038185875af1925050503d805f8114613a6f576040519150601f19603f3d011682016040523d82523d5f602084013e613a74565b606091505b50508091505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613abf906146e2565b5f6040518083038185875af1925050503d805f8114613af9576040519150601f19603f3d011682016040523d82523d5f602084013e613afe565b606091505b505080915050505050505050505050565b505050565b505050565b5f600267ffffffffffffffff811115613b3557613b346151b6565b5b604051908082528060200260200182016040528015613b635781602001602082028036833780820191505090505b50905030815f81518110613b7a57613b7961475e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c1d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c4191906151f7565b81600181518110613c5557613c5461475e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613cba307f000000000000000000000000000000000000000000000000000000000000000084612898565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613d1b959493929190615312565b5f604051808303815f87803b158015613d32575f80fd5b505af1158015613d44573d5f803e3d5ffd5b505050505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f613d8e82613d4c565b613d988185613d56565b9350613da8818560208601613d66565b613db181613d74565b840191505092915050565b5f6020820190508181035f830152613dd48184613d84565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613e0d82613de4565b9050919050565b613e1d81613e03565b8114613e27575f80fd5b50565b5f81359050613e3881613e14565b92915050565b5f819050919050565b613e5081613e3e565b8114613e5a575f80fd5b50565b5f81359050613e6b81613e47565b92915050565b5f8060408385031215613e8757613e86613ddc565b5b5f613e9485828601613e2a565b9250506020613ea585828601613e5d565b9150509250929050565b5f8115159050919050565b613ec381613eaf565b82525050565b5f602082019050613edc5f830184613eba565b92915050565b5f60208284031215613ef757613ef6613ddc565b5b5f613f0484828501613e2a565b91505092915050565b5f805f60608486031215613f2457613f23613ddc565b5b5f613f3186828701613e2a565b9350506020613f4286828701613e2a565b9250506040613f5386828701613e5d565b9150509250925092565b5f819050919050565b5f613f80613f7b613f7684613de4565b613f5d565b613de4565b9050919050565b5f613f9182613f66565b9050919050565b5f613fa282613f87565b9050919050565b613fb281613f98565b82525050565b5f602082019050613fcb5f830184613fa9565b92915050565b613fda81613e3e565b82525050565b5f602082019050613ff35f830184613fd1565b92915050565b5f6020828403121561400e5761400d613ddc565b5b5f61401b84828501613e5d565b91505092915050565b5f60ff82169050919050565b61403981614024565b82525050565b5f6020820190506140525f830184614030565b92915050565b61406181613e03565b82525050565b5f60208201905061407a5f830184614058565b92915050565b5f806040838503121561409657614095613ddc565b5b5f6140a385828601613e5d565b92505060206140b485828601613e2a565b9150509250929050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126140df576140de6140be565b5b8235905067ffffffffffffffff8111156140fc576140fb6140c2565b5b602083019150836020820283011115614118576141176140c6565b5b9250929050565b5f8083601f840112614134576141336140be565b5b8235905067ffffffffffffffff811115614151576141506140c2565b5b60208301915083602082028301111561416d5761416c6140c6565b5b9250929050565b5f805f806040858703121561418c5761418b613ddc565b5b5f85013567ffffffffffffffff8111156141a9576141a8613de0565b5b6141b5878288016140ca565b9450945050602085013567ffffffffffffffff8111156141d8576141d7613de0565b5b6141e48782880161411f565b925092505092959194509250565b6141fb81613eaf565b8114614205575f80fd5b50565b5f81359050614216816141f2565b92915050565b5f806040838503121561423257614231613ddc565b5b5f61423f85828601613e2a565b925050602061425085828601614208565b9150509250929050565b5f805f6060848603121561427157614270613ddc565b5b5f61427e86828701613e5d565b935050602061428f86828701613e5d565b92505060406142a086828701613e5d565b9150509250925092565b5f602082840312156142bf576142be613ddc565b5b5f6142cc84828501614208565b91505092915050565b5f805f604084860312156142ec576142eb613ddc565b5b5f84013567ffffffffffffffff81111561430957614308613de0565b5b614315868287016140ca565b9350935050602061432886828701614208565b9150509250925092565b5f806040838503121561434857614347613ddc565b5b5f61435585828601613e2a565b925050602061436685828601613e2a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806143b457607f821691505b6020821081036143c7576143c6614370565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614401602083613d56565b915061440c826143cd565b602082019050919050565b5f6020820190508181035f83015261442e816143f5565b9050919050565b5f6040820190506144485f830185614058565b6144556020830184613fd1565b9392505050565b5f8151905061446a816141f2565b92915050565b5f6020828403121561448557614484613ddc565b5b5f6144928482850161445c565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6144d282613e3e565b91506144dd83613e3e565b92508282026144eb81613e3e565b915082820484148315176145025761450161449b565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61454082613e3e565b915061454b83613e3e565b92508261455b5761455a614509565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20312e35250000000000000000000000000000000000602082015250565b5f6145c0602f83613d56565b91506145cb82614566565b604082019050919050565b5f6020820190508181035f8301526145ed816145b4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61464e602883613d56565b9150614659826145f4565b604082019050919050565b5f6020820190508181035f83015261467b81614642565b9050919050565b5f61468c82613e3e565b915061469783613e3e565b92508282019050808211156146af576146ae61449b565b5b92915050565b5f81905092915050565b50565b5f6146cd5f836146b5565b91506146d8826146bf565b5f82019050919050565b5f6146ec826146c2565b9150819050919050565b7f4661696c656420746f207472616e736665722066756e647300000000000000005f82015250565b5f61472a601883613d56565b9150614735826146f6565b602082019050919050565b5f6020820190508181035f8301526147578161471e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f43616e6e6f7420736574206d61726b6574696e674665652068696768657220745f8201527f68616e2031302500000000000000000000000000000000000000000000000000602082015250565b5f6147e5602783613d56565b91506147f08261478b565b604082019050919050565b5f6020820190508181035f830152614812816147d9565b9050919050565b7f43616e6e6f74207365742064657646656520686967686572207468616e2031305f8201527f2500000000000000000000000000000000000000000000000000000000000000602082015250565b5f614873602183613d56565b915061487e82614819565b604082019050919050565b5f6020820190508181035f8301526148a081614867565b9050919050565b7f43616e6e6f7420736574207472656173757279466565206869676865722074685f8201527f616e203135250000000000000000000000000000000000000000000000000000602082015250565b5f614901602683613d56565b915061490c826148a7565b604082019050919050565b5f6020820190508181035f83015261492e816148f5565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61498f602583613d56565b915061499a82614935565b604082019050919050565b5f6020820190508181035f8301526149bc81614983565b9050919050565b5f6149cd82613e3e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036149ff576149fe61449b565b5b600182019050919050565b5f614a1482613e3e565b91505f8203614a2657614a2561449b565b5b600182039050919050565b7f43616e6e6f7420736574206d617857616c6c6574416d6f756e74206c6f7765725f8201527f207468616e20312e352500000000000000000000000000000000000000000000602082015250565b5f614a8b602a83613d56565b9150614a9682614a31565b604082019050919050565b5f6020820190508181035f830152614ab881614a7f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f614b19603583613d56565b9150614b2482614abf565b604082019050919050565b5f6020820190508181035f830152614b4681614b0d565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614ba7603483613d56565b9150614bb282614b4d565b604082019050919050565b5f6020820190508181035f830152614bd481614b9b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614c35602683613d56565b9150614c4082614bdb565b604082019050919050565b5f6020820190508181035f830152614c6281614c29565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614cc3602483613d56565b9150614cce82614c69565b604082019050919050565b5f6020820190508181035f830152614cf081614cb7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614d51602283613d56565b9150614d5c82614cf7565b604082019050919050565b5f6020820190508181035f830152614d7e81614d45565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614ddf602583613d56565b9150614dea82614d85565b604082019050919050565b5f6020820190508181035f830152614e0c81614dd3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614e6d602383613d56565b9150614e7882614e13565b604082019050919050565b5f6020820190508181035f830152614e9a81614e61565b9050919050565b7f57616c6c657420626c61636b6c697374656421000000000000000000000000005f82015250565b5f614ed5601383613d56565b9150614ee082614ea1565b602082019050919050565b5f6020820190508181035f830152614f0281614ec9565b9050919050565b5f614f1382613e3e565b9150614f1e83613e3e565b9250828203905081811115614f3657614f3561449b565b5b92915050565b7f54726164696e67206973206e6f742061637469766500000000000000000000005f82015250565b5f614f70601583613d56565b9150614f7b82614f3c565b602082019050919050565b5f6020820190508181035f830152614f9d81614f64565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61782074780000000000000000000000000000000000000000000000000000602082015250565b5f614ffe602683613d56565b915061500982614fa4565b604082019050919050565b5f6020820190508181035f83015261502b81614ff2565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615066601383613d56565b915061507182615032565b602082019050919050565b5f6020820190508181035f8301526150938161505a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d617820747800000000000000000000000000000000000000000000000000602082015250565b5f6150f4602783613d56565b91506150ff8261509a565b604082019050919050565b5f6020820190508181035f830152615121816150e8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615182602683613d56565b915061518d82615128565b604082019050919050565b5f6020820190508181035f8301526151af81615176565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f815190506151f181613e14565b92915050565b5f6020828403121561520c5761520b613ddc565b5b5f615219848285016151e3565b91505092915050565b5f819050919050565b5f61524561524061523b84615222565b613f5d565b613e3e565b9050919050565b6152558161522b565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61528d81613e03565b82525050565b5f61529e8383615284565b60208301905092915050565b5f602082019050919050565b5f6152c08261525b565b6152ca8185615265565b93506152d583615275565b805f5b838110156153055781516152ec8882615293565b97506152f7836152aa565b9250506001810190506152d8565b5085935050505092915050565b5f60a0820190506153255f830188613fd1565b615332602083018761524c565b818103604083015261534481866152b6565b90506153536060830185614058565b6153606080830184613fd1565b969550505050505056fea2646970667358221220ceb08c6c2afb387b0142ef526035967477f8cb63fdbb1c0154bd9b37cefc218a64736f6c63430008190033

Deployed Bytecode

0x608060405260043610610384575f3560e01c8063809d458d116101d0578063bb2188b411610101578063d257b34f1161009f578063f275f64b1161006e578063f275f64b14610cff578063f2fde38b14610d27578063f8b45b0514610d4f578063f9f92be414610d795761038b565b8063d257b34f14610c33578063d85ba06314610c6f578063dd62ed3e14610c99578063e2f4560514610cd55761038b565b8063c17b5b8c116100db578063c17b5b8c14610b8f578063c18bc19514610bb7578063c8c8ebe414610bdf578063cc2ffe7c14610c095761038b565b8063bb2188b414610b15578063bbc0c74214610b3d578063c024666814610b675761038b565b80639c3b4fdc1161016e578063a457c2d711610148578063a457c2d714610a39578063a9059cbb14610a75578063aacebbe314610ab1578063b62496f514610ad95761038b565b80639c3b4fdc146109bb5780639fccce32146109e5578063a0d82dc514610a0f5761038b565b806392136913116101aa5780639213691314610917578063924de9b71461094157806395d89b41146109695780639a7a23d6146109935761038b565b8063809d458d1461089b5780638da5cb5b146108c35780638ea5220f146108ed5761038b565b80634a62bb65116102b55780636ddd1713116102535780637571336a116102225780637571336a146107f757806375f0a8741461081f5780637bce5a04146108495780638095d564146108735761038b565b80636ddd17131461075157806370a082311461077b578063715018a6146107b7578063751039fc146107cd5761038b565b80635c068a8c1161028f5780635c068a8c146106ab57806367243482146106d55780636a486a8e146106fd5780636b2fb124146107275761038b565b80634a62bb651461061d5780634fbee1931461064757806356a227f2146106835761038b565b8063188d16441161032257806323b872dd116102fc57806323b872dd14610551578063313ce5671461058d57806339509351146105b75780634626402b146105f35761038b565b8063188d1644146104d55780631f3fed8f146104ff578063203e727e146105295761038b565b80631171bda91161035e5780631171bda9146104315780631694505e1461045957806318160ddd146104835780631816467f146104ad5761038b565b806306fdde031461038f578063095ea7b3146103b957806310d5de53146103f55761038b565b3661038b57005b5f80fd5b34801561039a575f80fd5b506103a3610db5565b6040516103b09190613dbc565b60405180910390f35b3480156103c4575f80fd5b506103df60048036038101906103da9190613e71565b610e45565b6040516103ec9190613ec9565b60405180910390f35b348015610400575f80fd5b5061041b60048036038101906104169190613ee2565b610e62565b6040516104289190613ec9565b60405180910390f35b34801561043c575f80fd5b5061045760048036038101906104529190613f0d565b610e7f565b005b348015610464575f80fd5b5061046d610f7c565b60405161047a9190613fb8565b60405180910390f35b34801561048e575f80fd5b50610497610fa0565b6040516104a49190613fe0565b60405180910390f35b3480156104b8575f80fd5b506104d360048036038101906104ce9190613ee2565b610fa9565b005b3480156104e0575f80fd5b506104e9611068565b6040516104f69190613fe0565b60405180910390f35b34801561050a575f80fd5b5061051361106e565b6040516105209190613fe0565b60405180910390f35b348015610534575f80fd5b5061054f600480360381019061054a9190613ff9565b611074565b005b34801561055c575f80fd5b5061057760048036038101906105729190613f0d565b611183565b6040516105849190613ec9565b60405180910390f35b348015610598575f80fd5b506105a1611275565b6040516105ae919061403f565b60405180910390f35b3480156105c2575f80fd5b506105dd60048036038101906105d89190613e71565b61127d565b6040516105ea9190613ec9565b60405180910390f35b3480156105fe575f80fd5b50610607611324565b6040516106149190614067565b60405180910390f35b348015610628575f80fd5b50610631611349565b60405161063e9190613ec9565b60405180910390f35b348015610652575f80fd5b5061066d60048036038101906106689190613ee2565b61135b565b60405161067a9190613ec9565b60405180910390f35b34801561068e575f80fd5b506106a960048036038101906106a49190614080565b6113ad565b005b3480156106b6575f80fd5b506106bf6114fb565b6040516106cc9190613fe0565b60405180910390f35b3480156106e0575f80fd5b506106fb60048036038101906106f69190614174565b611501565b005b348015610708575f80fd5b5061071161160d565b60405161071e9190613fe0565b60405180910390f35b348015610732575f80fd5b5061073b611613565b6040516107489190613fe0565b60405180910390f35b34801561075c575f80fd5b50610765611619565b6040516107729190613ec9565b60405180910390f35b348015610786575f80fd5b506107a1600480360381019061079c9190613ee2565b61162c565b6040516107ae9190613fe0565b60405180910390f35b3480156107c2575f80fd5b506107cb611671565b005b3480156107d8575f80fd5b506107e16116f8565b6040516107ee9190613ec9565b60405180910390f35b348015610802575f80fd5b5061081d6004803603810190610818919061421c565b611795565b005b34801561082a575f80fd5b50610833611869565b6040516108409190614067565b60405180910390f35b348015610854575f80fd5b5061085d61188e565b60405161086a9190613fe0565b60405180910390f35b34801561087e575f80fd5b506108996004803603810190610894919061425a565b611894565b005b3480156108a6575f80fd5b506108c160048036038101906108bc9190613ee2565b611a19565b005b3480156108ce575f80fd5b506108d7611ad8565b6040516108e49190614067565b60405180910390f35b3480156108f8575f80fd5b50610901611b00565b60405161090e9190614067565b60405180910390f35b348015610922575f80fd5b5061092b611b25565b6040516109389190613fe0565b60405180910390f35b34801561094c575f80fd5b50610967600480360381019061096291906142aa565b611b2b565b005b348015610974575f80fd5b5061097d611bc4565b60405161098a9190613dbc565b60405180910390f35b34801561099e575f80fd5b506109b960048036038101906109b4919061421c565b611c54565b005b3480156109c6575f80fd5b506109cf611d6e565b6040516109dc9190613fe0565b60405180910390f35b3480156109f0575f80fd5b506109f9611d74565b604051610a069190613fe0565b60405180910390f35b348015610a1a575f80fd5b50610a23611d7a565b604051610a309190613fe0565b60405180910390f35b348015610a44575f80fd5b50610a5f6004803603810190610a5a9190613e71565b611d80565b604051610a6c9190613ec9565b60405180910390f35b348015610a80575f80fd5b50610a9b6004803603810190610a969190613e71565b611e66565b604051610aa89190613ec9565b60405180910390f35b348015610abc575f80fd5b50610ad76004803603810190610ad29190613ee2565b611e83565b005b348015610ae4575f80fd5b50610aff6004803603810190610afa9190613ee2565b611f42565b604051610b0c9190613ec9565b60405180910390f35b348015610b20575f80fd5b50610b3b6004803603810190610b3691906142d5565b611f5f565b005b348015610b48575f80fd5b50610b51612116565b604051610b5e9190613ec9565b60405180910390f35b348015610b72575f80fd5b50610b8d6004803603810190610b88919061421c565b612129565b005b348015610b9a575f80fd5b50610bb56004803603810190610bb0919061425a565b61224b565b005b348015610bc2575f80fd5b50610bdd6004803603810190610bd89190613ff9565b6123d0565b005b348015610bea575f80fd5b50610bf36124df565b604051610c009190613fe0565b60405180910390f35b348015610c14575f80fd5b50610c1d6124e5565b604051610c2a9190613fe0565b60405180910390f35b348015610c3e575f80fd5b50610c596004803603810190610c549190613ff9565b6124eb565b604051610c669190613ec9565b60405180910390f35b348015610c7a575f80fd5b50610c8361263f565b604051610c909190613fe0565b60405180910390f35b348015610ca4575f80fd5b50610cbf6004803603810190610cba9190614332565b612645565b604051610ccc9190613fe0565b60405180910390f35b348015610ce0575f80fd5b50610ce96126c7565b604051610cf69190613fe0565b60405180910390f35b348015610d0a575f80fd5b50610d256004803603810190610d2091906142aa565b6126cd565b005b348015610d32575f80fd5b50610d4d6004803603810190610d489190613ee2565b612780565b005b348015610d5a575f80fd5b50610d63612876565b604051610d709190613fe0565b60405180910390f35b348015610d84575f80fd5b50610d9f6004803603810190610d9a9190613ee2565b61287c565b604051610dac9190613fe0565b60405180910390f35b606060038054610dc49061439d565b80601f0160208091040260200160405190810160405280929190818152602001828054610df09061439d565b8015610e3b5780601f10610e1257610100808354040283529160200191610e3b565b820191905f5260205f20905b815481529060010190602001808311610e1e57829003601f168201915b5050505050905090565b5f610e58610e51612891565b8484612898565b6001905092915050565b6019602052805f5260405f205f915054906101000a900460ff1681565b610e87612891565b73ffffffffffffffffffffffffffffffffffffffff16610ea5611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290614417565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610f36929190614435565b6020604051808303815f875af1158015610f52573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f769190614470565b50505050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b610fb1612891565b73ffffffffffffffffffffffffffffffffffffffff16610fcf611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c90614417565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601b5481565b60155481565b61107c612891565b73ffffffffffffffffffffffffffffffffffffffff1661109a611ad8565b73ffffffffffffffffffffffffffffffffffffffff16146110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790614417565b60405180910390fd5b670de0b6b3a76400006103e8600f611106610fa0565b61111091906144c8565b61111a9190614536565b6111249190614536565b811015611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d906145d6565b60405180910390fd5b670de0b6b3a76400008161117a91906144c8565b60098190555050565b5f61118f848484612a5b565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6111d6612891565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124c90614664565b60405180910390fd5b61126985611261612891565b858403612898565b60019150509392505050565b5f6012905090565b5f61131a611289612891565b848460015f611296612891565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546113159190614682565b612898565b6001905092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5f9054906101000a900460ff1681565b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b6113b5612891565b73ffffffffffffffffffffffffffffffffffffffff166113d3611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090614417565b60405180910390fd5b5f4790505f8111156114f6575f8273ffffffffffffffffffffffffffffffffffffffff166064858461145b91906144c8565b6114659190614536565b604051611471906146e2565b5f6040518083038185875af1925050503d805f81146114ab576040519150601f19603f3d011682016040523d82523d5f602084013e6114b0565b606091505b50509050806114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb90614740565b60405180910390fd5b505b505050565b60105481565b611509612891565b73ffffffffffffffffffffffffffffffffffffffff16611527611ad8565b73ffffffffffffffffffffffffffffffffffffffff161461157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490614417565b60405180910390fd5b5f8484905011801561159457508383905082829050145b61159c575f80fd5b5f3390505f5b85859050811015611605576115f8828787848181106115c4576115c361475e565b5b90506020020160208101906115d99190613ee2565b8686858181106115ec576115eb61475e565b5b90506020020135612a5b565b80806001019150506115a2565b505050505050565b60115481565b60145481565b600c60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611679612891565b73ffffffffffffffffffffffffffffffffffffffff16611697611ad8565b73ffffffffffffffffffffffffffffffffffffffff16146116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e490614417565b60405180910390fd5b6116f65f61354e565b565b5f611701612891565b73ffffffffffffffffffffffffffffffffffffffff1661171f611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90614417565b60405180910390fd5b5f600c5f6101000a81548160ff0219169083151502179055506001905090565b61179d612891565b73ffffffffffffffffffffffffffffffffffffffff166117bb611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890614417565b60405180910390fd5b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b61189c612891565b73ffffffffffffffffffffffffffffffffffffffff166118ba611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190790614417565b60405180910390fd5b600a831115611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b906147fb565b60405180910390fd5b600a821115611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f90614889565b60405180910390fd5b600f8111156119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d390614917565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e54611a049190614682565b611a0e9190614682565b600d81905550505050565b611a21612891565b73ffffffffffffffffffffffffffffffffffffffff16611a3f611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90614417565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611b33612891565b73ffffffffffffffffffffffffffffffffffffffff16611b51611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e90614417565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b606060048054611bd39061439d565b80601f0160208091040260200160405190810160405280929190818152602001828054611bff9061439d565b8015611c4a5780601f10611c2157610100808354040283529160200191611c4a565b820191905f5260205f20905b815481529060010190602001808311611c2d57829003601f168201915b5050505050905090565b611c5c612891565b73ffffffffffffffffffffffffffffffffffffffff16611c7a611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc790614417565b60405180910390fd5b80601a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600f5481565b60165481565b60135481565b5f8060015f611d8d612891565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e906149a5565b60405180910390fd5b611e5b611e52612891565b85858403612898565b600191505092915050565b5f611e79611e72612891565b8484612a5b565b6001905092915050565b611e8b612891565b73ffffffffffffffffffffffffffffffffffffffff16611ea9611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef690614417565b60405180910390fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601a602052805f5260405f205f915054906101000a900460ff1681565b611f67612891565b73ffffffffffffffffffffffffffffffffffffffff16611f85611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614611fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd290614417565b60405180910390fd5b5f5b8383905081101561211057811561200a57601b5f815480929190612000906149c3565b919050555061208e565b5f601c5f8686858181106120215761202061475e565b5b90506020020160208101906120369190613ee2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541461208d57601b5f81548092919061208790614a0a565b91905055505b5b81612099575f61209b565b435b601c5f8686858181106120b1576120b061475e565b5b90506020020160208101906120c69190613ee2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508080600101915050611fdd565b50505050565b600c60019054906101000a900460ff1681565b612131612891565b73ffffffffffffffffffffffffffffffffffffffff1661214f611ad8565b73ffffffffffffffffffffffffffffffffffffffff16146121a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219c90614417565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161223f9190613ec9565b60405180910390a25050565b612253612891565b73ffffffffffffffffffffffffffffffffffffffff16612271611ad8565b73ffffffffffffffffffffffffffffffffffffffff16146122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be90614417565b60405180910390fd5b600a83111561230b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612302906147fb565b60405180910390fd5b600a82111561234f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234690614889565b60405180910390fd5b600f811115612393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238a90614917565b60405180910390fd5b8260128190555081601381905550806014819055506014546013546012546123bb9190614682565b6123c59190614682565b601181905550505050565b6123d8612891565b73ffffffffffffffffffffffffffffffffffffffff166123f6611ad8565b73ffffffffffffffffffffffffffffffffffffffff161461244c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244390614417565b60405180910390fd5b670de0b6b3a76400006103e8600f612462610fa0565b61246c91906144c8565b6124769190614536565b6124809190614536565b8110156124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b990614aa1565b60405180910390fd5b670de0b6b3a7640000816124d691906144c8565b600b8190555050565b60095481565b60175481565b5f6124f4612891565b73ffffffffffffffffffffffffffffffffffffffff16612512611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614612568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255f90614417565b60405180910390fd5b620186a06001612576610fa0565b61258091906144c8565b61258a9190614536565b8210156125cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c390614b2f565b60405180910390fd5b6103e860056125d9610fa0565b6125e391906144c8565b6125ed9190614536565b82111561262f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262690614bbd565b60405180910390fd5b81600a8190555060019050919050565b600d5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600a5481565b6126d5612891565b73ffffffffffffffffffffffffffffffffffffffff166126f3611ad8565b73ffffffffffffffffffffffffffffffffffffffff1614612749576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274090614417565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555080600c60026101000a81548160ff02191690831515021790555050565b612788612891565b73ffffffffffffffffffffffffffffffffffffffff166127a6611ad8565b73ffffffffffffffffffffffffffffffffffffffff16146127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f390614417565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361286a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286190614c4b565b60405180910390fd5b6128738161354e565b50565b600b5481565b601c602052805f5260405f205f915090505481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fd90614cd9565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296b90614d67565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a4e9190613fe0565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac090614df5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2e90614e83565b60405180910390fd5b5f601c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205414612bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bad90614eeb565b60405180910390fd5b5f8103612bcd57612bc883835f613611565b613549565b5f600560149054906101000a900460ff1615905060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612c7c575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612c85575f90505b5f8115612ebe57601a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612ce357505f601154115b15612d9f57606460115484612cf891906144c8565b612d029190614536565b905060115460125482612d1591906144c8565b612d1f9190614536565b60155f828254612d2f9190614682565b9250508190555060115460135482612d4791906144c8565b612d519190614536565b60165f828254612d619190614682565b9250508190555060115460145482612d7991906144c8565b612d839190614536565b60175f828254612d939190614682565b92505081905550612eaf565b601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015612df657505f600d54115b15612eae576064600d5484612e0b91906144c8565b612e159190614536565b9050600d54600e5482612e2891906144c8565b612e329190614536565b60155f828254612e429190614682565b92505081905550600d54600f5482612e5a91906144c8565b612e649190614536565b60165f828254612e749190614682565b92505081905550600d5460105482612e8c91906144c8565b612e969190614536565b60175f828254612ea69190614682565b925050819055505b5b8083612ebb9190614f09565b92505b600c5f9054906101000a900460ff16156133a257612eda611ad8565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015612f485750612f18611ad8565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612f8057505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612fba575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612fd35750600560149054906101000a900460ff16155b156133a157600c60019054906101000a900460ff166130c75760185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680613087575060185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b6130c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130bd90614f86565b60405180910390fd5b5b601a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015613164575060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561320b576009548311156131ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a590615014565b60405180910390fd5b600b546131ba8561162c565b846131c59190614682565b1115613206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fd9061507c565b60405180910390fd5b6133a0565b601a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156132a8575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156132f7576009548311156132f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e99061510a565b60405180910390fd5b61339f565b60195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661339e57600b546133518561162c565b8461335c9190614682565b111561339d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133949061507c565b60405180910390fd5b5b5b5b5b5b5f6133ac3061162c565b90505f600a5482101590508080156133d05750600c60029054906101000a900460ff165b80156133e95750600560149054906101000a900460ff16155b801561343c5750601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561348f575060185f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b80156134e2575060185f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15613525576001600560146101000a81548160ff02191690831515021790555061350a613886565b5f600560146101000a81548160ff0219169083151502179055505b5f83111561353957613538873085613611565b5b613544878787613611565b505050505b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361367f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161367690614df5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036136ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e490614e83565b60405180910390fd5b6136f8838383613b0f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561377b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377290615198565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546138099190614682565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161386d9190613fe0565b60405180910390a3613880848484613b14565b50505050565b5f60175460165460155461389a9190614682565b6138a49190614682565b90505f6138b03061162c565b90505f600a5490506028600a546138c791906144c8565b8211156138e0576028600a546138dd91906144c8565b90505b5f4790506138ed82613b19565b5f81476138fa9190614f09565b90505f856015548361390c91906144c8565b6139169190614536565b90505f866016548461392891906144c8565b6139329190614536565b90505f876017548561394491906144c8565b61394e9190614536565b90505f6015819055505f6016819055505f6017819055505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16846040516139ab906146e2565b5f6040518083038185875af1925050503d805f81146139e5576040519150601f19603f3d011682016040523d82523d5f602084013e6139ea565b606091505b50508091505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051613a35906146e2565b5f6040518083038185875af1925050503d805f8114613a6f576040519150601f19603f3d011682016040523d82523d5f602084013e613a74565b606091505b50508091505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613abf906146e2565b5f6040518083038185875af1925050503d805f8114613af9576040519150601f19603f3d011682016040523d82523d5f602084013e613afe565b606091505b505080915050505050505050505050565b505050565b505050565b5f600267ffffffffffffffff811115613b3557613b346151b6565b5b604051908082528060200260200182016040528015613b635781602001602082028036833780820191505090505b50905030815f81518110613b7a57613b7961475e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c1d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c4191906151f7565b81600181518110613c5557613c5461475e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613cba307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612898565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401613d1b959493929190615312565b5f604051808303815f87803b158015613d32575f80fd5b505af1158015613d44573d5f803e3d5ffd5b505050505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f613d8e82613d4c565b613d988185613d56565b9350613da8818560208601613d66565b613db181613d74565b840191505092915050565b5f6020820190508181035f830152613dd48184613d84565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613e0d82613de4565b9050919050565b613e1d81613e03565b8114613e27575f80fd5b50565b5f81359050613e3881613e14565b92915050565b5f819050919050565b613e5081613e3e565b8114613e5a575f80fd5b50565b5f81359050613e6b81613e47565b92915050565b5f8060408385031215613e8757613e86613ddc565b5b5f613e9485828601613e2a565b9250506020613ea585828601613e5d565b9150509250929050565b5f8115159050919050565b613ec381613eaf565b82525050565b5f602082019050613edc5f830184613eba565b92915050565b5f60208284031215613ef757613ef6613ddc565b5b5f613f0484828501613e2a565b91505092915050565b5f805f60608486031215613f2457613f23613ddc565b5b5f613f3186828701613e2a565b9350506020613f4286828701613e2a565b9250506040613f5386828701613e5d565b9150509250925092565b5f819050919050565b5f613f80613f7b613f7684613de4565b613f5d565b613de4565b9050919050565b5f613f9182613f66565b9050919050565b5f613fa282613f87565b9050919050565b613fb281613f98565b82525050565b5f602082019050613fcb5f830184613fa9565b92915050565b613fda81613e3e565b82525050565b5f602082019050613ff35f830184613fd1565b92915050565b5f6020828403121561400e5761400d613ddc565b5b5f61401b84828501613e5d565b91505092915050565b5f60ff82169050919050565b61403981614024565b82525050565b5f6020820190506140525f830184614030565b92915050565b61406181613e03565b82525050565b5f60208201905061407a5f830184614058565b92915050565b5f806040838503121561409657614095613ddc565b5b5f6140a385828601613e5d565b92505060206140b485828601613e2a565b9150509250929050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126140df576140de6140be565b5b8235905067ffffffffffffffff8111156140fc576140fb6140c2565b5b602083019150836020820283011115614118576141176140c6565b5b9250929050565b5f8083601f840112614134576141336140be565b5b8235905067ffffffffffffffff811115614151576141506140c2565b5b60208301915083602082028301111561416d5761416c6140c6565b5b9250929050565b5f805f806040858703121561418c5761418b613ddc565b5b5f85013567ffffffffffffffff8111156141a9576141a8613de0565b5b6141b5878288016140ca565b9450945050602085013567ffffffffffffffff8111156141d8576141d7613de0565b5b6141e48782880161411f565b925092505092959194509250565b6141fb81613eaf565b8114614205575f80fd5b50565b5f81359050614216816141f2565b92915050565b5f806040838503121561423257614231613ddc565b5b5f61423f85828601613e2a565b925050602061425085828601614208565b9150509250929050565b5f805f6060848603121561427157614270613ddc565b5b5f61427e86828701613e5d565b935050602061428f86828701613e5d565b92505060406142a086828701613e5d565b9150509250925092565b5f602082840312156142bf576142be613ddc565b5b5f6142cc84828501614208565b91505092915050565b5f805f604084860312156142ec576142eb613ddc565b5b5f84013567ffffffffffffffff81111561430957614308613de0565b5b614315868287016140ca565b9350935050602061432886828701614208565b9150509250925092565b5f806040838503121561434857614347613ddc565b5b5f61435585828601613e2a565b925050602061436685828601613e2a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806143b457607f821691505b6020821081036143c7576143c6614370565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f614401602083613d56565b915061440c826143cd565b602082019050919050565b5f6020820190508181035f83015261442e816143f5565b9050919050565b5f6040820190506144485f830185614058565b6144556020830184613fd1565b9392505050565b5f8151905061446a816141f2565b92915050565b5f6020828403121561448557614484613ddc565b5b5f6144928482850161445c565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6144d282613e3e565b91506144dd83613e3e565b92508282026144eb81613e3e565b915082820484148315176145025761450161449b565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61454082613e3e565b915061454b83613e3e565b92508261455b5761455a614509565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e74205f8201527f6c6f776572207468616e20312e35250000000000000000000000000000000000602082015250565b5f6145c0602f83613d56565b91506145cb82614566565b604082019050919050565b5f6020820190508181035f8301526145ed816145b4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f61464e602883613d56565b9150614659826145f4565b604082019050919050565b5f6020820190508181035f83015261467b81614642565b9050919050565b5f61468c82613e3e565b915061469783613e3e565b92508282019050808211156146af576146ae61449b565b5b92915050565b5f81905092915050565b50565b5f6146cd5f836146b5565b91506146d8826146bf565b5f82019050919050565b5f6146ec826146c2565b9150819050919050565b7f4661696c656420746f207472616e736665722066756e647300000000000000005f82015250565b5f61472a601883613d56565b9150614735826146f6565b602082019050919050565b5f6020820190508181035f8301526147578161471e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f43616e6e6f7420736574206d61726b6574696e674665652068696768657220745f8201527f68616e2031302500000000000000000000000000000000000000000000000000602082015250565b5f6147e5602783613d56565b91506147f08261478b565b604082019050919050565b5f6020820190508181035f830152614812816147d9565b9050919050565b7f43616e6e6f74207365742064657646656520686967686572207468616e2031305f8201527f2500000000000000000000000000000000000000000000000000000000000000602082015250565b5f614873602183613d56565b915061487e82614819565b604082019050919050565b5f6020820190508181035f8301526148a081614867565b9050919050565b7f43616e6e6f7420736574207472656173757279466565206869676865722074685f8201527f616e203135250000000000000000000000000000000000000000000000000000602082015250565b5f614901602683613d56565b915061490c826148a7565b604082019050919050565b5f6020820190508181035f83015261492e816148f5565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61498f602583613d56565b915061499a82614935565b604082019050919050565b5f6020820190508181035f8301526149bc81614983565b9050919050565b5f6149cd82613e3e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036149ff576149fe61449b565b5b600182019050919050565b5f614a1482613e3e565b91505f8203614a2657614a2561449b565b5b600182039050919050565b7f43616e6e6f7420736574206d617857616c6c6574416d6f756e74206c6f7765725f8201527f207468616e20312e352500000000000000000000000000000000000000000000602082015250565b5f614a8b602a83613d56565b9150614a9682614a31565b604082019050919050565b5f6020820190508181035f830152614ab881614a7f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f614b19603583613d56565b9150614b2482614abf565b604082019050919050565b5f6020820190508181035f830152614b4681614b0d565b9050919050565b7f5377617020616d6f756e742063616e6e6f7420626520686967686572207468615f8201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b5f614ba7603483613d56565b9150614bb282614b4d565b604082019050919050565b5f6020820190508181035f830152614bd481614b9b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f614c35602683613d56565b9150614c4082614bdb565b604082019050919050565b5f6020820190508181035f830152614c6281614c29565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f614cc3602483613d56565b9150614cce82614c69565b604082019050919050565b5f6020820190508181035f830152614cf081614cb7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614d51602283613d56565b9150614d5c82614cf7565b604082019050919050565b5f6020820190508181035f830152614d7e81614d45565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f614ddf602583613d56565b9150614dea82614d85565b604082019050919050565b5f6020820190508181035f830152614e0c81614dd3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f614e6d602383613d56565b9150614e7882614e13565b604082019050919050565b5f6020820190508181035f830152614e9a81614e61565b9050919050565b7f57616c6c657420626c61636b6c697374656421000000000000000000000000005f82015250565b5f614ed5601383613d56565b9150614ee082614ea1565b602082019050919050565b5f6020820190508181035f830152614f0281614ec9565b9050919050565b5f614f1382613e3e565b9150614f1e83613e3e565b9250828203905081811115614f3657614f3561449b565b5b92915050565b7f54726164696e67206973206e6f742061637469766500000000000000000000005f82015250565b5f614f70601583613d56565b9150614f7b82614f3c565b602082019050919050565b5f6020820190508181035f830152614f9d81614f64565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61782074780000000000000000000000000000000000000000000000000000602082015250565b5f614ffe602683613d56565b915061500982614fa4565b604082019050919050565b5f6020820190508181035f83015261502b81614ff2565b9050919050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f615066601383613d56565b915061507182615032565b602082019050919050565b5f6020820190508181035f8301526150938161505a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d617820747800000000000000000000000000000000000000000000000000602082015250565b5f6150f4602783613d56565b91506150ff8261509a565b604082019050919050565b5f6020820190508181035f830152615121816150e8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f615182602683613d56565b915061518d82615128565b604082019050919050565b5f6020820190508181035f8301526151af81615176565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f815190506151f181613e14565b92915050565b5f6020828403121561520c5761520b613ddc565b5b5f615219848285016151e3565b91505092915050565b5f819050919050565b5f61524561524061523b84615222565b613f5d565b613e3e565b9050919050565b6152558161522b565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61528d81613e03565b82525050565b5f61529e8383615284565b60208301905092915050565b5f602082019050919050565b5f6152c08261525b565b6152ca8185615265565b93506152d583615275565b805f5b838110156153055781516152ec8882615293565b97506152f7836152aa565b9250506001810190506152d8565b5085935050505092915050565b5f60a0820190506153255f830188613fd1565b615332602083018761524c565b818103604083015261534481866152b6565b90506153536060830185614058565b6153606080830184613fd1565b969550505050505056fea2646970667358221220ceb08c6c2afb387b0142ef526035967477f8cb63fdbb1c0154bd9b37cefc218a64736f6c63430008190033

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.