ETH Price: $2,292.30 (-5.34%)

Token

sFOX Token (sFOX)
 

Overview

Max Total Supply

1,000,000,000 sFOX

Holders

74 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
277,124.308157544591405522 sFOX

Value
$0.00
0xd3173c66571d559035691d82b883ae8ba16f2f60
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

sFOX is a platform, in which users can gain access to global markets, enjoy reduced fees, and participate in governance.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
sFOXToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-12
*/

/*
sFOX Token
www.sfox-token.com
www.medium.com/@sfox-token
www.twitter.com/sfox_token
t.me/sfox_token
Overview of Digital Assets
In recent years, digital assets have emerged as a transformative force in the global financial landscape. These assets, including cryptocurrencies, tokens, and blockchain-based instruments, have redefined how individuals and institutions perceive and interact with money and investments. The digitization of value has not only introduced novel financial instruments but has also disrupted traditional financial markets and institutions.
Digital assets, rooted in blockchain technology, offer distinct advantages such as transparency, security, and decentralization. Their adoption has surged across industries, with applications ranging from decentralized finance (DeFi) and non-fungible tokens (NFTs) to tokenized real assets and cross-border payments.
Introduction to sFOX
In this dynamic and rapidly evolving landscape, sFOX has emerged as a leading full-service crypto prime dealer dedicated to serving the unique needs of institutional investors. Understanding the company's background and mission is essential to appreciate its role in the digital asset ecosystem.
Company Overview
sFOX is a trailblazer in the cryptocurrency industry. Established with a mission to provide institutional clients with the essential tools and services required to unlock the full potential of digital assets, sFOX has achieved recognition for its commitment to trust, security, and innovation.
Service Offerings
sFOX offers a comprehensive suite of services designed to cater specifically to institutional investors in the crypto market. These services include:
- Liquidity Provision: sFOX facilitates access to deep liquidity pools, allowing institutional clients to execute large trades efficiently and at competitive prices.
- Security Solutions: The platform implements robust security measures, including cold storage, multi-signature wallets, and advanced encryption, to safeguard institutional assets.
- Infrastructure: sFOX provides cutting-edge technology infrastructure and trading tools, enabling institutional clients to manage their portfolios effectively.
Unique Features
sFOX distinguishes itself in the cryptocurrency market by offering unique features and advantages:
- Tailored Services: sFOX customizes its services to address the specific requirements and risk profiles of institutional investors, ensuring a personalized and efficient experience.
- Innovation: sFOX is committed to innovation, continually enhancing its platform with proprietary technology and trading strategies that set it apart from competitors.
- Success Stories: Numerous institutional clients have benefited from sFOX's services. Real-world success stories and case studies highlight how sFOX has addressed their unique needs and delivered tangible results.
Structure and Objectives of the Whitepaper
This whitepaper serves as a comprehensive guide to sFOX, its services, and the pivotal role it plays in the digital asset ecosystem. The objectives of this whitepaper are threefold:
1. Education: To provide readers with a thorough understanding of digital assets, their evolution, and their significance in today's financial markets.
2. Insight: To offer an in-depth exploration of sFOX as a full-service crypto prime dealer, highlighting its history, mission, and unique value proposition.
3. Clarity: To shed light on the
sFOX token and its integral role within the sFOX ecosystem, including its utility, governance, and economic model.
By the end of this whitepaper, readers will gain a profound insight into how sFOX is reshaping institutional crypto investment, enhancing liquidity, fortifying security, and enabling global access to the world of digital assets.
sFOX Token
The sFOX token, denoted as sFOX, plays a central role within the sFOX ecosystem. It is a native utility token that provides various benefits to its holders, enabling them to access and participate in the sFOX platform. 
Utility: The sFOX token is designed to serve as a utility token, offering access to specific features and services within the sFOX ecosystem.
Governance: sFOX token holders may have the opportunity to participate in governance decisions, influencing the direction and development of the platform.
Incentives: The token may be used to incentivize platform usage, reward liquidity providers, or encourage certain behaviors that benefit the sFOX ecosystem.
Use Cases
sFOX tokens have a range of use cases within the sFOX platform:
- Access to Premium Features: sFOX tokens can grant users access to premium features, including enhanced trading tools, data analytics, and personalized services.
- Staking and Rewards: Token holders may have the option to stake their sFOX tokens to earn rewards or participate in liquidity provision incentives.
- Governance Participation: Depending on the platform's governance structure, sFOX token holders may have the ability to participate in decision-making processes and vote on proposals.
*/
// SPDX-License-Identifier: None

pragma solidity ^0.8.2;

abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return payable(msg.sender);
    }

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

interface IERC20 {
   
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {
    
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {

        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

library Address {
  
    function isContract(address account) internal view returns (bool) {

        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {

            if (returndata.length > 0) {
              
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

contract Ownable is Context {
    address public _owner;
    
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract sFOXToken is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping (address => bool) private _isExcluded;
    address[] private _excluded;

    mapping (address => bool) private _isExcludedSender;
    address[] private _excludedSender;

    string  public Website = "www.sfox-token.com";
    string  public Slippage = "10%";

    string  private _NAME;
    string  private _SYMBOL;
    uint256 private _DECIMALS;

    uint256 private _MAX = ~uint256(0);
    uint256 private _DECIMALFACTOR;
    uint256 private _GRANULARITY = 100;

    uint256 private _tTotal;
    uint256 private _rTotal;

    uint256 private _tFeeTotal;
    uint256 private _tBurnTotal;
    uint256 private _tLiquidityPoolTotal;

    uint256 public     _TAX;
    uint256 public    _BURN;
    uint256 public _LIQUIDITYPOOL_;

    uint256 private ORIG_TAX;
    uint256 private ORIG_BURN;
    uint256 private ORIG_LIQUIDITYPOOL_;

    mapping (address => bool) private _antiWhale;

    constructor (string memory _name, string memory _symbol, uint256 _decimals, uint256 _supply) {
        _NAME = _name;
        _SYMBOL = _symbol;
        _DECIMALS = _decimals;
        _DECIMALFACTOR = 10 ** _DECIMALS;
        _tTotal =_supply * _DECIMALFACTOR;
        _rTotal = (_MAX - (_MAX % _tTotal));
        ORIG_TAX = _TAX;
        ORIG_BURN = _BURN;
        ORIG_LIQUIDITYPOOL_ = _LIQUIDITYPOOL_;
        _owner = msg.sender;
        _rOwned[_owner] = _rTotal;

    }

    function name() public view returns (string memory) {
        return _NAME;
    }

    function symbol() public view returns (string memory) {
        return _SYMBOL;
    }

    function decimals() public view returns (uint8) {
        return uint8(_DECIMALS);
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "TOKEN20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "TOKEN20: decreased allowance below zero"));
        return true;
    }

    function totalBurn() public view returns (uint256) {
        return _tBurnTotal;
    }

    function totalLiquidityPool() public view returns (uint256) {
        return _tLiquidityPoolTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount,,,,,,) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount,,,,,,) = _getValues(tAmount);
            return rAmount;
        } else {
            (,uint256 rTransferAmount,,,,,) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns(uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate =  _getRate();
        return rAmount.div(currentRate);
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "TOKEN20: approve from the zero address");
        require(spender != address(0), "TOKEN20: approve to the zero address");

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

    function antiWhale(address _wallet, bool _allow) external onlyOwner() {
        if(_allow){
            _antiWhale[_wallet] = _allow;
        } else {
            delete _antiWhale[_wallet];
        }
    }

    function isWhale(address _wallet) external view returns (bool) {
        return _antiWhale[_wallet];
    }

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "TOKEN20: transfer from the zero address");
        require(recipient != address(0), "TOKEN20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        require(!_antiWhale[sender], "Whale not allowed");

        if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidityPool) = _getValues(tAmount);
        uint256 rBurn =  tBurn.mul(currentRate);
        _standardTransferContent(sender, recipient, rAmount, rTransferAmount);
        _reflectFee(rFee, rBurn, tFee, tBurn, tLiquidityPool);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _standardTransferContent(address sender, address recipient, uint256 rAmount, uint256 rTransferAmount) private {
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
    }

    function _excludedFromTransferContent(address sender, address recipient, uint256 tTransferAmount, uint256 rAmount, uint256 rTransferAmount) private {
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
    }

    function _excludedToTransferContent(address sender, address recipient, uint256 tAmount, uint256 rAmount, uint256 rTransferAmount) private {
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
    }

    function _bothTransferContent(address sender, address recipient, uint256 tAmount, uint256 rAmount, uint256 tTransferAmount, uint256 rTransferAmount) private {
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 rBurn, uint256 tFee, uint256 tBurn, uint256 tLiquidityPool) private {
        _rTotal = _rTotal.sub(rFee).sub(rBurn);
        _tFeeTotal = _tFeeTotal.add(tFee);
        _tBurnTotal = _tBurnTotal.add(tBurn);
        _tLiquidityPoolTotal = _tLiquidityPoolTotal.add(tLiquidityPool);
        _tTotal = _tTotal.sub(tBurn);
        emit Transfer(address(this), address(0), tBurn);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tFee, uint256 tBurn, uint256 tLiquidityPool) = _getTBasics(tAmount, _TAX, _BURN, _LIQUIDITYPOOL_);
        uint256 tTransferAmount = getTTransferAmount(tAmount, tFee, tBurn, tLiquidityPool);
        uint256 currentRate =  _getRate();
        (uint256 rAmount, uint256 rFee) = _getRBasics(tAmount, tFee, currentRate);
        uint256 rTransferAmount = _getRTransferAmount(rAmount, rFee, tBurn, tLiquidityPool, currentRate);
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tBurn, tLiquidityPool);
    }

    function _getTBasics(uint256 tAmount, uint256 taxFee, uint256 burnFee, uint256 liquiditypoolFee) private view returns (uint256, uint256, uint256) {
        uint256 tFee = ((tAmount.mul(taxFee)).div(_GRANULARITY)).div(100);
        uint256 tBurn = ((tAmount.mul(burnFee)).div(_GRANULARITY)).div(100);
        uint256 tLiquidityPool = ((tAmount.mul(liquiditypoolFee)).div(_GRANULARITY)).div(100);
        return (tFee, tBurn, tLiquidityPool);
    }

    function getTTransferAmount(uint256 tAmount, uint256 tFee, uint256 tBurn, uint256 tLiquidityPool) private pure returns (uint256) {
        return tAmount.sub(tFee).sub(tBurn).sub(tLiquidityPool);
    }

    function _getRBasics(uint256 tAmount, uint256 tFee, uint256 currentRate) private pure returns (uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        return (rAmount, rFee);
    }

    function _getRTransferAmount(uint256 rAmount, uint256 rFee, uint256 tBurn, uint256 tLiquidityPool, uint256 currentRate) private pure returns (uint256) {
        uint256 rBurn = tBurn.mul(currentRate);
        uint256 rLiquidityPool = tLiquidityPool.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rBurn).sub(rLiquidityPool);
        return rTransferAmount;
    }

    function _getRate() private view returns(uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns(uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_decimals","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Slippage","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Website","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_BURN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_LIQUIDITYPOOL_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_TAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_allow","type":"bool"}],"name":"antiWhale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","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":"_wallet","type":"address"}],"name":"isWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLiquidityPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280601281526020017f7777772e73666f782d746f6b656e2e636f6d0000000000000000000000000000815250600890805190602001906200005192919062000237565b506040518060400160405280600381526020017f3130250000000000000000000000000000000000000000000000000000000000815250600990805190602001906200009f92919062000237565b50600019600d556064600f55348015620000b857600080fd5b5060405162003879380380620038798339818101604052810190620000de91906200037c565b83600a9080519060200190620000f692919062000237565b5082600b90805190602001906200010f92919062000237565b5081600c81905550600c54600a620001289190620004e6565b600e81905550600e54816200013e919062000623565b601081905550601054600d546200015691906200076b565b600d5462000165919062000684565b601181905550601554601881905550601654601981905550601754601a81905550336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601154600160008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050620008ab565b8280546200024590620006ff565b90600052602060002090601f016020900481019282620002695760008555620002b5565b82601f106200028457805160ff1916838001178555620002b5565b82800160010185558215620002b5579182015b82811115620002b457825182559160200191906001019062000297565b5b509050620002c49190620002c8565b5090565b5b80821115620002e3576000816000905550600101620002c9565b5090565b6000620002fe620002f88462000455565b6200042c565b9050828152602081018484840111156200031d576200031c62000864565b5b6200032a848285620006c9565b509392505050565b600082601f8301126200034a57620003496200085f565b5b81516200035c848260208601620002e7565b91505092915050565b600081519050620003768162000891565b92915050565b600080600080608085870312156200039957620003986200086e565b5b600085015167ffffffffffffffff811115620003ba57620003b962000869565b5b620003c88782880162000332565b945050602085015167ffffffffffffffff811115620003ec57620003eb62000869565b5b620003fa8782880162000332565b93505060406200040d8782880162000365565b9250506060620004208782880162000365565b91505092959194509250565b6000620004386200044b565b905062000446828262000735565b919050565b6000604051905090565b600067ffffffffffffffff82111562000473576200047262000830565b5b6200047e8262000873565b9050602081019050919050565b6000808291508390505b6001851115620004dd57808604811115620004b557620004b4620007a3565b5b6001851615620004c55780820291505b8081029050620004d58562000884565b945062000495565b94509492505050565b6000620004f382620006bf565b91506200050083620006bf565b92506200052f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000537565b905092915050565b6000826200054957600190506200061c565b816200055957600090506200061c565b81600181146200057257600281146200057d57620005b3565b60019150506200061c565b60ff841115620005925762000591620007a3565b5b8360020a915084821115620005ac57620005ab620007a3565b5b506200061c565b5060208310610133831016604e8410600b8410161715620005ed5782820a905083811115620005e757620005e6620007a3565b5b6200061c565b620005fc84848460016200048b565b92509050818404811115620006165762000615620007a3565b5b81810290505b9392505050565b60006200063082620006bf565b91506200063d83620006bf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006795762000678620007a3565b5b828202905092915050565b60006200069182620006bf565b91506200069e83620006bf565b925082821015620006b457620006b3620007a3565b5b828203905092915050565b6000819050919050565b60005b83811015620006e9578082015181840152602081019050620006cc565b83811115620006f9576000848401525b50505050565b600060028204905060018216806200071857607f821691505b602082108114156200072f576200072e62000801565b5b50919050565b620007408262000873565b810181811067ffffffffffffffff8211171562000762576200076162000830565b5b80604052505050565b60006200077882620006bf565b91506200078583620006bf565b925082620007985762000797620007d2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b6200089c81620006bf565b8114620008a857600080fd5b50565b612fbe80620008bb6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a457c2d711610097578063a9490cb111610071578063a9490cb1146104ea578063b2bdfa7b14610508578063dd62ed3e14610526578063f2fde38b14610556576101a9565b8063a457c2d71461046c578063a542ff411461049c578063a9059cbb146104ba576101a9565b80638ef1e259116100d35780638ef1e259146103e457806395d89b411461041457806398a5f2b714610432578063a02aff2d14610450576101a9565b8063715018a61461039e5780637dd37f70146103a85780638da5cb5b146103c6576101a9565b8063313ce567116101665780633c9f861d116101405780633c9f861d146103025780634549b0391461032057806353a4c31e1461035057806370a082311461036e576101a9565b8063313ce5671461029857806339509351146102b65780633bd5d173146102e6576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc5780631ef7b4301461021a57806323b872dd146102385780632d83811914610268575b600080fd5b6101b6610572565b6040516101c39190612689565b60405180910390f35b6101e660048036038101906101e1919061236a565b610604565b6040516101f3919061266e565b60405180910390f35b610204610622565b604051610211919061284b565b60405180910390f35b61022261062c565b60405161022f919061284b565b60405180910390f35b610252600480360381019061024d91906122d7565b610636565b60405161025f919061266e565b60405180910390f35b610282600480360381019061027d91906123aa565b61070f565b60405161028f919061284b565b60405180910390f35b6102a061077d565b6040516102ad9190612866565b60405180910390f35b6102d060048036038101906102cb919061236a565b610787565b6040516102dd919061266e565b60405180910390f35b61030060048036038101906102fb91906123aa565b61083a565b005b61030a6109b6565b604051610317919061284b565b60405180910390f35b61033a600480360381019061033591906123d7565b6109c0565b604051610347919061284b565b60405180910390f35b610358610a46565b604051610365919061284b565b60405180910390f35b6103886004803603810190610383919061226a565b610a4c565b604051610395919061284b565b60405180910390f35b6103a6610b37565b005b6103b0610c8a565b6040516103bd9190612689565b60405180910390f35b6103ce610d18565b6040516103db9190612653565b60405180910390f35b6103fe60048036038101906103f9919061226a565b610d41565b60405161040b919061266e565b60405180910390f35b61041c610d97565b6040516104299190612689565b60405180910390f35b61043a610e29565b604051610447919061284b565b60405180910390f35b61046a6004803603810190610465919061232a565b610e2f565b005b6104866004803603810190610481919061236a565b610f7a565b604051610493919061266e565b60405180910390f35b6104a4611047565b6040516104b1919061284b565b60405180910390f35b6104d460048036038101906104cf919061236a565b61104d565b6040516104e1919061266e565b60405180910390f35b6104f261106b565b6040516104ff9190612689565b60405180910390f35b6105106110f9565b60405161051d9190612653565b60405180910390f35b610540600480360381019061053b9190612297565b61111d565b60405161054d919061284b565b60405180910390f35b610570600480360381019061056b919061226a565b6111a4565b005b6060600a805461058190612a3a565b80601f01602080910402602001604051908101604052809291908181526020018280546105ad90612a3a565b80156105fa5780601f106105cf576101008083540402835291602001916105fa565b820191906000526020600020905b8154815290600101906020018083116105dd57829003601f168201915b5050505050905090565b6000610618610611611366565b848461136e565b6001905092915050565b6000601054905090565b6000601454905090565b6000610643848484611539565b6107048461064f611366565b6106ff856040518060600160405280602a8152602001612f5f602a9139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106b5611366565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117b39092919063ffffffff16565b61136e565b600190509392505050565b6000601154821115610756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074d906126eb565b60405180910390fd5b6000610760611817565b9050610775818461184290919063ffffffff16565b915050919050565b6000600c54905090565b6000610830610794611366565b8461082b85600360006107a5611366565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461188c90919063ffffffff16565b61136e565b6001905092915050565b6000610844611366565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca9061282b565b60405180910390fd5b60006108de836118ea565b505050505050905061093881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461197890919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506109908160115461197890919063ffffffff16565b6011819055506109ab8360125461188c90919063ffffffff16565b601281905550505050565b6000601354905090565b6000601054831115610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe9061274b565b60405180910390fd5b81610a28576000610a17846118ea565b505050505050905080915050610a40565b6000610a33846118ea565b5050505050915050809150505b92915050565b60165481565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ae757600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610b32565b610b2f600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461070f565b90505b919050565b610b3f611366565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc3906127ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60098054610c9790612a3a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc390612a3a565b8015610d105780601f10610ce557610100808354040283529160200191610d10565b820191906000526020600020905b815481529060010190602001808311610cf357829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6060600b8054610da690612a3a565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd290612a3a565b8015610e1f5780601f10610df457610100808354040283529160200191610e1f565b820191906000526020600020905b815481529060010190602001808311610e0257829003601f168201915b5050505050905090565b60175481565b610e37611366565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb906127ab565b60405180910390fd5b8015610f265780601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f76565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690555b5050565b600061103d610f87611366565b8461103885604051806060016040528060278152602001612f386027913960036000610fb1611366565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117b39092919063ffffffff16565b61136e565b6001905092915050565b60155481565b600061106161105a611366565b8484611539565b6001905092915050565b6008805461107890612a3a565b80601f01602080910402602001604051908101604052809291908181526020018280546110a490612a3a565b80156110f15780601f106110c6576101008083540402835291602001916110f1565b820191906000526020600020905b8154815290600101906020018083116110d457829003601f168201915b505050505081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111ac611366565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611230906127ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a09061270b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d59061280b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611445906127eb565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161152c919061284b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a0906126cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611619576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611610906126ab565b60405180910390fd5b6000811161165c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611653906127cb565b60405180910390fd5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e09061276b565b60405180910390fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561178d5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117a25761179d8383836119c2565b6117ae565b6117ad8383836119c2565b5b505050565b60008383111582906117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f29190612689565b60405180910390fd5b506000838561180a919061297e565b9050809150509392505050565b6000806000611824611a93565b9150915061183b818361184290919063ffffffff16565b9250505090565b600061188483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d46565b905092915050565b600080828461189b919061289d565b9050838110156118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d79061272b565b60405180910390fd5b8091505092915050565b60008060008060008060008060008061190b8b601554601654601754611da9565b925092509250600061191f8c858585611e7d565b9050600061192b611817565b905060008061193b8f8885611ec0565b91509150600061194e8383898988611f01565b9050828183878b8b8b9e509e509e509e509e509e509e505050505050505050919395979092949650565b60006119ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117b3565b905092915050565b60006119cc611817565b905060008060008060008060006119e2896118ea565b96509650965096509650965096506000611a058984611f7a90919063ffffffff16565b9050611a138c8c8a8a611ff5565b611a208682868686612125565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051611a7d919061284b565b60405180910390a3505050505050505050505050565b600080600060115490506000601054905060005b600580549050811015611d0957826001600060058481548110611acd57611acc612b42565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180611bbb5750816002600060058481548110611b5357611b52612b42565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15611bd25760115460105494509450505050611d42565b611c626001600060058481548110611bed57611bec612b42565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461197890919063ffffffff16565b9250611cf46002600060058481548110611c7f57611c7e612b42565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361197890919063ffffffff16565b91508080611d0190612a6c565b915050611aa7565b50611d2160105460115461184290919063ffffffff16565b821015611d3957601154601054935093505050611d42565b81819350935050505b9091565b60008083118290611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d849190612689565b60405180910390fd5b5060008385611d9c91906128f3565b9050809150509392505050565b600080600080611de96064611ddb600f54611dcd8b8d611f7a90919063ffffffff16565b61184290919063ffffffff16565b61184290919063ffffffff16565b90506000611e276064611e19600f54611e0b8b8e611f7a90919063ffffffff16565b61184290919063ffffffff16565b61184290919063ffffffff16565b90506000611e656064611e57600f54611e498b8f611f7a90919063ffffffff16565b61184290919063ffffffff16565b61184290919063ffffffff16565b90508282829550955095505050509450945094915050565b6000611eb682611ea885611e9a888a61197890919063ffffffff16565b61197890919063ffffffff16565b61197890919063ffffffff16565b9050949350505050565b6000806000611ed88487611f7a90919063ffffffff16565b90506000611eef8587611f7a90919063ffffffff16565b90508181935093505050935093915050565b600080611f178386611f7a90919063ffffffff16565b90506000611f2e8486611f7a90919063ffffffff16565b90506000611f6982611f5b85611f4d8c8e61197890919063ffffffff16565b61197890919063ffffffff16565b61197890919063ffffffff16565b905080935050505095945050505050565b600080831415611f8d5760009050611fef565b60008284611f9b9190612924565b9050828482611faa91906128f3565b14611fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe19061278b565b60405180910390fd5b809150505b92915050565b61204782600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461197890919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120dc81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461188c90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b61214c8461213e8760115461197890919063ffffffff16565b61197890919063ffffffff16565b6011819055506121678360125461188c90919063ffffffff16565b6012819055506121828260135461188c90919063ffffffff16565b60138190555061219d8160145461188c90919063ffffffff16565b6014819055506121b88260105461197890919063ffffffff16565b601081905550600073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161221c919061284b565b60405180910390a35050505050565b60008135905061223a81612ef2565b92915050565b60008135905061224f81612f09565b92915050565b60008135905061226481612f20565b92915050565b6000602082840312156122805761227f612b71565b5b600061228e8482850161222b565b91505092915050565b600080604083850312156122ae576122ad612b71565b5b60006122bc8582860161222b565b92505060206122cd8582860161222b565b9150509250929050565b6000806000606084860312156122f0576122ef612b71565b5b60006122fe8682870161222b565b935050602061230f8682870161222b565b925050604061232086828701612255565b9150509250925092565b6000806040838503121561234157612340612b71565b5b600061234f8582860161222b565b925050602061236085828601612240565b9150509250929050565b6000806040838503121561238157612380612b71565b5b600061238f8582860161222b565b92505060206123a085828601612255565b9150509250929050565b6000602082840312156123c0576123bf612b71565b5b60006123ce84828501612255565b91505092915050565b600080604083850312156123ee576123ed612b71565b5b60006123fc85828601612255565b925050602061240d85828601612240565b9150509250929050565b612420816129b2565b82525050565b61242f816129c4565b82525050565b600061244082612881565b61244a818561288c565b935061245a818560208601612a07565b61246381612b76565b840191505092915050565b600061247b60258361288c565b915061248682612b87565b604082019050919050565b600061249e60278361288c565b91506124a982612bd6565b604082019050919050565b60006124c1602a8361288c565b91506124cc82612c25565b604082019050919050565b60006124e460268361288c565b91506124ef82612c74565b604082019050919050565b6000612507601b8361288c565b915061251282612cc3565b602082019050919050565b600061252a601f8361288c565b915061253582612cec565b602082019050919050565b600061254d60118361288c565b915061255882612d15565b602082019050919050565b600061257060218361288c565b915061257b82612d3e565b604082019050919050565b600061259360208361288c565b915061259e82612d8d565b602082019050919050565b60006125b660298361288c565b91506125c182612db6565b604082019050919050565b60006125d960248361288c565b91506125e482612e05565b604082019050919050565b60006125fc60268361288c565b915061260782612e54565b604082019050919050565b600061261f602c8361288c565b915061262a82612ea3565b604082019050919050565b61263e816129f0565b82525050565b61264d816129fa565b82525050565b60006020820190506126686000830184612417565b92915050565b60006020820190506126836000830184612426565b92915050565b600060208201905081810360008301526126a38184612435565b905092915050565b600060208201905081810360008301526126c48161246e565b9050919050565b600060208201905081810360008301526126e481612491565b9050919050565b60006020820190508181036000830152612704816124b4565b9050919050565b60006020820190508181036000830152612724816124d7565b9050919050565b60006020820190508181036000830152612744816124fa565b9050919050565b600060208201905081810360008301526127648161251d565b9050919050565b6000602082019050818103600083015261278481612540565b9050919050565b600060208201905081810360008301526127a481612563565b9050919050565b600060208201905081810360008301526127c481612586565b9050919050565b600060208201905081810360008301526127e4816125a9565b9050919050565b60006020820190508181036000830152612804816125cc565b9050919050565b60006020820190508181036000830152612824816125ef565b9050919050565b6000602082019050818103600083015261284481612612565b9050919050565b60006020820190506128606000830184612635565b92915050565b600060208201905061287b6000830184612644565b92915050565b600081519050919050565b600082825260208201905092915050565b60006128a8826129f0565b91506128b3836129f0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128e8576128e7612ab5565b5b828201905092915050565b60006128fe826129f0565b9150612909836129f0565b92508261291957612918612ae4565b5b828204905092915050565b600061292f826129f0565b915061293a836129f0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561297357612972612ab5565b5b828202905092915050565b6000612989826129f0565b9150612994836129f0565b9250828210156129a7576129a6612ab5565b5b828203905092915050565b60006129bd826129d0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612a25578082015181840152602081019050612a0a565b83811115612a34576000848401525b50505050565b60006002820490506001821680612a5257607f821691505b60208210811415612a6657612a65612b13565b5b50919050565b6000612a77826129f0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612aaa57612aa9612ab5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f544f4b454e32303a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f544f4b454e32303a207472616e736665722066726f6d20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f5768616c65206e6f7420616c6c6f776564000000000000000000000000000000600082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f544f4b454e32303a20617070726f766520746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f544f4b454e32303a20617070726f76652066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b612efb816129b2565b8114612f0657600080fd5b50565b612f12816129c4565b8114612f1d57600080fd5b50565b612f29816129f0565b8114612f3457600080fd5b5056fe544f4b454e32303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f544f4b454e32303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220139f4f67b7c10e4520747a9c727b025035b67ecdb72849893dd9506fb0d1d5ce64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000b73464f582020546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000473464f5800000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063a457c2d711610097578063a9490cb111610071578063a9490cb1146104ea578063b2bdfa7b14610508578063dd62ed3e14610526578063f2fde38b14610556576101a9565b8063a457c2d71461046c578063a542ff411461049c578063a9059cbb146104ba576101a9565b80638ef1e259116100d35780638ef1e259146103e457806395d89b411461041457806398a5f2b714610432578063a02aff2d14610450576101a9565b8063715018a61461039e5780637dd37f70146103a85780638da5cb5b146103c6576101a9565b8063313ce567116101665780633c9f861d116101405780633c9f861d146103025780634549b0391461032057806353a4c31e1461035057806370a082311461036e576101a9565b8063313ce5671461029857806339509351146102b65780633bd5d173146102e6576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc5780631ef7b4301461021a57806323b872dd146102385780632d83811914610268575b600080fd5b6101b6610572565b6040516101c39190612689565b60405180910390f35b6101e660048036038101906101e1919061236a565b610604565b6040516101f3919061266e565b60405180910390f35b610204610622565b604051610211919061284b565b60405180910390f35b61022261062c565b60405161022f919061284b565b60405180910390f35b610252600480360381019061024d91906122d7565b610636565b60405161025f919061266e565b60405180910390f35b610282600480360381019061027d91906123aa565b61070f565b60405161028f919061284b565b60405180910390f35b6102a061077d565b6040516102ad9190612866565b60405180910390f35b6102d060048036038101906102cb919061236a565b610787565b6040516102dd919061266e565b60405180910390f35b61030060048036038101906102fb91906123aa565b61083a565b005b61030a6109b6565b604051610317919061284b565b60405180910390f35b61033a600480360381019061033591906123d7565b6109c0565b604051610347919061284b565b60405180910390f35b610358610a46565b604051610365919061284b565b60405180910390f35b6103886004803603810190610383919061226a565b610a4c565b604051610395919061284b565b60405180910390f35b6103a6610b37565b005b6103b0610c8a565b6040516103bd9190612689565b60405180910390f35b6103ce610d18565b6040516103db9190612653565b60405180910390f35b6103fe60048036038101906103f9919061226a565b610d41565b60405161040b919061266e565b60405180910390f35b61041c610d97565b6040516104299190612689565b60405180910390f35b61043a610e29565b604051610447919061284b565b60405180910390f35b61046a6004803603810190610465919061232a565b610e2f565b005b6104866004803603810190610481919061236a565b610f7a565b604051610493919061266e565b60405180910390f35b6104a4611047565b6040516104b1919061284b565b60405180910390f35b6104d460048036038101906104cf919061236a565b61104d565b6040516104e1919061266e565b60405180910390f35b6104f261106b565b6040516104ff9190612689565b60405180910390f35b6105106110f9565b60405161051d9190612653565b60405180910390f35b610540600480360381019061053b9190612297565b61111d565b60405161054d919061284b565b60405180910390f35b610570600480360381019061056b919061226a565b6111a4565b005b6060600a805461058190612a3a565b80601f01602080910402602001604051908101604052809291908181526020018280546105ad90612a3a565b80156105fa5780601f106105cf576101008083540402835291602001916105fa565b820191906000526020600020905b8154815290600101906020018083116105dd57829003601f168201915b5050505050905090565b6000610618610611611366565b848461136e565b6001905092915050565b6000601054905090565b6000601454905090565b6000610643848484611539565b6107048461064f611366565b6106ff856040518060600160405280602a8152602001612f5f602a9139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106b5611366565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117b39092919063ffffffff16565b61136e565b600190509392505050565b6000601154821115610756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074d906126eb565b60405180910390fd5b6000610760611817565b9050610775818461184290919063ffffffff16565b915050919050565b6000600c54905090565b6000610830610794611366565b8461082b85600360006107a5611366565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461188c90919063ffffffff16565b61136e565b6001905092915050565b6000610844611366565b9050600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca9061282b565b60405180910390fd5b60006108de836118ea565b505050505050905061093881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461197890919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506109908160115461197890919063ffffffff16565b6011819055506109ab8360125461188c90919063ffffffff16565b601281905550505050565b6000601354905090565b6000601054831115610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe9061274b565b60405180910390fd5b81610a28576000610a17846118ea565b505050505050905080915050610a40565b6000610a33846118ea565b5050505050915050809150505b92915050565b60165481565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ae757600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050610b32565b610b2f600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461070f565b90505b919050565b610b3f611366565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc3906127ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60098054610c9790612a3a565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc390612a3a565b8015610d105780601f10610ce557610100808354040283529160200191610d10565b820191906000526020600020905b815481529060010190602001808311610cf357829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6060600b8054610da690612a3a565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd290612a3a565b8015610e1f5780601f10610df457610100808354040283529160200191610e1f565b820191906000526020600020905b815481529060010190602001808311610e0257829003601f168201915b5050505050905090565b60175481565b610e37611366565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb906127ab565b60405180910390fd5b8015610f265780601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610f76565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690555b5050565b600061103d610f87611366565b8461103885604051806060016040528060278152602001612f386027913960036000610fb1611366565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117b39092919063ffffffff16565b61136e565b6001905092915050565b60155481565b600061106161105a611366565b8484611539565b6001905092915050565b6008805461107890612a3a565b80601f01602080910402602001604051908101604052809291908181526020018280546110a490612a3a565b80156110f15780601f106110c6576101008083540402835291602001916110f1565b820191906000526020600020905b8154815290600101906020018083116110d457829003601f168201915b505050505081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6111ac611366565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611230906127ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a09061270b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d59061280b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561144e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611445906127eb565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161152c919061284b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a0906126cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611619576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611610906126ab565b60405180910390fd5b6000811161165c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611653906127cb565b60405180910390fd5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e09061276b565b60405180910390fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561178d5750600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117a25761179d8383836119c2565b6117ae565b6117ad8383836119c2565b5b505050565b60008383111582906117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f29190612689565b60405180910390fd5b506000838561180a919061297e565b9050809150509392505050565b6000806000611824611a93565b9150915061183b818361184290919063ffffffff16565b9250505090565b600061188483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d46565b905092915050565b600080828461189b919061289d565b9050838110156118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d79061272b565b60405180910390fd5b8091505092915050565b60008060008060008060008060008061190b8b601554601654601754611da9565b925092509250600061191f8c858585611e7d565b9050600061192b611817565b905060008061193b8f8885611ec0565b91509150600061194e8383898988611f01565b9050828183878b8b8b9e509e509e509e509e509e509e505050505050505050919395979092949650565b60006119ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117b3565b905092915050565b60006119cc611817565b905060008060008060008060006119e2896118ea565b96509650965096509650965096506000611a058984611f7a90919063ffffffff16565b9050611a138c8c8a8a611ff5565b611a208682868686612125565b8a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051611a7d919061284b565b60405180910390a3505050505050505050505050565b600080600060115490506000601054905060005b600580549050811015611d0957826001600060058481548110611acd57611acc612b42565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541180611bbb5750816002600060058481548110611b5357611b52612b42565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b15611bd25760115460105494509450505050611d42565b611c626001600060058481548110611bed57611bec612b42565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461197890919063ffffffff16565b9250611cf46002600060058481548110611c7f57611c7e612b42565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548361197890919063ffffffff16565b91508080611d0190612a6c565b915050611aa7565b50611d2160105460115461184290919063ffffffff16565b821015611d3957601154601054935093505050611d42565b81819350935050505b9091565b60008083118290611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d849190612689565b60405180910390fd5b5060008385611d9c91906128f3565b9050809150509392505050565b600080600080611de96064611ddb600f54611dcd8b8d611f7a90919063ffffffff16565b61184290919063ffffffff16565b61184290919063ffffffff16565b90506000611e276064611e19600f54611e0b8b8e611f7a90919063ffffffff16565b61184290919063ffffffff16565b61184290919063ffffffff16565b90506000611e656064611e57600f54611e498b8f611f7a90919063ffffffff16565b61184290919063ffffffff16565b61184290919063ffffffff16565b90508282829550955095505050509450945094915050565b6000611eb682611ea885611e9a888a61197890919063ffffffff16565b61197890919063ffffffff16565b61197890919063ffffffff16565b9050949350505050565b6000806000611ed88487611f7a90919063ffffffff16565b90506000611eef8587611f7a90919063ffffffff16565b90508181935093505050935093915050565b600080611f178386611f7a90919063ffffffff16565b90506000611f2e8486611f7a90919063ffffffff16565b90506000611f6982611f5b85611f4d8c8e61197890919063ffffffff16565b61197890919063ffffffff16565b61197890919063ffffffff16565b905080935050505095945050505050565b600080831415611f8d5760009050611fef565b60008284611f9b9190612924565b9050828482611faa91906128f3565b14611fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe19061278b565b60405180910390fd5b809150505b92915050565b61204782600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461197890919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120dc81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461188c90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505050565b61214c8461213e8760115461197890919063ffffffff16565b61197890919063ffffffff16565b6011819055506121678360125461188c90919063ffffffff16565b6012819055506121828260135461188c90919063ffffffff16565b60138190555061219d8160145461188c90919063ffffffff16565b6014819055506121b88260105461197890919063ffffffff16565b601081905550600073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161221c919061284b565b60405180910390a35050505050565b60008135905061223a81612ef2565b92915050565b60008135905061224f81612f09565b92915050565b60008135905061226481612f20565b92915050565b6000602082840312156122805761227f612b71565b5b600061228e8482850161222b565b91505092915050565b600080604083850312156122ae576122ad612b71565b5b60006122bc8582860161222b565b92505060206122cd8582860161222b565b9150509250929050565b6000806000606084860312156122f0576122ef612b71565b5b60006122fe8682870161222b565b935050602061230f8682870161222b565b925050604061232086828701612255565b9150509250925092565b6000806040838503121561234157612340612b71565b5b600061234f8582860161222b565b925050602061236085828601612240565b9150509250929050565b6000806040838503121561238157612380612b71565b5b600061238f8582860161222b565b92505060206123a085828601612255565b9150509250929050565b6000602082840312156123c0576123bf612b71565b5b60006123ce84828501612255565b91505092915050565b600080604083850312156123ee576123ed612b71565b5b60006123fc85828601612255565b925050602061240d85828601612240565b9150509250929050565b612420816129b2565b82525050565b61242f816129c4565b82525050565b600061244082612881565b61244a818561288c565b935061245a818560208601612a07565b61246381612b76565b840191505092915050565b600061247b60258361288c565b915061248682612b87565b604082019050919050565b600061249e60278361288c565b91506124a982612bd6565b604082019050919050565b60006124c1602a8361288c565b91506124cc82612c25565b604082019050919050565b60006124e460268361288c565b91506124ef82612c74565b604082019050919050565b6000612507601b8361288c565b915061251282612cc3565b602082019050919050565b600061252a601f8361288c565b915061253582612cec565b602082019050919050565b600061254d60118361288c565b915061255882612d15565b602082019050919050565b600061257060218361288c565b915061257b82612d3e565b604082019050919050565b600061259360208361288c565b915061259e82612d8d565b602082019050919050565b60006125b660298361288c565b91506125c182612db6565b604082019050919050565b60006125d960248361288c565b91506125e482612e05565b604082019050919050565b60006125fc60268361288c565b915061260782612e54565b604082019050919050565b600061261f602c8361288c565b915061262a82612ea3565b604082019050919050565b61263e816129f0565b82525050565b61264d816129fa565b82525050565b60006020820190506126686000830184612417565b92915050565b60006020820190506126836000830184612426565b92915050565b600060208201905081810360008301526126a38184612435565b905092915050565b600060208201905081810360008301526126c48161246e565b9050919050565b600060208201905081810360008301526126e481612491565b9050919050565b60006020820190508181036000830152612704816124b4565b9050919050565b60006020820190508181036000830152612724816124d7565b9050919050565b60006020820190508181036000830152612744816124fa565b9050919050565b600060208201905081810360008301526127648161251d565b9050919050565b6000602082019050818103600083015261278481612540565b9050919050565b600060208201905081810360008301526127a481612563565b9050919050565b600060208201905081810360008301526127c481612586565b9050919050565b600060208201905081810360008301526127e4816125a9565b9050919050565b60006020820190508181036000830152612804816125cc565b9050919050565b60006020820190508181036000830152612824816125ef565b9050919050565b6000602082019050818103600083015261284481612612565b9050919050565b60006020820190506128606000830184612635565b92915050565b600060208201905061287b6000830184612644565b92915050565b600081519050919050565b600082825260208201905092915050565b60006128a8826129f0565b91506128b3836129f0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156128e8576128e7612ab5565b5b828201905092915050565b60006128fe826129f0565b9150612909836129f0565b92508261291957612918612ae4565b5b828204905092915050565b600061292f826129f0565b915061293a836129f0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561297357612972612ab5565b5b828202905092915050565b6000612989826129f0565b9150612994836129f0565b9250828210156129a7576129a6612ab5565b5b828203905092915050565b60006129bd826129d0565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612a25578082015181840152602081019050612a0a565b83811115612a34576000848401525b50505050565b60006002820490506001821680612a5257607f821691505b60208210811415612a6657612a65612b13565b5b50919050565b6000612a77826129f0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612aaa57612aa9612ab5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f544f4b454e32303a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f544f4b454e32303a207472616e736665722066726f6d20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b7f416d6f756e74206d757374206265206c657373207468616e20737570706c7900600082015250565b7f5768616c65206e6f7420616c6c6f776564000000000000000000000000000000600082015250565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f544f4b454e32303a20617070726f766520746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f544f4b454e32303a20617070726f76652066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460008201527f6869732066756e6374696f6e0000000000000000000000000000000000000000602082015250565b612efb816129b2565b8114612f0657600080fd5b50565b612f12816129c4565b8114612f1d57600080fd5b50565b612f29816129f0565b8114612f3457600080fd5b5056fe544f4b454e32303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f544f4b454e32303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220139f4f67b7c10e4520747a9c727b025035b67ecdb72849893dd9506fb0d1d5ce64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000b73464f582020546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000473464f5800000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): sFOX Token
Arg [1] : _symbol (string): sFOX
Arg [2] : _decimals (uint256): 18
Arg [3] : _supply (uint256): 1000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 73464f582020546f6b656e000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 73464f5800000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

10717:11381:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12440:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13359:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12724:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14452:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13528:315;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15398:253;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12626:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13851:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14566:378;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14356:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14952:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11715:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12827:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10310:148;;;:::i;:::-;;11258:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10096:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16228:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12531:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11745:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16008:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14077:271;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11685:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13033:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11206:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9970:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13208:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10466:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12440:83;12477:13;12510:5;12503:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12440:83;:::o;13359:161::-;13434:4;13451:39;13460:12;:10;:12::i;:::-;13474:7;13483:6;13451:8;:39::i;:::-;13508:4;13501:11;;13359:161;;;;:::o;12724:95::-;12777:7;12804;;12797:14;;12724:95;:::o;14452:106::-;14503:7;14530:20;;14523:27;;14452:106;:::o;13528:315::-;13626:4;13643:36;13653:6;13661:9;13672:6;13643:9;:36::i;:::-;13690:123;13699:6;13707:12;:10;:12::i;:::-;13721:91;13759:6;13721:91;;;;;;;;;;;;;;;;;:11;:19;13733:6;13721:19;;;;;;;;;;;;;;;:33;13741:12;:10;:12::i;:::-;13721:33;;;;;;;;;;;;;;;;:37;;:91;;;;;:::i;:::-;13690:8;:123::i;:::-;13831:4;13824:11;;13528:315;;;;;:::o;15398:253::-;15464:7;15503;;15492;:18;;15484:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15568:19;15591:10;:8;:10::i;:::-;15568:33;;15619:24;15631:11;15619:7;:11;;:24;;;;:::i;:::-;15612:31;;;15398:253;;;:::o;12626:90::-;12667:5;12698:9;;12685:23;;12626:90;:::o;13851:218::-;13939:4;13956:83;13965:12;:10;:12::i;:::-;13979:7;13988:50;14027:10;13988:11;:25;14000:12;:10;:12::i;:::-;13988:25;;;;;;;;;;;;;;;:34;14014:7;13988:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;13956:8;:83::i;:::-;14057:4;14050:11;;13851:218;;;;:::o;14566:378::-;14618:14;14635:12;:10;:12::i;:::-;14618:29;;14667:11;:19;14679:6;14667:19;;;;;;;;;;;;;;;;;;;;;;;;;14666:20;14658:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;14747:15;14772:19;14783:7;14772:10;:19::i;:::-;14746:45;;;;;;;;14820:28;14840:7;14820;:15;14828:6;14820:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;14802:7;:15;14810:6;14802:15;;;;;;;;;;;;;;;:46;;;;14869:20;14881:7;14869;;:11;;:20;;;;:::i;:::-;14859:7;:30;;;;14913:23;14928:7;14913:10;;:14;;:23;;;;:::i;:::-;14900:10;:36;;;;14607:337;;14566:378;:::o;14356:88::-;14398:7;14425:11;;14418:18;;14356:88;:::o;14952:438::-;15042:7;15081;;15070;:18;;15062:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;15140:17;15135:248;;15175:15;15200:19;15211:7;15200:10;:19::i;:::-;15174:45;;;;;;;;15241:7;15234:14;;;;;15135:248;15283:23;15315:19;15326:7;15315:10;:19::i;:::-;15281:53;;;;;;;;15356:15;15349:22;;;14952:438;;;;;:::o;11715:23::-;;;;:::o;12827:198::-;12893:7;12917:11;:20;12929:7;12917:20;;;;;;;;;;;;;;;;;;;;;;;;;12913:49;;;12946:7;:16;12954:7;12946:16;;;;;;;;;;;;;;;;12939:23;;;;12913:49;12980:37;13000:7;:16;13008:7;13000:16;;;;;;;;;;;;;;;;12980:19;:37::i;:::-;12973:44;;12827:198;;;;:::o;10310:148::-;10233:12;:10;:12::i;:::-;10223:22;;:6;;;;;;;;;;:22;;;10215:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;10417:1:::1;10380:40;;10401:6;::::0;::::1;;;;;;;;10380:40;;;;;;;;;;;;10448:1;10431:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;10310:148::o:0;11258:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10096:79::-;10134:7;10161:6;;;;;;;;;;;10154:13;;10096:79;:::o;16228:108::-;16285:4;16309:10;:19;16320:7;16309:19;;;;;;;;;;;;;;;;;;;;;;;;;16302:26;;16228:108;;;:::o;12531:87::-;12570:13;12603:7;12596:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12531:87;:::o;11745:30::-;;;;:::o;16008:212::-;10233:12;:10;:12::i;:::-;10223:22;;:6;;;;;;;;;;:22;;;10215:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16092:6:::1;16089:124;;;16136:6;16114:10;:19;16125:7;16114:19;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;16089:124;;;16182:10;:19;16193:7;16182:19;;;;;;;;;;;;;;;;16175:26;;;;;;;;;;;16089:124;16008:212:::0;;:::o;14077:271::-;14170:4;14187:131;14196:12;:10;:12::i;:::-;14210:7;14219:98;14258:15;14219:98;;;;;;;;;;;;;;;;;:11;:25;14231:12;:10;:12::i;:::-;14219:25;;;;;;;;;;;;;;;:34;14245:7;14219:34;;;;;;;;;;;;;;;;:38;;:98;;;;;:::i;:::-;14187:8;:131::i;:::-;14336:4;14329:11;;14077:271;;;;:::o;11685:23::-;;;;:::o;13033:167::-;13111:4;13128:42;13138:12;:10;:12::i;:::-;13152:9;13163:6;13128:9;:42::i;:::-;13188:4;13181:11;;13033:167;;;;:::o;11206:45::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9970:21::-;;;;;;;;;;;;:::o;13208:143::-;13289:7;13316:11;:18;13328:5;13316:18;;;;;;;;;;;;;;;:27;13335:7;13316:27;;;;;;;;;;;;;;;;13309:34;;13208:143;;;;:::o;10466:244::-;10233:12;:10;:12::i;:::-;10223:22;;:6;;;;;;;;;;:22;;;10215:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;10575:1:::1;10555:22;;:8;:22;;;;10547:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10665:8;10636:38;;10657:6;::::0;::::1;;;;;;;;10636:38;;;;;;;;;;;;10694:8;10685:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;10466:244:::0;:::o;5178:115::-;5231:15;5274:10;5259:26;;5178:115;:::o;15659:341::-;15769:1;15752:19;;:5;:19;;;;15744:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15852:1;15833:21;;:7;:21;;;;15825:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15938:6;15908:11;:18;15920:5;15908:18;;;;;;;;;;;;;;;:27;15927:7;15908:27;;;;;;;;;;;;;;;:36;;;;15976:7;15960:32;;15969:5;15960:32;;;15985:6;15960:32;;;;;;:::i;:::-;;;;;;;;15659:341;;;:::o;16344:603::-;16459:1;16441:20;;:6;:20;;;;16433:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;16545:1;16524:23;;:9;:23;;;;16516:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16617:1;16608:6;:10;16600:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16686:10;:18;16697:6;16686:18;;;;;;;;;;;;;;;;;;;;;;;;;16685:19;16677:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;16744:11;:19;16756:6;16744:19;;;;;;;;;;;;;;;;;;;;;;;;;16743:20;:47;;;;;16768:11;:22;16780:9;16768:22;;;;;;;;;;;;;;;;;;;;;;;;;16767:23;16743:47;16739:201;;;16807:44;16825:6;16833:9;16844:6;16807:17;:44::i;:::-;16739:201;;;16884:44;16902:6;16910:9;16921:6;16884:17;:44::i;:::-;16739:201;16344:603;;;:::o;6482:192::-;6568:7;6601:1;6596;:6;;6604:12;6588:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;6628:9;6644:1;6640;:5;;;;:::i;:::-;6628:17;;6665:1;6658:8;;;6482:192;;;;;:::o;21367:163::-;21408:7;21429:15;21446;21465:19;:17;:19::i;:::-;21428:56;;;;21502:20;21514:7;21502;:11;;:20;;;;:::i;:::-;21495:27;;;;21367:163;:::o;6942:132::-;7000:7;7027:39;7031:1;7034;7027:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7020:46;;6942:132;;;;:::o;6149:181::-;6207:7;6227:9;6243:1;6239;:5;;;;:::i;:::-;6227:17;;6268:1;6263;:6;;6255:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;6321:1;6314:8;;;6149:181;;;;:::o;19355:671::-;19414:7;19423;19432;19441;19450;19459;19468;19489:12;19503:13;19518:22;19544:50;19556:7;19565:4;;19571:5;;19578:15;;19544:11;:50::i;:::-;19488:106;;;;;;19605:23;19631:56;19650:7;19659:4;19665:5;19672:14;19631:18;:56::i;:::-;19605:82;;19698:19;19721:10;:8;:10::i;:::-;19698:33;;19743:15;19760:12;19776:39;19788:7;19797:4;19803:11;19776;:39::i;:::-;19742:73;;;;19826:23;19852:70;19872:7;19881:4;19887:5;19894:14;19910:11;19852:19;:70::i;:::-;19826:96;;19941:7;19950:15;19967:4;19973:15;19990:4;19996:5;20003:14;19933:85;;;;;;;;;;;;;;;;;;;;;;19355:671;;;;;;;;;:::o;6338:136::-;6396:7;6423:43;6427:1;6430;6423:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6416:50;;6338:136;;;;:::o;16955:560::-;17053:19;17076:10;:8;:10::i;:::-;17053:33;;17098:15;17115:23;17140:12;17154:23;17179:12;17193:13;17208:22;17234:19;17245:7;17234:10;:19::i;:::-;17097:156;;;;;;;;;;;;;;17264:13;17281:22;17291:11;17281:5;:9;;:22;;;;:::i;:::-;17264:39;;17314:69;17339:6;17347:9;17358:7;17367:15;17314:24;:69::i;:::-;17394:53;17406:4;17412:5;17419:4;17425:5;17432:14;17394:11;:53::i;:::-;17480:9;17463:44;;17472:6;17463:44;;;17491:15;17463:44;;;;;;:::i;:::-;;;;;;;;17042:473;;;;;;;;;16955:560;;;:::o;21538:555::-;21588:7;21597;21617:15;21635:7;;21617:25;;21653:15;21671:7;;21653:25;;21694:9;21689:289;21713:9;:16;;;;21709:1;:20;21689:289;;;21779:7;21755;:21;21763:9;21773:1;21763:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21755:21;;;;;;;;;;;;;;;;:31;:66;;;;21814:7;21790;:21;21798:9;21808:1;21798:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21790:21;;;;;;;;;;;;;;;;:31;21755:66;21751:97;;;21831:7;;21840;;21823:25;;;;;;;;;21751:97;21873:34;21885:7;:21;21893:9;21903:1;21893:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21885:21;;;;;;;;;;;;;;;;21873:7;:11;;:34;;;;:::i;:::-;21863:44;;21932:34;21944:7;:21;21952:9;21962:1;21952:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21944:21;;;;;;;;;;;;;;;;21932:7;:11;;:34;;;;:::i;:::-;21922:44;;21731:3;;;;;:::i;:::-;;;;21689:289;;;;22002:20;22014:7;;22002;;:11;;:20;;;;:::i;:::-;21992:7;:30;21988:61;;;22032:7;;22041;;22024:25;;;;;;;;21988:61;22068:7;22077;22060:25;;;;;;21538:555;;;:::o;7082:191::-;7168:7;7200:1;7196;:5;7203:12;7188:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;7227:9;7243:1;7239;:5;;;;:::i;:::-;7227:17;;7264:1;7257:8;;;7082:191;;;;;:::o;20034:451::-;20153:7;20162;20171;20191:12;20206:50;20252:3;20207:39;20233:12;;20208:19;20220:6;20208:7;:11;;:19;;;;:::i;:::-;20207:25;;:39;;;;:::i;:::-;20206:45;;:50;;;;:::i;:::-;20191:65;;20267:13;20283:51;20330:3;20284:40;20311:12;;20285:20;20297:7;20285;:11;;:20;;;;:::i;:::-;20284:26;;:40;;;;:::i;:::-;20283:46;;:51;;;;:::i;:::-;20267:67;;20345:22;20370:60;20426:3;20371:49;20407:12;;20372:29;20384:16;20372:7;:11;;:29;;;;:::i;:::-;20371:35;;:49;;;;:::i;:::-;20370:55;;:60;;;;:::i;:::-;20345:85;;20449:4;20455:5;20462:14;20441:36;;;;;;;;;20034:451;;;;;;;;:::o;20493:203::-;20613:7;20640:48;20673:14;20640:28;20662:5;20640:17;20652:4;20640:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:48;;;;:::i;:::-;20633:55;;20493:203;;;;;;:::o;20704:254::-;20799:7;20808;20828:15;20846:24;20858:11;20846:7;:11;;:24;;;;:::i;:::-;20828:42;;20881:12;20896:21;20905:11;20896:4;:8;;:21;;;;:::i;:::-;20881:36;;20936:7;20945:4;20928:22;;;;;;20704:254;;;;;;:::o;20966:393::-;21108:7;21128:13;21144:22;21154:11;21144:5;:9;;:22;;;;:::i;:::-;21128:38;;21177:22;21202:31;21221:11;21202:14;:18;;:31;;;;:::i;:::-;21177:56;;21244:23;21270:48;21303:14;21270:28;21292:5;21270:17;21282:4;21270:7;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;:32;;:48;;;;:::i;:::-;21244:74;;21336:15;21329:22;;;;;20966:393;;;;;;;:::o;6682:252::-;6740:7;6771:1;6766;:6;6762:47;;;6796:1;6789:8;;;;6762:47;6821:9;6837:1;6833;:5;;;;:::i;:::-;6821:17;;6866:1;6861;6857;:5;;;;:::i;:::-;:10;6849:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;6925:1;6918:8;;;6682:252;;;;;:::o;17523:255::-;17671:28;17691:7;17671;:15;17679:6;17671:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;17653:7;:15;17661:6;17653:15;;;;;;;;;;;;;;;:46;;;;17731:39;17754:15;17731:7;:18;17739:9;17731:18;;;;;;;;;;;;;;;;:22;;:39;;;;:::i;:::-;17710:7;:18;17718:9;17710:18;;;;;;;;;;;;;;;:60;;;;17523:255;;;;:::o;18917:430::-;19049:28;19071:5;19049:17;19061:4;19049:7;;:11;;:17;;;;:::i;:::-;:21;;:28;;;;:::i;:::-;19039:7;:38;;;;19101:20;19116:4;19101:10;;:14;;:20;;;;:::i;:::-;19088:10;:33;;;;19146:22;19162:5;19146:11;;:15;;:22;;;;:::i;:::-;19132:11;:36;;;;19202:40;19227:14;19202:20;;:24;;:40;;;;:::i;:::-;19179:20;:63;;;;19263:18;19275:5;19263:7;;:11;;:18;;;;:::i;:::-;19253:7;:28;;;;19329:1;19297:42;;19314:4;19297:42;;;19333:5;19297:42;;;;;;:::i;:::-;;;;;;;;18917:430;;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:133::-;195:5;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;152:133;;;;:::o;291:139::-;337:5;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;291:139;;;;:::o;436:329::-;495:6;544:2;532:9;523:7;519:23;515:32;512:119;;;550:79;;:::i;:::-;512:119;670:1;695:53;740:7;731:6;720:9;716:22;695:53;:::i;:::-;685:63;;641:117;436:329;;;;:::o;771:474::-;839:6;847;896:2;884:9;875:7;871:23;867:32;864:119;;;902:79;;:::i;:::-;864:119;1022:1;1047:53;1092:7;1083:6;1072:9;1068:22;1047:53;:::i;:::-;1037:63;;993:117;1149:2;1175:53;1220:7;1211:6;1200:9;1196:22;1175:53;:::i;:::-;1165:63;;1120:118;771:474;;;;;:::o;1251:619::-;1328:6;1336;1344;1393:2;1381:9;1372:7;1368:23;1364:32;1361:119;;;1399:79;;:::i;:::-;1361:119;1519:1;1544:53;1589:7;1580:6;1569:9;1565:22;1544:53;:::i;:::-;1534:63;;1490:117;1646:2;1672:53;1717:7;1708:6;1697:9;1693:22;1672:53;:::i;:::-;1662:63;;1617:118;1774:2;1800:53;1845:7;1836:6;1825:9;1821:22;1800:53;:::i;:::-;1790:63;;1745:118;1251:619;;;;;:::o;1876:468::-;1941:6;1949;1998:2;1986:9;1977:7;1973:23;1969:32;1966:119;;;2004:79;;:::i;:::-;1966:119;2124:1;2149:53;2194:7;2185:6;2174:9;2170:22;2149:53;:::i;:::-;2139:63;;2095:117;2251:2;2277:50;2319:7;2310:6;2299:9;2295:22;2277:50;:::i;:::-;2267:60;;2222:115;1876:468;;;;;:::o;2350:474::-;2418:6;2426;2475:2;2463:9;2454:7;2450:23;2446:32;2443:119;;;2481:79;;:::i;:::-;2443:119;2601:1;2626:53;2671:7;2662:6;2651:9;2647:22;2626:53;:::i;:::-;2616:63;;2572:117;2728:2;2754:53;2799:7;2790:6;2779:9;2775:22;2754:53;:::i;:::-;2744:63;;2699:118;2350:474;;;;;:::o;2830:329::-;2889:6;2938:2;2926:9;2917:7;2913:23;2909:32;2906:119;;;2944:79;;:::i;:::-;2906:119;3064:1;3089:53;3134:7;3125:6;3114:9;3110:22;3089:53;:::i;:::-;3079:63;;3035:117;2830:329;;;;:::o;3165:468::-;3230:6;3238;3287:2;3275:9;3266:7;3262:23;3258:32;3255:119;;;3293:79;;:::i;:::-;3255:119;3413:1;3438:53;3483:7;3474:6;3463:9;3459:22;3438:53;:::i;:::-;3428:63;;3384:117;3540:2;3566:50;3608:7;3599:6;3588:9;3584:22;3566:50;:::i;:::-;3556:60;;3511:115;3165:468;;;;;:::o;3639:118::-;3726:24;3744:5;3726:24;:::i;:::-;3721:3;3714:37;3639:118;;:::o;3763:109::-;3844:21;3859:5;3844:21;:::i;:::-;3839:3;3832:34;3763:109;;:::o;3878:364::-;3966:3;3994:39;4027:5;3994:39;:::i;:::-;4049:71;4113:6;4108:3;4049:71;:::i;:::-;4042:78;;4129:52;4174:6;4169:3;4162:4;4155:5;4151:16;4129:52;:::i;:::-;4206:29;4228:6;4206:29;:::i;:::-;4201:3;4197:39;4190:46;;3970:272;3878:364;;;;:::o;4248:366::-;4390:3;4411:67;4475:2;4470:3;4411:67;:::i;:::-;4404:74;;4487:93;4576:3;4487:93;:::i;:::-;4605:2;4600:3;4596:12;4589:19;;4248:366;;;:::o;4620:::-;4762:3;4783:67;4847:2;4842:3;4783:67;:::i;:::-;4776:74;;4859:93;4948:3;4859:93;:::i;:::-;4977:2;4972:3;4968:12;4961:19;;4620:366;;;:::o;4992:::-;5134:3;5155:67;5219:2;5214:3;5155:67;:::i;:::-;5148:74;;5231:93;5320:3;5231:93;:::i;:::-;5349:2;5344:3;5340:12;5333:19;;4992:366;;;:::o;5364:::-;5506:3;5527:67;5591:2;5586:3;5527:67;:::i;:::-;5520:74;;5603:93;5692:3;5603:93;:::i;:::-;5721:2;5716:3;5712:12;5705:19;;5364:366;;;:::o;5736:::-;5878:3;5899:67;5963:2;5958:3;5899:67;:::i;:::-;5892:74;;5975:93;6064:3;5975:93;:::i;:::-;6093:2;6088:3;6084:12;6077:19;;5736:366;;;:::o;6108:::-;6250:3;6271:67;6335:2;6330:3;6271:67;:::i;:::-;6264:74;;6347:93;6436:3;6347:93;:::i;:::-;6465:2;6460:3;6456:12;6449:19;;6108:366;;;:::o;6480:::-;6622:3;6643:67;6707:2;6702:3;6643:67;:::i;:::-;6636:74;;6719:93;6808:3;6719:93;:::i;:::-;6837:2;6832:3;6828:12;6821:19;;6480:366;;;:::o;6852:::-;6994:3;7015:67;7079:2;7074:3;7015:67;:::i;:::-;7008:74;;7091:93;7180:3;7091:93;:::i;:::-;7209:2;7204:3;7200:12;7193:19;;6852:366;;;:::o;7224:::-;7366:3;7387:67;7451:2;7446:3;7387:67;:::i;:::-;7380:74;;7463:93;7552:3;7463:93;:::i;:::-;7581:2;7576:3;7572:12;7565:19;;7224:366;;;:::o;7596:::-;7738:3;7759:67;7823:2;7818:3;7759:67;:::i;:::-;7752:74;;7835:93;7924:3;7835:93;:::i;:::-;7953:2;7948:3;7944:12;7937:19;;7596:366;;;:::o;7968:::-;8110:3;8131:67;8195:2;8190:3;8131:67;:::i;:::-;8124:74;;8207:93;8296:3;8207:93;:::i;:::-;8325:2;8320:3;8316:12;8309:19;;7968:366;;;:::o;8340:::-;8482:3;8503:67;8567:2;8562:3;8503:67;:::i;:::-;8496:74;;8579:93;8668:3;8579:93;:::i;:::-;8697:2;8692:3;8688:12;8681:19;;8340:366;;;:::o;8712:::-;8854:3;8875:67;8939:2;8934:3;8875:67;:::i;:::-;8868:74;;8951:93;9040:3;8951:93;:::i;:::-;9069:2;9064:3;9060:12;9053:19;;8712:366;;;:::o;9084:118::-;9171:24;9189:5;9171:24;:::i;:::-;9166:3;9159:37;9084:118;;:::o;9208:112::-;9291:22;9307:5;9291:22;:::i;:::-;9286:3;9279:35;9208:112;;:::o;9326:222::-;9419:4;9457:2;9446:9;9442:18;9434:26;;9470:71;9538:1;9527:9;9523:17;9514:6;9470:71;:::i;:::-;9326:222;;;;:::o;9554:210::-;9641:4;9679:2;9668:9;9664:18;9656:26;;9692:65;9754:1;9743:9;9739:17;9730:6;9692:65;:::i;:::-;9554:210;;;;:::o;9770:313::-;9883:4;9921:2;9910:9;9906:18;9898:26;;9970:9;9964:4;9960:20;9956:1;9945:9;9941:17;9934:47;9998:78;10071:4;10062:6;9998:78;:::i;:::-;9990:86;;9770:313;;;;:::o;10089:419::-;10255:4;10293:2;10282:9;10278:18;10270:26;;10342:9;10336:4;10332:20;10328:1;10317:9;10313:17;10306:47;10370:131;10496:4;10370:131;:::i;:::-;10362:139;;10089:419;;;:::o;10514:::-;10680:4;10718:2;10707:9;10703:18;10695:26;;10767:9;10761:4;10757:20;10753:1;10742:9;10738:17;10731:47;10795:131;10921:4;10795:131;:::i;:::-;10787:139;;10514:419;;;:::o;10939:::-;11105:4;11143:2;11132:9;11128:18;11120:26;;11192:9;11186:4;11182:20;11178:1;11167:9;11163:17;11156:47;11220:131;11346:4;11220:131;:::i;:::-;11212:139;;10939:419;;;:::o;11364:::-;11530:4;11568:2;11557:9;11553:18;11545:26;;11617:9;11611:4;11607:20;11603:1;11592:9;11588:17;11581:47;11645:131;11771:4;11645:131;:::i;:::-;11637:139;;11364:419;;;:::o;11789:::-;11955:4;11993:2;11982:9;11978:18;11970:26;;12042:9;12036:4;12032:20;12028:1;12017:9;12013:17;12006:47;12070:131;12196:4;12070:131;:::i;:::-;12062:139;;11789:419;;;:::o;12214:::-;12380:4;12418:2;12407:9;12403:18;12395:26;;12467:9;12461:4;12457:20;12453:1;12442:9;12438:17;12431:47;12495:131;12621:4;12495:131;:::i;:::-;12487:139;;12214:419;;;:::o;12639:::-;12805:4;12843:2;12832:9;12828:18;12820:26;;12892:9;12886:4;12882:20;12878:1;12867:9;12863:17;12856:47;12920:131;13046:4;12920:131;:::i;:::-;12912:139;;12639:419;;;:::o;13064:::-;13230:4;13268:2;13257:9;13253:18;13245:26;;13317:9;13311:4;13307:20;13303:1;13292:9;13288:17;13281:47;13345:131;13471:4;13345:131;:::i;:::-;13337:139;;13064:419;;;:::o;13489:::-;13655:4;13693:2;13682:9;13678:18;13670:26;;13742:9;13736:4;13732:20;13728:1;13717:9;13713:17;13706:47;13770:131;13896:4;13770:131;:::i;:::-;13762:139;;13489:419;;;:::o;13914:::-;14080:4;14118:2;14107:9;14103:18;14095:26;;14167:9;14161:4;14157:20;14153:1;14142:9;14138:17;14131:47;14195:131;14321:4;14195:131;:::i;:::-;14187:139;;13914:419;;;:::o;14339:::-;14505:4;14543:2;14532:9;14528:18;14520:26;;14592:9;14586:4;14582:20;14578:1;14567:9;14563:17;14556:47;14620:131;14746:4;14620:131;:::i;:::-;14612:139;;14339:419;;;:::o;14764:::-;14930:4;14968:2;14957:9;14953:18;14945:26;;15017:9;15011:4;15007:20;15003:1;14992:9;14988:17;14981:47;15045:131;15171:4;15045:131;:::i;:::-;15037:139;;14764:419;;;:::o;15189:::-;15355:4;15393:2;15382:9;15378:18;15370:26;;15442:9;15436:4;15432:20;15428:1;15417:9;15413:17;15406:47;15470:131;15596:4;15470:131;:::i;:::-;15462:139;;15189:419;;;:::o;15614:222::-;15707:4;15745:2;15734:9;15730:18;15722:26;;15758:71;15826:1;15815:9;15811:17;15802:6;15758:71;:::i;:::-;15614:222;;;;:::o;15842:214::-;15931:4;15969:2;15958:9;15954:18;15946:26;;15982:67;16046:1;16035:9;16031:17;16022:6;15982:67;:::i;:::-;15842:214;;;;:::o;16143:99::-;16195:6;16229:5;16223:12;16213:22;;16143:99;;;:::o;16248:169::-;16332:11;16366:6;16361:3;16354:19;16406:4;16401:3;16397:14;16382:29;;16248:169;;;;:::o;16423:305::-;16463:3;16482:20;16500:1;16482:20;:::i;:::-;16477:25;;16516:20;16534:1;16516:20;:::i;:::-;16511:25;;16670:1;16602:66;16598:74;16595:1;16592:81;16589:107;;;16676:18;;:::i;:::-;16589:107;16720:1;16717;16713:9;16706:16;;16423:305;;;;:::o;16734:185::-;16774:1;16791:20;16809:1;16791:20;:::i;:::-;16786:25;;16825:20;16843:1;16825:20;:::i;:::-;16820:25;;16864:1;16854:35;;16869:18;;:::i;:::-;16854:35;16911:1;16908;16904:9;16899:14;;16734:185;;;;:::o;16925:348::-;16965:7;16988:20;17006:1;16988:20;:::i;:::-;16983:25;;17022:20;17040:1;17022:20;:::i;:::-;17017:25;;17210:1;17142:66;17138:74;17135:1;17132:81;17127:1;17120:9;17113:17;17109:105;17106:131;;;17217:18;;:::i;:::-;17106:131;17265:1;17262;17258:9;17247:20;;16925:348;;;;:::o;17279:191::-;17319:4;17339:20;17357:1;17339:20;:::i;:::-;17334:25;;17373:20;17391:1;17373:20;:::i;:::-;17368:25;;17412:1;17409;17406:8;17403:34;;;17417:18;;:::i;:::-;17403:34;17462:1;17459;17455:9;17447:17;;17279:191;;;;:::o;17476:96::-;17513:7;17542:24;17560:5;17542:24;:::i;:::-;17531:35;;17476:96;;;:::o;17578:90::-;17612:7;17655:5;17648:13;17641:21;17630:32;;17578:90;;;:::o;17674:126::-;17711:7;17751:42;17744:5;17740:54;17729:65;;17674:126;;;:::o;17806:77::-;17843:7;17872:5;17861:16;;17806:77;;;:::o;17889:86::-;17924:7;17964:4;17957:5;17953:16;17942:27;;17889:86;;;:::o;17981:307::-;18049:1;18059:113;18073:6;18070:1;18067:13;18059:113;;;18158:1;18153:3;18149:11;18143:18;18139:1;18134:3;18130:11;18123:39;18095:2;18092:1;18088:10;18083:15;;18059:113;;;18190:6;18187:1;18184:13;18181:101;;;18270:1;18261:6;18256:3;18252:16;18245:27;18181:101;18030:258;17981:307;;;:::o;18294:320::-;18338:6;18375:1;18369:4;18365:12;18355:22;;18422:1;18416:4;18412:12;18443:18;18433:81;;18499:4;18491:6;18487:17;18477:27;;18433:81;18561:2;18553:6;18550:14;18530:18;18527:38;18524:84;;;18580:18;;:::i;:::-;18524:84;18345:269;18294:320;;;:::o;18620:233::-;18659:3;18682:24;18700:5;18682:24;:::i;:::-;18673:33;;18728:66;18721:5;18718:77;18715:103;;;18798:18;;:::i;:::-;18715:103;18845:1;18838:5;18834:13;18827:20;;18620:233;;;:::o;18859:180::-;18907:77;18904:1;18897:88;19004:4;19001:1;18994:15;19028:4;19025:1;19018:15;19045:180;19093:77;19090:1;19083:88;19190:4;19187:1;19180:15;19214:4;19211:1;19204:15;19231:180;19279:77;19276:1;19269:88;19376:4;19373:1;19366:15;19400:4;19397:1;19390:15;19417:180;19465:77;19462:1;19455:88;19562:4;19559:1;19552:15;19586:4;19583:1;19576:15;19726:117;19835:1;19832;19825:12;19849:102;19890:6;19941:2;19937:7;19932:2;19925:5;19921:14;19917:28;19907:38;;19849:102;;;:::o;19957:224::-;20097:34;20093:1;20085:6;20081:14;20074:58;20166:7;20161:2;20153:6;20149:15;20142:32;19957:224;:::o;20187:226::-;20327:34;20323:1;20315:6;20311:14;20304:58;20396:9;20391:2;20383:6;20379:15;20372:34;20187:226;:::o;20419:229::-;20559:34;20555:1;20547:6;20543:14;20536:58;20628:12;20623:2;20615:6;20611:15;20604:37;20419:229;:::o;20654:225::-;20794:34;20790:1;20782:6;20778:14;20771:58;20863:8;20858:2;20850:6;20846:15;20839:33;20654:225;:::o;20885:177::-;21025:29;21021:1;21013:6;21009:14;21002:53;20885:177;:::o;21068:181::-;21208:33;21204:1;21196:6;21192:14;21185:57;21068:181;:::o;21255:167::-;21395:19;21391:1;21383:6;21379:14;21372:43;21255:167;:::o;21428:220::-;21568:34;21564:1;21556:6;21552:14;21545:58;21637:3;21632:2;21624:6;21620:15;21613:28;21428:220;:::o;21654:182::-;21794:34;21790:1;21782:6;21778:14;21771:58;21654:182;:::o;21842:228::-;21982:34;21978:1;21970:6;21966:14;21959:58;22051:11;22046:2;22038:6;22034:15;22027:36;21842:228;:::o;22076:223::-;22216:34;22212:1;22204:6;22200:14;22193:58;22285:6;22280:2;22272:6;22268:15;22261:31;22076:223;:::o;22305:225::-;22445:34;22441:1;22433:6;22429:14;22422:58;22514:8;22509:2;22501:6;22497:15;22490:33;22305:225;:::o;22536:231::-;22676:34;22672:1;22664:6;22660:14;22653:58;22745:14;22740:2;22732:6;22728:15;22721:39;22536:231;:::o;22773:122::-;22846:24;22864:5;22846:24;:::i;:::-;22839:5;22836:35;22826:63;;22885:1;22882;22875:12;22826:63;22773:122;:::o;22901:116::-;22971:21;22986:5;22971:21;:::i;:::-;22964:5;22961:32;22951:60;;23007:1;23004;22997:12;22951:60;22901:116;:::o;23023:122::-;23096:24;23114:5;23096:24;:::i;:::-;23089:5;23086:35;23076:63;;23135:1;23132;23125:12;23076:63;23023:122;:::o

Swarm Source

ipfs://139f4f67b7c10e4520747a9c727b025035b67ecdb72849893dd9506fb0d1d5ce
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.