ETH Price: $2,413.97 (-0.15%)

Token

CherryPYE (CHERRYPYE)
 

Overview

Max Total Supply

69,738.595371624631887738 CHERRYPYE

Holders

252

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19,451.679224113846129501 CHERRYPYE

Value
$0.00
0x255cb9b93fc37af5af8264d5e013ebc9378b543b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CHERRY

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, MIT license
File 1 of 17 : Cherry3.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.16;

import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/Arrays.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "./interfaces/IPYESwapFactory.sol";
import "./interfaces/IPYESwapRouter.sol";


contract CHERRY is Context, AccessControl, ERC20 {
    using SafeMath for uint256;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
    bytes32 public constant FEE_SETTER_ROLE = keccak256("FEE_SETTER_ROLE");

    // staked struct	
    struct Staked {	
        uint256 amount;	
    }	
    address[] holders;	
    mapping (address => uint256) holderIndexes;	
    uint256 public totalStaked;

    // Fees
    // Add and remove fee types and destinations here as needed
    struct Fees {
        uint256 developmentFee;
        uint256 buybackFee;
        address developmentAddress;
    }

    // Transaction fee values
    // Add and remove fee value types here as needed
    struct FeeValues {
        uint256 transferAmount;
        uint256 development;
        uint256 buyback;
    }

    // Token details
    mapping (address => uint256) _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => Staked) public staked;

    // denylist and staking contract mappings	
    mapping (address => bool) isDenylisted; 	
    mapping (address => bool) isStakingContract; 
    
    // Allowed Callers of Snapshot()
    mapping (address => bool) public isSnapshotter;


    // Set total supply here
    uint256 private _tTotal;
    uint256 private constant MAX_SUPPLY = 100000 * 10**18;

    // Tracker for total burned amount
    uint256 private _bTotal;

    // auto set buyback to false. additional buyback params. blockPeriod acts as a time delay in the shouldAutoBuyback(). Last uint represents last block for buyback occurance.
    struct Settings {
        bool autoBuybackEnabled;
        uint256 autoBuybackCap;
        uint256 autoBuybackAccumulator;
        uint256 autoBuybackAmount;
        uint256 autoBuybackBlockPeriod;
        uint256 autoBuybackBlockLast;
        uint256 minimumBuyBackThreshold;
    }

    // Users states
    mapping (address => bool) private _isExcludedFromFee;

    // Outside Swap Pairs
    mapping (address => bool) private _includeSwapFee;


    // Pair Details
    mapping (uint256 => address) private pairs;
    mapping (uint256 => address) private tokens;
    uint256 private pairsLength;
    mapping (address => bool) public _isPairAddress;


    // Set the name, symbol, and decimals here
    string constant _name = "CherryPYE";
    string constant _symbol = "CHERRYPYE";
    uint8 constant _decimals = 18;

    Fees private _defaultFees;
    Fees private _previousFees;
    Fees private _emptyFees;
    Fees public _buyFees;
    Fees public _sellFees;
    Fees private _outsideBuyFees;
    Fees private _outsideSellFees;

    Settings public _buyback;

    IPYESwapRouter public pyeSwapRouter;
    address public pyeSwapPair;
    address public WETH;
    address public constant _burnAddress = 0x000000000000000000000000000000000000dEaD;

    bool public swapEnabled = true;
    bool inSwap;

    modifier swapping() { inSwap = true; _; inSwap = false; }
    modifier onlyExchange() {
        bool isPair = false;
        for(uint i = 0; i < pairsLength; i++) {
            if(pairs[i] == msg.sender) isPair = true;
        }
        require(
            msg.sender == address(pyeSwapRouter)
            || isPair
            , "PYE: NOT_ALLOWED"
        );
        _;
    }


    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    // Edit the constructor in order to declare default fees on deployment
    constructor (address _router, address _development, uint256 _developmentFeeBuy, uint256 _buybackFeeBuy, uint256 _developmentFeeSell, uint256 _buybackFeeSell) ERC20("","") {
        _setupRole(MINTER_ROLE, msg.sender);
        _setupRole(BURNER_ROLE, msg.sender);
        _setupRole(FEE_SETTER_ROLE, msg.sender);
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);

        pyeSwapRouter = IPYESwapRouter(_router);
        WETH = pyeSwapRouter.WETH();
        pyeSwapPair = IPYESwapFactory(pyeSwapRouter.factory())
        .createPair(address(this), WETH, true, address(this));

        tokens[pairsLength] = WETH;
        pairs[pairsLength] = pyeSwapPair;
        pairsLength += 1;
        _isPairAddress[pyeSwapPair] = true;

        _isExcludedFromFee[_msgSender()] = true;
        _isExcludedFromFee[pyeSwapPair] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_burnAddress] = true;

        isSnapshotter[msg.sender] = true;

        // This should match the struct Fee
        _defaultFees = Fees(
            _developmentFeeBuy,
            _buybackFeeBuy,
            _development
        );

        _buyFees = Fees(
            _developmentFeeBuy,
            _buybackFeeBuy,
            _development
        );

        _sellFees = Fees(
            _developmentFeeSell,
            _buybackFeeSell,
            _development
        );

        _outsideBuyFees = Fees(
            _developmentFeeBuy.add(_buybackFeeBuy),
            0,
            _development
        );

        _outsideSellFees = Fees(
            _developmentFeeSell.add(_buybackFeeSell),
            0,
            _development
        );
    }

    function name() public pure override returns (string memory) {
        return _name;
    }

    function symbol() public pure override returns (string memory) {
        return _symbol;
    }

    function decimals() public pure override returns (uint8) {
        return _decimals;
    }

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

    function maxSupply() public pure returns (uint256) {
        return MAX_SUPPLY;
    }

    function totalBurned() public view returns (uint256) {
        return _balances[_burnAddress].add(_bTotal);
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[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, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

    function excludeFromFee(address account) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");
        _isExcludedFromFee[account] = false;
    }

    function addOutsideSwapPair(address account) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");
        _includeSwapFee[account] = true;
    }

    function removeOutsideSwapPair(address account) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");
        _includeSwapFee[account] = false;
    }

    // Functions to update fees and addresses 

    function setBuyFees(uint256 _developmentFee, uint256 _buybackFee) external {
        require(hasRole(FEE_SETTER_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");
        require(_developmentFee.add(_buybackFee) <= 2500, "Fees exceed max limit");
        _defaultFees.developmentFee = _developmentFee;
        _defaultFees.buybackFee = _buybackFee;

        _buyFees.developmentFee = _developmentFee;
        _buyFees.buybackFee = _buybackFee;

        _outsideBuyFees.developmentFee = _developmentFee.add(_buybackFee);
    }

    function setSellFees(uint256 _developmentFee, uint256 _buybackFee) external {
        require(hasRole(FEE_SETTER_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");
        require(_developmentFee.add(_buybackFee) <= 2500, "Fees exceed max limit");
        _sellFees.developmentFee = _developmentFee;
        _sellFees.buybackFee = _buybackFee;

        _outsideSellFees.developmentFee = _developmentFee.add(_buybackFee);
    }

    function setdevelopmentAddress(address _development) external {
        require(hasRole(FEE_SETTER_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");
        require(_development != address(0), "PYE: Address Zero is not allowed");
        _defaultFees.developmentAddress = _development;
        _buyFees.developmentAddress = _development;
        _sellFees.developmentAddress = _development;
        _outsideBuyFees.developmentAddress = _development;
        _outsideSellFees.developmentAddress = _development;
    }

    function updateRouterAndPair(address _router, address _pair) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");
        _isExcludedFromFee[pyeSwapPair] = false;
        pyeSwapRouter = IPYESwapRouter(_router);
        pyeSwapPair = _pair;
        WETH = pyeSwapRouter.WETH();

        _isPairAddress[pyeSwapPair] = true;
        _isExcludedFromFee[pyeSwapPair] = true;

        pairs[0] = pyeSwapPair;
        tokens[0] = WETH;
    }

    //to receive ETH from pyeRouter when swapping
    receive() external payable {}

    function _getValues(uint256 tAmount) private view returns (FeeValues memory) {
        FeeValues memory values = FeeValues(
            0,
            calculateFee(tAmount, _defaultFees.developmentFee),
            calculateFee(tAmount, _defaultFees.buybackFee)
        );

        values.transferAmount = tAmount.sub(values.development).sub(values.buyback);
        return values;
    }

    function calculateFee(uint256 _amount, uint256 _fee) private pure returns (uint256) {
        if(_fee == 0) return 0;
        return _amount.mul(_fee).div(
            10**4
        );
    }

    function removeAllFee() private {
        _previousFees = _defaultFees;
        _defaultFees = _emptyFees;
    }

    function setSellFee() private {
        _defaultFees = _sellFees;
    }

    function setOutsideBuyFee() private {
        _previousFees = _defaultFees;
        _defaultFees = _outsideBuyFees;
    }

    function setOutsideSellFee() private {
        _previousFees = _defaultFees;
        _defaultFees = _outsideSellFees;
    }

    function restoreAllFee() private {
        _defaultFees = _previousFees;
    }

    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

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

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

    // function getBalance(address keeper) public view returns (uint256){
    //     return _balances[keeper];
    // }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(!isDenylisted[to]);
        _beforeTokenTransfer(from, to, amount);

        if(shouldAutoBuyback(amount)){ triggerAutoBuyback(); }

        if(isStakingContract[to]) { 	
            uint256 newAmountAdd = staked[from].amount.add(amount);	
            setStaked(from, newAmountAdd);	
        }	
        if(isStakingContract[from]) {	
            uint256 newAmountSub = staked[to].amount.sub(amount);	
            setStaked(to, newAmountSub);	
        }

        //indicates if fee should be deducted from transfer of tokens
        uint8 takeFee = 0;
        if(_isPairAddress[to] && from != address(pyeSwapRouter) && !isExcludedFromFee(from)) {
            takeFee = 1;
        } else if(_includeSwapFee[from]) {
            takeFee = 2;
        } else if(_includeSwapFee[to]) {
            takeFee = 3;
        }

        //transfer amount, it will take tax
        _tokenTransfer(from, to, amount, takeFee);
    }

    function getCirculatingSupply() public view returns (uint256) {
        return _tTotal.sub(balanceOf(_burnAddress)).sub(balanceOf(address(0)));
    }

    function getTotalFee(address account) public view returns (uint256) {
        if(_isExcludedFromFee[account]) {
            return 0;
        } else {
        return _defaultFees.developmentFee
            .add(_defaultFees.buybackFee);
        }
    }

    function getFee() public view returns (uint256) {
        return _defaultFees.developmentFee
            .add(_defaultFees.buybackFee);
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount, uint8 takeFee) private {
        if(takeFee == 0 || takeFee == 1) {
            removeAllFee();

            _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
            _balances[recipient] = _balances[recipient].add(amount);

            emit Transfer(sender, recipient, amount);

            if(takeFee == 0) {
                restoreAllFee();
            } else if(takeFee == 1) {
                setSellFee();
            }
        } else {
            if(takeFee == 2) {
                setOutsideBuyFee();
            } else if(takeFee == 3) {
                setOutsideSellFee();
            }

            FeeValues memory _values = _getValues(amount);
            _balances[sender] = _balances[sender].sub(amount, "Insufficient Balance");
            _balances[recipient] = _balances[recipient].add(_values.transferAmount);
            _takeFees(_values);

            restoreAllFee();

            emit Transfer(sender, recipient, _values.transferAmount);
            emit Transfer(sender, _defaultFees.developmentAddress, _values.development);

        }
    }

    function _takeFees(FeeValues memory values) private {
        _takeFee(values.development, _defaultFees.developmentAddress);
    }

    function _takeFee(uint256 tAmount, address recipient) private {
        if(recipient == address(0)) return;
        if(tAmount == 0) return;

        _balances[recipient] = _balances[recipient].add(tAmount);
    }

    // This function transfers the fees to the correct addresses. 
    function handleFee(uint256 amount, address token) public onlyExchange {
        if(amount == 0) {
            restoreAllFee(); 
        } else {
            uint256 tokenIndex = _getTokenIndex(token);
            if(tokenIndex < pairsLength) {
                uint256 allowanceT = IERC20(token).allowance(msg.sender, address(this));
                if(allowanceT >= amount) {
                    IERC20(token).transferFrom(msg.sender, address(this), amount);

                    if(token != WETH) {
                        uint256 balanceBefore = IERC20(address(WETH)).balanceOf(address(this));
                        swapToWETH(amount, token);
                        uint256 fAmount = IERC20(address(WETH)).balanceOf(address(this)).sub(balanceBefore);
                        
                        // All fees to be declared here in order to be calculated and sent
                        uint256 totalFee = getFee();
                        uint256 developmentFeeAmount = fAmount.mul(_defaultFees.developmentFee).div(totalFee);

                        IERC20(WETH).transfer(_defaultFees.developmentAddress, developmentFeeAmount);
                    } else {
                        // All fees to be declared here in order to be calculated and sent
                        uint256 totalFee = getFee();
                        uint256 developmentFeeAmount = amount.mul(_defaultFees.developmentFee).div(totalFee);

                        IERC20(token).transfer(_defaultFees.developmentAddress, developmentFeeAmount);
                    }

                    restoreAllFee();
                }
            }
        }
    }

    function swapToWETH(uint256 amount, address token) internal {
        address[] memory path = new address[](2);
        path[0] = token;
        path[1] = WETH;

        IERC20(token).approve(address(pyeSwapRouter), amount);
        pyeSwapRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    // runs check to see if autobuyback should trigger
    function shouldAutoBuyback(uint256 amount) internal view returns (bool) {
        return msg.sender != pyeSwapPair
        && !inSwap
        && _buyback.autoBuybackEnabled
        && _buyback.autoBuybackBlockLast + _buyback.autoBuybackBlockPeriod <= block.number // After N blocks from last buyback
        && IERC20(address(WETH)).balanceOf(address(this)) >= _buyback.autoBuybackAmount
        && amount >= _buyback.minimumBuyBackThreshold;
    }

    // triggers auto buyback
    function triggerAutoBuyback() internal {
        buyTokens(_buyback.autoBuybackAmount, _burnAddress);
        _buyback.autoBuybackBlockLast = block.number;
        _buyback.autoBuybackAccumulator = _buyback.autoBuybackAccumulator.add(_buyback.autoBuybackAmount);
        if(_buyback.autoBuybackAccumulator > _buyback.autoBuybackCap){ _buyback.autoBuybackEnabled = false; }
    }

    // logic to purchase tokens
    function buyTokens(uint256 amount, address to) internal swapping {
        address[] memory path = new address[](2);
        path[0] = WETH;
        path[1] = address(this);

        IERC20(WETH).approve(address(pyeSwapRouter), amount);
        pyeSwapRouter.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            amount,
            0,
            path,
            to,
            block.timestamp
        );
    }

    // manually adjust the buyback settings to suit your needs
    function setAutoBuybackSettings(bool _enabled, uint256 _cap, uint256 _amount, uint256 _period, uint256 _minimumThreshold) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");
        _buyback.autoBuybackEnabled = _enabled;
        _buyback.autoBuybackCap = _cap;
        _buyback.autoBuybackAccumulator = 0;
        _buyback.autoBuybackAmount = _amount;
        _buyback.autoBuybackBlockPeriod = _period;
        _buyback.autoBuybackBlockLast = block.number;
        _buyback.minimumBuyBackThreshold = _minimumThreshold;
    }

    function _getTokenIndex(address _token) internal view returns (uint256) {
        uint256 index = pairsLength + 1;
        for(uint256 i = 0; i < pairsLength; i++) {
            if(tokens[i] == _token) index = i;
        }

        return index;
    }

    function addPair(address _pair, address _token) public {
        address factory = pyeSwapRouter.factory();
        require(
            msg.sender == factory
            || msg.sender == address(pyeSwapRouter)
            || msg.sender == address(this)
        , "PYE: NOT_ALLOWED"
        );

        if(!_checkPairRegistered(_pair)) {
            _isExcludedFromFee[_pair] = true;
            _isPairAddress[_pair] = true;

            pairs[pairsLength] = _pair;
            tokens[pairsLength] = _token;

            pairsLength += 1;
        }
    }

    function _checkPairRegistered(address _pair) internal view returns (bool) {
        bool isPair = false;
        for(uint i = 0; i < pairsLength; i++) {
            if(pairs[i] == _pair) isPair = true;
        }

        return isPair;
    }

    // Rescue eth that is sent here by mistake
    function rescueETH(uint256 amount, address to) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");
        payable(to).transfer(amount);
      }

    // Rescue tokens that are sent here by mistake
    function rescueToken(IERC20 token, uint256 amount, address to) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");
        if( token.balanceOf(address(this)) < amount ) {
            amount = token.balanceOf(address(this));
        }
        token.transfer(to, amount);
    }

    /**	
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.	
     *	
     * Does not update the allowance amount in case of infinite allowance.	
     * Revert if not enough allowance is available.	
     *	
     * Might emit an {Approval} event.	
     */	
    function _spendAllowance(	
        address owner,	
        address spender,	
        uint256 amount	
    ) internal override virtual {	
        uint256 currentAllowance = allowance(owner, spender);	
        if (currentAllowance != type(uint256).max) {	
            require(currentAllowance >= amount, "ERC20: insufficient allowance");	
            unchecked {	
                _approve(owner, spender, currentAllowance - amount);	
            }	
        }	
    }

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

        _tTotal = _tTotal.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) override internal {	
        require(account != address(0), 'ERC20: burn from the zero address');	
        _balances[account] = _balances[account].sub(amount, 'ERC20: burn amount exceeds balance');	
        _tTotal = _tTotal.sub(amount);	
        _bTotal = _bTotal.add(amount);	
        emit Transfer(account, address(0), amount);	
    }

    
    function burnFrom(address _from, uint256 _amount) public {	
        require(hasRole(BURNER_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");	
        _spendAllowance(_from, msg.sender, _amount);
        _beforeTokenTransfer(_from, address(0), _amount);		
        _burn(_from, _amount);	
        
    }	


    /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef).
    function mint(address _to, uint256 _amount) public {
        require(hasRole(MINTER_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");
        require(totalSupply().add(_amount) <= MAX_SUPPLY, "CHERRY: REACHED_MAX_SUPPLY");
        _beforeTokenTransfer(address(0), _to, _amount);
        _mint(_to, _amount);
        
    }

    function burn(uint256 _amount) public {
        require(hasRole(BURNER_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");
        _beforeTokenTransfer(msg.sender, address(0), _amount);
        _burn(msg.sender, _amount);

    }

    //-------------------- BEGIN STAKED FXNS ------------------------------	
    function getOwnedBalance(address account) public view returns (uint256){	
        return staked[account].amount.add(_balances[account]);	
    }	
    function setStaked(address holder, uint256 amount) internal  {	
        if(amount > 0 && staked[holder].amount == 0){	
            addHolder(holder);	
        }else if(amount == 0 && staked[holder].amount > 0){	
            removeHolder(holder);	
        }	
        totalStaked = totalStaked.sub(staked[holder].amount).add(amount);	
        staked[holder].amount = amount;	
    }	
    function addHolder(address holder) internal {	
        holderIndexes[holder] = holders.length;	
        holders.push(holder);	
    }	
    function removeHolder(address holder) internal {	
        holders[holderIndexes[holder]] = holders[holders.length-1];	
        holderIndexes[holders[holders.length-1]] = holderIndexes[holder];	
        holders.pop();	
    }	
    // set an address as a staking contract	
    function setIsStakingContract(address account, bool set) external {	
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");	
        isStakingContract[account] = set;	
    }	
    //--------------------------------------BEGIN DENYLIST FUNCTIONS---------|	
    // enter an address to denylist it. This blocks transfers TO that address. Balcklisted members can still sell.	
    function denylistAddress(address addressToDenylist) external {	
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");	
        require(!isDenylisted[addressToDenylist] , "Address is already denylisted!");	
        isDenylisted[addressToDenylist] = true;	
    }	
    // enter a currently denylisted address to un-denylist it.	
    function removeFromDenylist(address addressToRemove) external {	
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");	
        require(isDenylisted[addressToRemove] , "Address has not been denylisted! Enter an address that is on the denylist.");	
        isDenylisted[addressToRemove] = false;	
    }

    // -------------------------------------BEGIN MODIFIED SNAPSHOT FUNCTIONS--------------------|

    //@ dev a direct, modified implementation of ERC20 snapshot designed to track totalOwnedBalance (the sum of balanceOf(acct) and staked.amount of that acct), as opposed
    // to just balanceOf(acct). totalSupply is tracked normally via _tTotal in the totalSupply() function.

    using Arrays for uint256[];
    using Counters for Counters.Counter;
    Counters.Counter private _currentSnapshotId;

    struct Snapshots {
        uint256[] ids;
        uint256[] values;
    }

    mapping(address => Snapshots) private _accountBalanceSnapshots;
    Snapshots private _totalSupplySnapshots;
    event Snapshot(uint256 id);

    // owner grant and revoke Snapshotter role to account.
    function setIsSnapshotter(address account, bool flag) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "CHERRY: NOT_ALLOWED");
        isSnapshotter[account] = flag;
    }

    // generate a snapshot, calls internal _snapshot().
    function snapshot() public {
        require(isSnapshotter[msg.sender], "Caller is not allowed to snapshot");
        _snapshot();
    }

    function _snapshot() internal virtual returns (uint256) {
        _currentSnapshotId.increment();

        uint256 currentId = _getCurrentSnapshotId();
        emit Snapshot(currentId);
        return currentId;
    }

    function _getCurrentSnapshotId() internal view virtual returns (uint256) {
        return _currentSnapshotId.current();
    }

    function getCurrentSnapshotID() public view returns (uint256) {
        return _getCurrentSnapshotId();
    }

    // modified to also read users staked balance. 
    function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);

        return snapshotted ? value : (getOwnedBalance(account));
    }

    function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) {
        (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);

        return snapshotted ? value : totalSupply();
    }

    function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) {
        require(snapshotId > 0, "ERC20Snapshot: id is 0");
        require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id");

        uint256 index = snapshots.ids.findUpperBound(snapshotId);

        if (index == snapshots.ids.length) {
            return (false, 0);
        } else {
            return (true, snapshots.values[index]);
        }
    }

    // tracks staked and owned
    function _updateAccountSnapshot(address account) private {
        _updateSnapshot(_accountBalanceSnapshots[account], (balanceOf(account) + staked[account].amount));
    }

    function _updateTotalSupplySnapshot() private {
        _updateSnapshot(_totalSupplySnapshots, totalSupply());
    }

    function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
        uint256 currentId = _getCurrentSnapshotId();
        if (_lastSnapshotId(snapshots.ids) < currentId) {
            snapshots.ids.push(currentId);
            snapshots.values.push(currentValue);
        }
    }

    function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
        if (ids.length == 0) {
            return 0;
        } else {
            return ids[ids.length - 1];
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) {
            // mint
            _updateAccountSnapshot(to);
            _updateTotalSupplySnapshot();
        } else if (to == address(0)) {
            // burn
            _updateAccountSnapshot(from);
            _updateTotalSupplySnapshot();
        } else if (isStakingContract[to]) { 
            // user is staking
            _updateAccountSnapshot(from);
        } else if (isStakingContract[from]) {
            // user is unstaking
            _updateAccountSnapshot(to);
        } else {
            // transfer
            _updateAccountSnapshot(from);
            _updateAccountSnapshot(to);
        }
    }

}

File 2 of 17 : IPYESwapRouter.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2;

import './IPYESwapRouter01.sol';

interface IPYESwapRouter is IPYESwapRouter01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function pairFeeAddress(address pair) external view returns (address);
    function adminFee() external view returns (uint256);
    function feeAddressGet() external view returns (address);
}

File 3 of 17 : IPYESwapFactory.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

interface IPYESwapFactory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);
    function pairExist(address pair) external view returns (bool);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
    function routerInitialize(address) external;
    function routerAddress() external view returns (address);
}

File 4 of 17 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

File 5 of 17 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 6 of 17 : Arrays.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

File 7 of 17 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

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

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

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 8 of 17 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 9 of 17 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 17 : IPYESwapRouter01.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

interface IPYESwapRouter01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 11 of 17 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

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

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

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

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

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. It the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`.
        // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`.
        // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`.
        // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a
        // good first aproximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1;
        uint256 x = a;
        if (x >> 128 > 0) {
            x >>= 128;
            result <<= 64;
        }
        if (x >> 64 > 0) {
            x >>= 64;
            result <<= 32;
        }
        if (x >> 32 > 0) {
            x >>= 32;
            result <<= 16;
        }
        if (x >> 16 > 0) {
            x >>= 16;
            result <<= 8;
        }
        if (x >> 8 > 0) {
            x >>= 8;
            result <<= 4;
        }
        if (x >> 4 > 0) {
            x >>= 4;
            result <<= 2;
        }
        if (x >> 2 > 0) {
            result <<= 1;
        }

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        uint256 result = sqrt(a);
        if (rounding == Rounding.Up && result * result < a) {
            result += 1;
        }
        return result;
    }
}

File 12 of 17 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 13 of 17 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 14 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 15 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 16 of 17 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 17 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_development","type":"address"},{"internalType":"uint256","name":"_developmentFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_buybackFeeBuy","type":"uint256"},{"internalType":"uint256","name":"_developmentFeeSell","type":"uint256"},{"internalType":"uint256","name":"_buybackFeeSell","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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","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":"BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_SETTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyFees","outputs":[{"internalType":"uint256","name":"developmentFee","type":"uint256"},{"internalType":"uint256","name":"buybackFee","type":"uint256"},{"internalType":"address","name":"developmentAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyback","outputs":[{"internalType":"bool","name":"autoBuybackEnabled","type":"bool"},{"internalType":"uint256","name":"autoBuybackCap","type":"uint256"},{"internalType":"uint256","name":"autoBuybackAccumulator","type":"uint256"},{"internalType":"uint256","name":"autoBuybackAmount","type":"uint256"},{"internalType":"uint256","name":"autoBuybackBlockPeriod","type":"uint256"},{"internalType":"uint256","name":"autoBuybackBlockLast","type":"uint256"},{"internalType":"uint256","name":"minimumBuyBackThreshold","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isPairAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellFees","outputs":[{"internalType":"uint256","name":"developmentFee","type":"uint256"},{"internalType":"uint256","name":"buybackFee","type":"uint256"},{"internalType":"address","name":"developmentAddress","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addOutsideSwapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addressToDenylist","type":"address"}],"name":"denylistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentSnapshotID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getOwnedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"name":"handleFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isSnapshotter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"pyeSwapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pyeSwapRouter","outputs":[{"internalType":"contract IPYESwapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addressToRemove","type":"address"}],"name":"removeFromDenylist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeOutsideSwapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_cap","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_period","type":"uint256"},{"internalType":"uint256","name":"_minimumThreshold","type":"uint256"}],"name":"setAutoBuybackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_buybackFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setIsSnapshotter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"set","type":"bool"}],"name":"setIsStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_buybackFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_development","type":"address"}],"name":"setdevelopmentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"snapshot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"staked","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStaked","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":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","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":"_router","type":"address"},{"internalType":"address","name":"_pair","type":"address"}],"name":"updateRouterAndPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526035805460ff60a01b1916600160a01b1790553480156200002457600080fd5b50604051620063033803806200630383398101604081905262000047916200062c565b6040805160208082018352600080835283519182019093529182529060046200007183826200072e565b5060056200008082826200072e565b505050620000b57f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200054860201b60201c565b620000e17f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a8483362000548565b6200010d7fe6ad9a47fbda1dc18de1eb5eeb7d935e5e81b4748f3cfc61e233e64f881820603362000548565b6200011a60003362000548565b603380546001600160a01b0319166001600160a01b038816908117909155604080516315ab88c960e31b8152905163ad5c4648916004808201926020929091908290030181865afa15801562000174573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019a9190620007fa565b603580546001600160a01b0319166001600160a01b039283161790556033546040805163c45a015560e01b81529051919092169163c45a01559160048083019260209291908290030181865afa158015620001f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021f9190620007fa565b6035546040516322c4f16760e11b815230600482018190526001600160a01b039283166024830152600160448301526064820152911690634589e2ce906084016020604051808303816000875af11580156200027f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a59190620007fa565b603480546001600160a01b039283166001600160a01b031991821617825560355460158054600090815260146020908152604080832080548716958916959095179094559454825482526013909552918220805490931693909416929092179055815460019291906200031a90849062000818565b90915550506034546001600160a01b03166000908152601660205260408120805460ff1916600190811790915590601190620003533390565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055603454821681526011845282812080548616600190811790915530825283822080548716821790557f97847ee99463795296047093514439c3127772df3715e628aa85601cf85417168054871682179055338252600e85529083902080549095161790935580516060808201835288825281840188905293891690820181905260178890556018879055601980546001600160a01b03199081168317909155825180860184528981528085018990528301829052888455602188905560228054821683179055825180860184528781528085018790528301829052602387905560248690556025805490911690911790558051928301905281906200049390879087906200319362000558821b17901c565b815260006020808301919091526001600160a01b0388811660409384015283516026558382015160275592820151602880546001600160a01b0319169190941617909255805160608101909152908190620004fb908590859062000558811b6200319317901c565b815260006020808301919091526001600160a01b039788166040928301528251602955820151602a550151602b80546001600160a01b0319169190961617909455506200083a9350505050565b6200055482826200056f565b5050565b600062000566828462000818565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000554576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620005cb3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b80516001600160a01b03811681146200062757600080fd5b919050565b60008060008060008060c087890312156200064657600080fd5b62000651876200060f565b955062000661602088016200060f565b945060408701519350606087015192506080870151915060a087015190509295509295509295565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006b457607f821691505b602082108103620006d557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200072957600081815260208120601f850160051c81016020861015620007045750805b601f850160051c820191505b81811015620007255782815560010162000710565b5050505b505050565b81516001600160401b038111156200074a576200074a62000689565b62000762816200075b84546200069f565b84620006db565b602080601f8311600181146200079a5760008415620007815750858301515b600019600386901b1c1916600185901b17855562000725565b600085815260208120601f198616915b82811015620007cb57888601518255948401946001909101908401620007aa565b5085821015620007ea5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200080d57600080fd5b62000566826200060f565b808201808211156200056957634e487b7160e01b600052601160045260246000fd5b615ab9806200084a6000396000f3fe6080604052600436106103e25760003560e01c8063817b1cd21161020d578063b6f3e08711610128578063d89135cd116100bb578063e4d1a8741161008a578063ea2f0b371161006f578063ea2f0b3714610df8578063f8a67a6214610e18578063fd4b715814610e3857600080fd5b8063e4d1a87414610d8f578063e934768314610dc457600080fd5b8063d89135cd14610ca1578063dd62ed3e14610cb6578063de7cf79914610d09578063e284db3e14610d6f57600080fd5b8063d3a866c7116100f7578063d3a866c714610c10578063d539139314610c30578063d547741f14610c64578063d5abeb0114610c8457600080fd5b8063b6f3e08714610b98578063bd3900c014610bb8578063c80bbbeb14610bce578063ced72f8714610bfb57600080fd5b80639fd8234e116101a0578063a5ee4e711161016f578063a5ee4e7114610b0b578063a9059cbb14610b2b578063ad5c464814610b4b578063b2d8f20814610b7857600080fd5b80639fd8234e14610a96578063a0558c3f14610ab6578063a217fddf14610ad6578063a457c2d714610aeb57600080fd5b806395d89b41116101dc57806395d89b41146109ee5780639711715a14610a34578063981b24d014610a4957806398807d8414610a6957600080fd5b8063817b1cd21461095257806382ccff89146109685780638c2328381461097d57806391d148541461099d57600080fd5b8063313ce567116102fd5780634ee2cd7e116102905780636ddd17131161025f5780636ddd17131461089d5780636ed52e68146108cf57806370a08231146108ef57806379cc67901461093257600080fd5b80634ee2cd7e146107f75780635342acb41461081757806367243ea81461085d5780636baa9a571461087d57600080fd5b806340b28c2f116102cc57806340b28c2f1461077757806340c10f191461079757806342966c68146107b7578063437823ec146107d757600080fd5b8063313ce567146106fb57806336568abe1461071757806339509351146107375780633d8a62d31461075757600080fd5b806320606b70116103755780632b112e49116103445780632b112e491461062d5780632c77735c146106425780632f2ff15d146106ab57806330367554146106cb57600080fd5b806320606b701461057557806323b872dd146105a9578063248a9ca3146105c9578063282c51f3146105f957600080fd5b8063095ea7b3116103b1578063095ea7b3146104e657806315c9aca114610506578063174ca3ec1461053657806318160ddd1461055657600080fd5b806301ffc9a7146103ee57806302c52db01461042357806302e8e85f1461044557806306fdde031461049757600080fd5b366103e957005b600080fd5b3480156103fa57600080fd5b5061040e610409366004615430565b610e58565b60405190151581526020015b60405180910390f35b34801561042f57600080fd5b5061044361043e366004615494565b610ef1565b005b34801561045157600080fd5b506033546104729073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161041a565b3480156104a357600080fd5b5060408051808201909152600981527f436865727279505945000000000000000000000000000000000000000000000060208201525b60405161041a91906154d5565b3480156104f257600080fd5b5061040e610501366004615526565b6110b5565b34801561051257600080fd5b5061040e610521366004615494565b600e6020526000908152604090205460ff1681565b34801561054257600080fd5b50610443610551366004615560565b6110cb565b34801561056257600080fd5b50600f545b60405190815260200161041a565b34801561058157600080fd5b506105677f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b3480156105b557600080fd5b5061040e6105c43660046155a4565b6111ad565b3480156105d557600080fd5b506105676105e43660046155e5565b60009081526020819052604090206001015490565b34801561060557600080fd5b506105677f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b34801561063957600080fd5b50610567611223565b34801561064e57600080fd5b50602c54602d54602e54602f546030546031546032546106749660ff1695949392919087565b6040805197151588526020880196909652948601939093526060850191909152608084015260a083015260c082015260e00161041a565b3480156106b757600080fd5b506104436106c63660046155fe565b611294565b3480156106d757600080fd5b5061040e6106e6366004615494565b60166020526000908152604090205460ff1681565b34801561070757600080fd5b506040516012815260200161041a565b34801561072357600080fd5b506104436107323660046155fe565b6112be565b34801561074357600080fd5b5061040e610752366004615526565b611371565b34801561076357600080fd5b50610443610772366004615494565b6113b4565b34801561078357600080fd5b5061044361079236600461562e565b61149b565b3480156107a357600080fd5b506104436107b2366004615526565b61173f565b3480156107c357600080fd5b506104436107d23660046155e5565b611873565b3480156107e357600080fd5b506104436107f2366004615494565b611924565b34801561080357600080fd5b50610567610812366004615526565b611a0b565b34801561082357600080fd5b5061040e610832366004615494565b73ffffffffffffffffffffffffffffffffffffffff1660009081526011602052604090205460ff1690565b34801561086957600080fd5b50610443610878366004615494565b611a61565b34801561088957600080fd5b50610567610898366004615494565b611be5565b3480156108a957600080fd5b5060355461040e9074010000000000000000000000000000000000000000900460ff1681565b3480156108db57600080fd5b506104436108ea36600461565c565b611c1f565b3480156108fb57600080fd5b5061056761090a366004615494565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561093e57600080fd5b5061044361094d366004615526565b611d0d565b34801561095e57600080fd5b5061056760085481565b34801561097457600080fd5b50610567611dc6565b34801561098957600080fd5b50610567610998366004615494565b611dd0565b3480156109a957600080fd5b5061040e6109b83660046155fe565b60009182526020828152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b3480156109fa57600080fd5b5060408051808201909152600981527f434845525259505945000000000000000000000000000000000000000000000060208201526104d9565b348015610a4057600080fd5b50610443611e15565b348015610a5557600080fd5b50610567610a643660046155e5565b611ebc565b348015610a7557600080fd5b50610567610a84366004615494565b600b6020526000908152604090205481565b348015610aa257600080fd5b50610443610ab136600461568a565b611ee7565b348015610ac257600080fd5b50610443610ad13660046155fe565b61200f565b348015610ae257600080fd5b50610567600081565b348015610af757600080fd5b5061040e610b06366004615526565b6120ea565b348015610b1757600080fd5b50610443610b26366004615494565b612146565b348015610b3757600080fd5b5061040e610b46366004615526565b6122bd565b348015610b5757600080fd5b506035546104729073ffffffffffffffffffffffffffffffffffffffff1681565b348015610b8457600080fd5b50610443610b9336600461568a565b6122ca565b348015610ba457600080fd5b50610443610bb336600461562e565b6123fc565b348015610bc457600080fd5b5061047261dead81565b348015610bda57600080fd5b506034546104729073ffffffffffffffffffffffffffffffffffffffff1681565b348015610c0757600080fd5b5061056761261a565b348015610c1c57600080fd5b50610443610c2b3660046155fe565b61262d565b348015610c3c57600080fd5b506105677f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b348015610c7057600080fd5b50610443610c7f3660046155fe565b612c22565b348015610c9057600080fd5b5069152d02c7e14af6800000610567565b348015610cad57600080fd5b50610567612c47565b348015610cc257600080fd5b50610567610cd136600461562e565b73ffffffffffffffffffffffffffffffffffffffff9182166000908152600a6020908152604080832093909416825291909152205490565b348015610d1557600080fd5b50602354602454602554610d3e92919073ffffffffffffffffffffffffffffffffffffffff1683565b60408051938452602084019290925273ffffffffffffffffffffffffffffffffffffffff169082015260600161041a565b348015610d7b57600080fd5b50610443610d8a366004615494565b612c85565b348015610d9b57600080fd5b50602054602154602254610d3e92919073ffffffffffffffffffffffffffffffffffffffff1683565b348015610dd057600080fd5b506105677fe6ad9a47fbda1dc18de1eb5eeb7d935e5e81b4748f3cfc61e233e64f8818206081565b348015610e0457600080fd5b50610443610e13366004615494565b612d69565b348015610e2457600080fd5b50610443610e333660046156ac565b612e4d565b348015610e4457600080fd5b50610443610e5336600461565c565b6130a5565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610eeb57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16610f8e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f5745440000000000000000000000000060448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166000908152600c602052604090205460ff16611069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604a60248201527f4164647265737320686173206e6f74206265656e2064656e796c69737465642160448201527f20456e74657220616e20616464726573732074686174206973206f6e2074686560648201527f2064656e796c6973742e00000000000000000000000000000000000000000000608482015260a401610f85565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60006110c23384846131a6565b50600192915050565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b602c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001695151595909517909455602d929092556000602e55602f5560305543603155603255565b60006111ba848484613359565b611219843361121485604051806060016040528060288152602001615a376028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600a60209081526040808320338452909152902054919061375e565b6131a6565b5060019392505050565b60096020527fec8156718a8372b1db44bb411437d0870f3e3790d4a08526d024ce1b0b668f6b5461dead60009081527f960b1051749987b45b5679007fff577a1c2f763ec21c15a6c5eb19307500378554600f54919261128f92909161128991906137a4565b906137a4565b905090565b6000828152602081905260409020600101546112af816137b0565b6112b983836137ba565b505050565b73ffffffffffffffffffffffffffffffffffffffff81163314611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610f85565b61136d82826138aa565b5050565b336000818152600a6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916110c29185906112149086613193565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff1661144c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff16600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b6034805473ffffffffffffffffffffffffffffffffffffffff90811660009081526011602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055603380548785167fffffffffffffffffffffffff00000000000000000000000000000000000000009182168117909255855494871694169390931790935580517fad5c46480000000000000000000000000000000000000000000000000000000081529051919263ad5c4648926004808401938290030181865afa158015611613573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163791906156ee565b6035805473ffffffffffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffff0000000000000000000000000000000000000000918216178255603480548416600090815260166020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00908116600190811790925585548916855260118452918420805490921617905591549080527f8fa6efc3be94b5b348b21fea823fe8d100408cee9b7f90524494500445d8ff6c80548416918616919091179055915460149092527f4f26c3876aa9f4b92579780beea1161a61f87ebf1ec6ee865b299e447ecba99c8054909116919092161790555050565b3360009081527f0781d7cac9c378efa22a7481e4d4d29704a680ddf504b3bc50b517700ee11e6c602052604090205460ff166117d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b69152d02c7e14af68000006117f5826117ef600f5490565b90613193565b111561185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4348455252593a20524541434845445f4d41585f535550504c590000000000006044820152606401610f85565b61186960008383613961565b61136d8282613a31565b3360009081527f6bc61e8d8a7feeba9a3dfbe950298fbca23cf0136992f9ef92f1b5529ac870ae602052604090205460ff1661190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b61191733600083613961565b6119213382613b58565b50565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff166119bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff16600090815260116020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260376020526040812081908190611a3f908590613cd6565b9150915081611a5657611a5185611be5565b611a58565b805b95945050505050565b3360009081527f14764fde9c05acf7fd0fb570d7a8bd897798cb3f3d82998258b517116344ffbd602052604090205460ff16611af9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff8116611b76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5059453a2041646472657373205a65726f206973206e6f7420616c6c6f7765646044820152606401610f85565b6019805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155602280548316821790556025805483168217905560288054831682179055602b8054909216179055565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260096020908152604080832054600b909252822054610eeb91613193565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16611cb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3360009081527f6bc61e8d8a7feeba9a3dfbe950298fbca23cf0136992f9ef92f1b5529ac870ae602052604090205460ff16611da5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b611db0823383613e07565b611dbc82600083613961565b61136d8282613b58565b600061128f613ed8565b73ffffffffffffffffffffffffffffffffffffffff811660009081526011602052604081205460ff1615611e0657506000919050565b601854601754610eeb91613193565b336000908152600e602052604090205460ff16611eb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f43616c6c6572206973206e6f7420616c6c6f77656420746f20736e617073686f60448201527f74000000000000000000000000000000000000000000000000000000000000006064820152608401610f85565b611921613ee3565b6000806000611ecc846038613cd6565b9150915081611edd57600f54611edf565b805b949350505050565b3360009081527f14764fde9c05acf7fd0fb570d7a8bd897798cb3f3d82998258b517116344ffbd602052604090205460ff16611f7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b6109c4611f8c8383613193565b1115611ff4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4665657320657863656564206d6178206c696d697400000000000000000000006044820152606401610f85565b602382905560248190556120088282613193565b6029555050565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff166120a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b60405173ffffffffffffffffffffffffffffffffffffffff82169083156108fc029084906000818181858888f193505050501580156112b9573d6000803e3d6000fd5b60006110c2338461121485604051806060016040528060258152602001615a5f60259139336000908152600a6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d168452909152902054919061375e565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff166121de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600c602052604090205460ff161561226e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f4164647265737320697320616c72656164792064656e796c69737465642100006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60006110c2338484613359565b3360009081527f14764fde9c05acf7fd0fb570d7a8bd897798cb3f3d82998258b517116344ffbd602052604090205460ff16612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b6109c461236f8383613193565b11156123d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4665657320657863656564206d6178206c696d697400000000000000000000006044820152606401610f85565b60178290556018819055602082905560218190556123f58282613193565b6026555050565b603354604080517fc45a0155000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163c45a01559160048083019260209291908290030181865afa15801561246c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061249091906156ee565b90503373ffffffffffffffffffffffffffffffffffffffff821614806124cd575060335473ffffffffffffffffffffffffffffffffffffffff1633145b806124d757503330145b61253d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5059453a204e4f545f414c4c4f574544000000000000000000000000000000006044820152606401610f85565b61254683613f3d565b6112b95773ffffffffffffffffffffffffffffffffffffffff8381166000818152601160209081526040808320805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009182168117909255601684528285208054909116821790556015805485526013845282852080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169097179055805485526014909352908320805490941694871694909417909255815461261090849061573a565b9091555050505050565b60185460175460009161128f9190613193565b6000805b60155481101561267f576000818152601360205260409020543373ffffffffffffffffffffffffffffffffffffffff9091160361266d57600191505b806126778161574d565b915050612631565b5060335473ffffffffffffffffffffffffffffffffffffffff163314806126a35750805b612709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5059453a204e4f545f414c4c4f574544000000000000000000000000000000006044820152606401610f85565b82600003612769576112b9601a54601755601b54601855601c54601980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b600061277483613f98565b9050601554811015612c1c576040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815233600482015230602482015260009073ffffffffffffffffffffffffffffffffffffffff85169063dd62ed3e90604401602060405180830381865afa1580156127f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128179190615785565b9050848110612c1a576040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810186905273ffffffffffffffffffffffffffffffffffffffff8516906323b872dd906064016020604051808303816000875af1158015612899573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128bd919061579e565b5060355473ffffffffffffffffffffffffffffffffffffffff858116911614612af5576035546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa15801561294f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129739190615785565b905061297f8686613ffd565b6035546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152600091612a1891849173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa1580156129f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112899190615785565b90506000612a2461261a565b90506000612a4a82612a44601760000154866141b290919063ffffffff16565b906141be565b6035546019546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff918216600482015260248101849052929350169063a9059cbb906044016020604051808303816000875af1158015612ac7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aeb919061579e565b5050505050612bc2565b6000612aff61261a565b90506000612b1f82612a446017600001548a6141b290919063ffffffff16565b6019546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201526024810183905291925087169063a9059cbb906044016020604051808303816000875af1158015612b9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bbe919061579e565b5050505b612c1a601a54601755601b54601855601c54601980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b505b50505050565b600082815260208190526040902060010154612c3d816137b0565b6112b983836138aa565b60105461dead600090815260096020527f960b1051749987b45b5679007fff577a1c2f763ec21c15a6c5eb19307500378554909161128f9190613193565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16612d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff16600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16612e01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff16600090815260116020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16612ee5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152829073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015612f51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f759190615785565b101561300c576040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa158015612fe5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130099190615785565b91505b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301526024820184905284169063a9059cbb906044016020604051808303816000875af1158015613081573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c1c919061579e565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff1661313d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600061319f828461573a565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8316613248576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610f85565b73ffffffffffffffffffffffffffffffffffffffff82166132eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610f85565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152600a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166133fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610f85565b73ffffffffffffffffffffffffffffffffffffffff821661349f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610f85565b6000811161352f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610f85565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600c602052604090205460ff161561356257600080fd5b61356d838383613961565b613576816141ca565b15613583576135836142e9565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600d602052604090205460ff16156135ef5773ffffffffffffffffffffffffffffffffffffffff83166000908152600b60205260408120546135e19083613193565b90506135ed8482614344565b505b73ffffffffffffffffffffffffffffffffffffffff83166000908152600d602052604090205460ff161561365b5773ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604081205461364d90836137a4565b90506136598382614344565b505b73ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604081205460ff1680156136ab575060335473ffffffffffffffffffffffffffffffffffffffff858116911614155b80156136dd575073ffffffffffffffffffffffffffffffffffffffff841660009081526011602052604090205460ff16155b156136ea57506001613752565b73ffffffffffffffffffffffffffffffffffffffff841660009081526012602052604090205460ff161561372057506002613752565b73ffffffffffffffffffffffffffffffffffffffff831660009081526012602052604090205460ff1615613752575060035b612c1c848484846144a6565b6000818484111561379c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8591906154d5565b505050900390565b600061319f82846157bb565b6119218133614a2d565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1661136d5760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905561384c3390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff161561136d5760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b73ffffffffffffffffffffffffffffffffffffffff831661398d5761398582614afd565b6112b9614b48565b73ffffffffffffffffffffffffffffffffffffffff82166139b15761398583614afd565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600d602052604090205460ff16156139e8576112b983614afd565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600d602052604090205460ff1615613a1f576112b982614afd565b613a2883614afd565b6112b982614afd565b73ffffffffffffffffffffffffffffffffffffffff8216613aae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610f85565b600f54613abb9082613193565b600f5573ffffffffffffffffffffffffffffffffffffffff8216600090815260096020526040902054613aee9082613193565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600960205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90613b4c9085815260200190565b60405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216613bfb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610f85565b613c4581604051806060016040528060228152602001615a156022913973ffffffffffffffffffffffffffffffffffffffff8516600090815260096020526040902054919061375e565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020526040902055600f54613c7890826137a4565b600f55601054613c889082613193565b60105560405181815260009073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001613b4c565b60008060008411613d43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4552433230536e617073686f743a2069642069732030000000000000000000006044820152606401610f85565b613d4b613ed8565b841115613db4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006044820152606401610f85565b6000613dc08486614b56565b84549091508103613dd8576000809250925050613e00565b6001846001018281548110613def57613def6157ce565b906000526020600020015492509250505b9250929050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600a60209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612c1c5781811015613ecb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610f85565b612c1c84848484036131a6565b600061128f60365490565b6000613ef3603680546001019055565b6000613efd613ed8565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051613f3091815260200190565b60405180910390a1919050565b600080805b601554811015613f915760008181526013602052604090205473ffffffffffffffffffffffffffffffffffffffff808616911603613f7f57600191505b80613f898161574d565b915050613f42565b5092915050565b6000806015546001613faa919061573a565b905060005b601554811015613f915760008181526014602052604090205473ffffffffffffffffffffffffffffffffffffffff808616911603613feb578091505b80613ff58161574d565b915050613faf565b6040805160028082526060820183526000926020830190803683370190505090508181600081518110614032576140326157ce565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152603554825191169082906001908110614070576140706157ce565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526033546040517f095ea7b30000000000000000000000000000000000000000000000000000000081529082166004820152602481018590529083169063095ea7b3906044016020604051808303816000875af11580156140f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061411b919061579e565b506033546040517f5c11d79500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690635c11d7959061417b90869060009086903090429060040161582c565b600060405180830381600087803b15801561419557600080fd5b505af11580156141a9573d6000803e3d6000fd5b50505050505050565b600061319f82846158b7565b600061319f82846158f4565b60345460009073ffffffffffffffffffffffffffffffffffffffff16331480159061421157506035547501000000000000000000000000000000000000000000900460ff16155b801561421f5750602c5460ff165b801561423a575060305460315443916142379161573a565b11155b80156142d95750602f546035546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa1580156142b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142d69190615785565b10155b8015610eeb575050603254111590565b602f546142f89061dead614c1b565b43603155602f54602e5461430b91613193565b602e819055602d54101561434257602c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b565b600081118015614377575073ffffffffffffffffffffffffffffffffffffffff82166000908152600b6020526040902054155b15614402576006805473ffffffffffffffffffffffffffffffffffffffff84166000818152600760205260408120839055600183018455929092527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055614442565b80158015614434575073ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205415155b156144425761444282614e63565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460085461447a9183916117ef916137a4565b60085573ffffffffffffffffffffffffffffffffffffffff9091166000908152600b6020526040902055565b60ff811615806144b957508060ff166001145b156147085760178054601a5560188054601b5560198054601c805473ffffffffffffffffffffffffffffffffffffffff8084167fffffffffffffffffffffffff000000000000000000000000000000000000000092831617909255601d54909555601e54909355601f5490921692909116919091179055604080518082018252601481527f496e73756666696369656e742042616c616e636500000000000000000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff871660009081526009909152919091205461459891849061375e565b73ffffffffffffffffffffffffffffffffffffffff80861660009081526009602052604080822093909355908516815220546145d49083613193565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526009602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906146359086815260200190565b60405180910390a38060ff166000036146a5576146a0601a54601755601b54601855601c54601980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b612c1c565b8060ff166001036146a0576146a0602354601755602454601855602554601980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b8060ff1660020361478a5760178054601a5560188054601b5560198054601c805473ffffffffffffffffffffffffffffffffffffffff8084167fffffffffffffffffffffffff00000000000000000000000000000000000000009283161790925560265490955560275490935560285490921692909116919091179055614808565b8060ff166003036148085760178054601a5560188054601b5560198054601c805473ffffffffffffffffffffffffffffffffffffffff8084167fffffffffffffffffffffffff000000000000000000000000000000000000000092831617909255602954909555602a54909355602b54909216929091169190911790555b600061481383614fed565b905061489e836040518060400160405280601481526020017f496e73756666696369656e742042616c616e6365000000000000000000000000815250600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461375e9092919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff808716600090815260096020526040808220939093558351918716815291909120546148de91613193565b73ffffffffffffffffffffffffffffffffffffffff851660009081526009602052604090205561490d81615074565b614965601a54601755601b54601855601c54601980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83600001516040516149c891815260200190565b60405180910390a360195460208281015160405190815273ffffffffffffffffffffffffffffffffffffffff928316928816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1661136d57614a838173ffffffffffffffffffffffffffffffffffffffff16601461509c565b614a8e83602061509c565b604051602001614a9f92919061592f565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a0000000000000000000000000000000000000000000000000000000008252610f85916004016154d5565b73ffffffffffffffffffffffffffffffffffffffff81166000908152603760209081526040808320600b83528184205460099093529220546119219291614b439161573a565b6152df565b6143426038614b43600f5490565b81546000908103614b6957506000610eeb565b82546000905b80821015614bc5576000614b838383615329565b905084868281548110614b9857614b986157ce565b90600052602060002001541115614bb157809150614bbf565b614bbc81600161573a565b92505b50614b6f565b600082118015614bfa57508385614bdd6001856157bb565b81548110614bed57614bed6157ce565b9060005260206000200154145b15614c1357614c0a6001836157bb565b92505050610eeb565b509050610eeb565b603580547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1675010000000000000000000000000000000000000000001790556040805160028082526060820183526000926020830190803683375050603554825192935073ffffffffffffffffffffffffffffffffffffffff1691839150600090614ca957614ca96157ce565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110614cf757614cf76157ce565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526035546033546040517f095ea7b300000000000000000000000000000000000000000000000000000000815290831660048201526024810186905291169063095ea7b3906044016020604051808303816000875af1158015614d80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614da4919061579e565b506033546040517f5c11d79500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690635c11d79590614e0490869060009086908890429060040161582c565b600060405180830381600087803b158015614e1e57600080fd5b505af1158015614e32573d6000803e3d6000fd5b5050603580547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1690555050505050565b60068054614e73906001906157bb565b81548110614e8357614e836157ce565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff84811684526007909252604090922054600680549290931692918110614ece57614ece6157ce565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918316815260079182905260408120546006805491939291614f3f906001906157bb565b81548110614f4f57614f4f6157ce565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020556006805480614f9257614f926159b0565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905501905550565b61501160405180606001604052806000815260200160008152602001600081525090565b600060405180606001604052806000815260200161503485601760000154615344565b815260200161504885601760010154615344565b815250905061506c81604001516112898360200151866137a490919063ffffffff16565b815292915050565b6020810151601954611921919073ffffffffffffffffffffffffffffffffffffffff16615366565b606060006150ab8360026158b7565b6150b690600261573a565b67ffffffffffffffff8111156150ce576150ce6157fd565b6040519080825280601f01601f1916602001820160405280156150f8576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061512f5761512f6157ce565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110615192576151926157ce565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006151ce8460026158b7565b6151d990600161573a565b90505b6001811115615276577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061521a5761521a6157ce565b1a60f81b828281518110615230576152306157ce565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c9361526f816159df565b90506151dc565b50831561319f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610f85565b60006152e9613ed8565b9050806152f5846153eb565b10156112b9578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b600061533860028484186158f4565b61319f9084841661573a565b60008160000361535657506000610eeb565b61319f612710612a4485856141b2565b73ffffffffffffffffffffffffffffffffffffffff8116615385575050565b81600003615391575050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600960205260409020546153c19083613193565b73ffffffffffffffffffffffffffffffffffffffff90911660009081526009602052604090205550565b805460009081036153fe57506000919050565b8154829061540e906001906157bb565b8154811061541e5761541e6157ce565b90600052602060002001549050919050565b60006020828403121561544257600080fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461319f57600080fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461192157600080fd5b6000602082840312156154a657600080fd5b813561319f81615472565b60005b838110156154cc5781810151838201526020016154b4565b50506000910152565b60208152600082518060208401526154f48160408501602087016154b1565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6000806040838503121561553957600080fd5b823561554481615472565b946020939093013593505050565b801515811461192157600080fd5b600080600080600060a0868803121561557857600080fd5b853561558381615552565b97602087013597506040870135966060810135965060800135945092505050565b6000806000606084860312156155b957600080fd5b83356155c481615472565b925060208401356155d481615472565b929592945050506040919091013590565b6000602082840312156155f757600080fd5b5035919050565b6000806040838503121561561157600080fd5b82359150602083013561562381615472565b809150509250929050565b6000806040838503121561564157600080fd5b823561564c81615472565b9150602083013561562381615472565b6000806040838503121561566f57600080fd5b823561567a81615472565b9150602083013561562381615552565b6000806040838503121561569d57600080fd5b50508035926020909101359150565b6000806000606084860312156156c157600080fd5b83356156cc81615472565b92506020840135915060408401356156e381615472565b809150509250925092565b60006020828403121561570057600080fd5b815161319f81615472565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610eeb57610eeb61570b565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361577e5761577e61570b565b5060010190565b60006020828403121561579757600080fd5b5051919050565b6000602082840312156157b057600080fd5b815161319f81615552565b81810381811115610eeb57610eeb61570b565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561588957845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101615857565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156158ef576158ef61570b565b500290565b60008261592a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516159678160178501602088016154b1565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060179184019182015283516159a48160288401602088016154b1565b01602801949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000816159ee576159ee61570b565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a9f312ee86611988e4cc5930b9bf8bc2e659978d430adcc623221d2e96e2f4c064736f6c634300081000330000000000000000000000003b505af97031b75e2be39e7f8fa1fa634857f29d000000000000000000000000c71b2b3dd4a0a72f8857e4f5fbac53b401f273550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003e8

Deployed Bytecode

0x6080604052600436106103e25760003560e01c8063817b1cd21161020d578063b6f3e08711610128578063d89135cd116100bb578063e4d1a8741161008a578063ea2f0b371161006f578063ea2f0b3714610df8578063f8a67a6214610e18578063fd4b715814610e3857600080fd5b8063e4d1a87414610d8f578063e934768314610dc457600080fd5b8063d89135cd14610ca1578063dd62ed3e14610cb6578063de7cf79914610d09578063e284db3e14610d6f57600080fd5b8063d3a866c7116100f7578063d3a866c714610c10578063d539139314610c30578063d547741f14610c64578063d5abeb0114610c8457600080fd5b8063b6f3e08714610b98578063bd3900c014610bb8578063c80bbbeb14610bce578063ced72f8714610bfb57600080fd5b80639fd8234e116101a0578063a5ee4e711161016f578063a5ee4e7114610b0b578063a9059cbb14610b2b578063ad5c464814610b4b578063b2d8f20814610b7857600080fd5b80639fd8234e14610a96578063a0558c3f14610ab6578063a217fddf14610ad6578063a457c2d714610aeb57600080fd5b806395d89b41116101dc57806395d89b41146109ee5780639711715a14610a34578063981b24d014610a4957806398807d8414610a6957600080fd5b8063817b1cd21461095257806382ccff89146109685780638c2328381461097d57806391d148541461099d57600080fd5b8063313ce567116102fd5780634ee2cd7e116102905780636ddd17131161025f5780636ddd17131461089d5780636ed52e68146108cf57806370a08231146108ef57806379cc67901461093257600080fd5b80634ee2cd7e146107f75780635342acb41461081757806367243ea81461085d5780636baa9a571461087d57600080fd5b806340b28c2f116102cc57806340b28c2f1461077757806340c10f191461079757806342966c68146107b7578063437823ec146107d757600080fd5b8063313ce567146106fb57806336568abe1461071757806339509351146107375780633d8a62d31461075757600080fd5b806320606b70116103755780632b112e49116103445780632b112e491461062d5780632c77735c146106425780632f2ff15d146106ab57806330367554146106cb57600080fd5b806320606b701461057557806323b872dd146105a9578063248a9ca3146105c9578063282c51f3146105f957600080fd5b8063095ea7b3116103b1578063095ea7b3146104e657806315c9aca114610506578063174ca3ec1461053657806318160ddd1461055657600080fd5b806301ffc9a7146103ee57806302c52db01461042357806302e8e85f1461044557806306fdde031461049757600080fd5b366103e957005b600080fd5b3480156103fa57600080fd5b5061040e610409366004615430565b610e58565b60405190151581526020015b60405180910390f35b34801561042f57600080fd5b5061044361043e366004615494565b610ef1565b005b34801561045157600080fd5b506033546104729073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161041a565b3480156104a357600080fd5b5060408051808201909152600981527f436865727279505945000000000000000000000000000000000000000000000060208201525b60405161041a91906154d5565b3480156104f257600080fd5b5061040e610501366004615526565b6110b5565b34801561051257600080fd5b5061040e610521366004615494565b600e6020526000908152604090205460ff1681565b34801561054257600080fd5b50610443610551366004615560565b6110cb565b34801561056257600080fd5b50600f545b60405190815260200161041a565b34801561058157600080fd5b506105677f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b3480156105b557600080fd5b5061040e6105c43660046155a4565b6111ad565b3480156105d557600080fd5b506105676105e43660046155e5565b60009081526020819052604090206001015490565b34801561060557600080fd5b506105677f3c11d16cbaffd01df69ce1c404f6340ee057498f5f00246190ea54220576a84881565b34801561063957600080fd5b50610567611223565b34801561064e57600080fd5b50602c54602d54602e54602f546030546031546032546106749660ff1695949392919087565b6040805197151588526020880196909652948601939093526060850191909152608084015260a083015260c082015260e00161041a565b3480156106b757600080fd5b506104436106c63660046155fe565b611294565b3480156106d757600080fd5b5061040e6106e6366004615494565b60166020526000908152604090205460ff1681565b34801561070757600080fd5b506040516012815260200161041a565b34801561072357600080fd5b506104436107323660046155fe565b6112be565b34801561074357600080fd5b5061040e610752366004615526565b611371565b34801561076357600080fd5b50610443610772366004615494565b6113b4565b34801561078357600080fd5b5061044361079236600461562e565b61149b565b3480156107a357600080fd5b506104436107b2366004615526565b61173f565b3480156107c357600080fd5b506104436107d23660046155e5565b611873565b3480156107e357600080fd5b506104436107f2366004615494565b611924565b34801561080357600080fd5b50610567610812366004615526565b611a0b565b34801561082357600080fd5b5061040e610832366004615494565b73ffffffffffffffffffffffffffffffffffffffff1660009081526011602052604090205460ff1690565b34801561086957600080fd5b50610443610878366004615494565b611a61565b34801561088957600080fd5b50610567610898366004615494565b611be5565b3480156108a957600080fd5b5060355461040e9074010000000000000000000000000000000000000000900460ff1681565b3480156108db57600080fd5b506104436108ea36600461565c565b611c1f565b3480156108fb57600080fd5b5061056761090a366004615494565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561093e57600080fd5b5061044361094d366004615526565b611d0d565b34801561095e57600080fd5b5061056760085481565b34801561097457600080fd5b50610567611dc6565b34801561098957600080fd5b50610567610998366004615494565b611dd0565b3480156109a957600080fd5b5061040e6109b83660046155fe565b60009182526020828152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b3480156109fa57600080fd5b5060408051808201909152600981527f434845525259505945000000000000000000000000000000000000000000000060208201526104d9565b348015610a4057600080fd5b50610443611e15565b348015610a5557600080fd5b50610567610a643660046155e5565b611ebc565b348015610a7557600080fd5b50610567610a84366004615494565b600b6020526000908152604090205481565b348015610aa257600080fd5b50610443610ab136600461568a565b611ee7565b348015610ac257600080fd5b50610443610ad13660046155fe565b61200f565b348015610ae257600080fd5b50610567600081565b348015610af757600080fd5b5061040e610b06366004615526565b6120ea565b348015610b1757600080fd5b50610443610b26366004615494565b612146565b348015610b3757600080fd5b5061040e610b46366004615526565b6122bd565b348015610b5757600080fd5b506035546104729073ffffffffffffffffffffffffffffffffffffffff1681565b348015610b8457600080fd5b50610443610b9336600461568a565b6122ca565b348015610ba457600080fd5b50610443610bb336600461562e565b6123fc565b348015610bc457600080fd5b5061047261dead81565b348015610bda57600080fd5b506034546104729073ffffffffffffffffffffffffffffffffffffffff1681565b348015610c0757600080fd5b5061056761261a565b348015610c1c57600080fd5b50610443610c2b3660046155fe565b61262d565b348015610c3c57600080fd5b506105677f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b348015610c7057600080fd5b50610443610c7f3660046155fe565b612c22565b348015610c9057600080fd5b5069152d02c7e14af6800000610567565b348015610cad57600080fd5b50610567612c47565b348015610cc257600080fd5b50610567610cd136600461562e565b73ffffffffffffffffffffffffffffffffffffffff9182166000908152600a6020908152604080832093909416825291909152205490565b348015610d1557600080fd5b50602354602454602554610d3e92919073ffffffffffffffffffffffffffffffffffffffff1683565b60408051938452602084019290925273ffffffffffffffffffffffffffffffffffffffff169082015260600161041a565b348015610d7b57600080fd5b50610443610d8a366004615494565b612c85565b348015610d9b57600080fd5b50602054602154602254610d3e92919073ffffffffffffffffffffffffffffffffffffffff1683565b348015610dd057600080fd5b506105677fe6ad9a47fbda1dc18de1eb5eeb7d935e5e81b4748f3cfc61e233e64f8818206081565b348015610e0457600080fd5b50610443610e13366004615494565b612d69565b348015610e2457600080fd5b50610443610e333660046156ac565b612e4d565b348015610e4457600080fd5b50610443610e5336600461565c565b6130a5565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610eeb57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16610f8e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f5745440000000000000000000000000060448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166000908152600c602052604090205460ff16611069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604a60248201527f4164647265737320686173206e6f74206265656e2064656e796c69737465642160448201527f20456e74657220616e20616464726573732074686174206973206f6e2074686560648201527f2064656e796c6973742e00000000000000000000000000000000000000000000608482015260a401610f85565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60006110c23384846131a6565b50600192915050565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b602c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001695151595909517909455602d929092556000602e55602f5560305543603155603255565b60006111ba848484613359565b611219843361121485604051806060016040528060288152602001615a376028913973ffffffffffffffffffffffffffffffffffffffff8a166000908152600a60209081526040808320338452909152902054919061375e565b6131a6565b5060019392505050565b60096020527fec8156718a8372b1db44bb411437d0870f3e3790d4a08526d024ce1b0b668f6b5461dead60009081527f960b1051749987b45b5679007fff577a1c2f763ec21c15a6c5eb19307500378554600f54919261128f92909161128991906137a4565b906137a4565b905090565b6000828152602081905260409020600101546112af816137b0565b6112b983836137ba565b505050565b73ffffffffffffffffffffffffffffffffffffffff81163314611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610f85565b61136d82826138aa565b5050565b336000818152600a6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490916110c29185906112149086613193565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff1661144c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff16600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b6034805473ffffffffffffffffffffffffffffffffffffffff90811660009081526011602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055603380548785167fffffffffffffffffffffffff00000000000000000000000000000000000000009182168117909255855494871694169390931790935580517fad5c46480000000000000000000000000000000000000000000000000000000081529051919263ad5c4648926004808401938290030181865afa158015611613573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163791906156ee565b6035805473ffffffffffffffffffffffffffffffffffffffff9283167fffffffffffffffffffffffff0000000000000000000000000000000000000000918216178255603480548416600090815260166020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00908116600190811790925585548916855260118452918420805490921617905591549080527f8fa6efc3be94b5b348b21fea823fe8d100408cee9b7f90524494500445d8ff6c80548416918616919091179055915460149092527f4f26c3876aa9f4b92579780beea1161a61f87ebf1ec6ee865b299e447ecba99c8054909116919092161790555050565b3360009081527f0781d7cac9c378efa22a7481e4d4d29704a680ddf504b3bc50b517700ee11e6c602052604090205460ff166117d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b69152d02c7e14af68000006117f5826117ef600f5490565b90613193565b111561185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4348455252593a20524541434845445f4d41585f535550504c590000000000006044820152606401610f85565b61186960008383613961565b61136d8282613a31565b3360009081527f6bc61e8d8a7feeba9a3dfbe950298fbca23cf0136992f9ef92f1b5529ac870ae602052604090205460ff1661190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b61191733600083613961565b6119213382613b58565b50565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff166119bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff16600090815260116020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260376020526040812081908190611a3f908590613cd6565b9150915081611a5657611a5185611be5565b611a58565b805b95945050505050565b3360009081527f14764fde9c05acf7fd0fb570d7a8bd897798cb3f3d82998258b517116344ffbd602052604090205460ff16611af9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff8116611b76576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5059453a2041646472657373205a65726f206973206e6f7420616c6c6f7765646044820152606401610f85565b6019805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909155602280548316821790556025805483168217905560288054831682179055602b8054909216179055565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260096020908152604080832054600b909252822054610eeb91613193565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16611cb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3360009081527f6bc61e8d8a7feeba9a3dfbe950298fbca23cf0136992f9ef92f1b5529ac870ae602052604090205460ff16611da5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b611db0823383613e07565b611dbc82600083613961565b61136d8282613b58565b600061128f613ed8565b73ffffffffffffffffffffffffffffffffffffffff811660009081526011602052604081205460ff1615611e0657506000919050565b601854601754610eeb91613193565b336000908152600e602052604090205460ff16611eb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f43616c6c6572206973206e6f7420616c6c6f77656420746f20736e617073686f60448201527f74000000000000000000000000000000000000000000000000000000000000006064820152608401610f85565b611921613ee3565b6000806000611ecc846038613cd6565b9150915081611edd57600f54611edf565b805b949350505050565b3360009081527f14764fde9c05acf7fd0fb570d7a8bd897798cb3f3d82998258b517116344ffbd602052604090205460ff16611f7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b6109c4611f8c8383613193565b1115611ff4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4665657320657863656564206d6178206c696d697400000000000000000000006044820152606401610f85565b602382905560248190556120088282613193565b6029555050565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff166120a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b60405173ffffffffffffffffffffffffffffffffffffffff82169083156108fc029084906000818181858888f193505050501580156112b9573d6000803e3d6000fd5b60006110c2338461121485604051806060016040528060258152602001615a5f60259139336000908152600a6020908152604080832073ffffffffffffffffffffffffffffffffffffffff8d168452909152902054919061375e565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff166121de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600c602052604090205460ff161561226e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f4164647265737320697320616c72656164792064656e796c69737465642100006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60006110c2338484613359565b3360009081527f14764fde9c05acf7fd0fb570d7a8bd897798cb3f3d82998258b517116344ffbd602052604090205460ff16612362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b6109c461236f8383613193565b11156123d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4665657320657863656564206d6178206c696d697400000000000000000000006044820152606401610f85565b60178290556018819055602082905560218190556123f58282613193565b6026555050565b603354604080517fc45a0155000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163c45a01559160048083019260209291908290030181865afa15801561246c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061249091906156ee565b90503373ffffffffffffffffffffffffffffffffffffffff821614806124cd575060335473ffffffffffffffffffffffffffffffffffffffff1633145b806124d757503330145b61253d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5059453a204e4f545f414c4c4f574544000000000000000000000000000000006044820152606401610f85565b61254683613f3d565b6112b95773ffffffffffffffffffffffffffffffffffffffff8381166000818152601160209081526040808320805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff009182168117909255601684528285208054909116821790556015805485526013845282852080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169097179055805485526014909352908320805490941694871694909417909255815461261090849061573a565b9091555050505050565b60185460175460009161128f9190613193565b6000805b60155481101561267f576000818152601360205260409020543373ffffffffffffffffffffffffffffffffffffffff9091160361266d57600191505b806126778161574d565b915050612631565b5060335473ffffffffffffffffffffffffffffffffffffffff163314806126a35750805b612709576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5059453a204e4f545f414c4c4f574544000000000000000000000000000000006044820152606401610f85565b82600003612769576112b9601a54601755601b54601855601c54601980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b600061277483613f98565b9050601554811015612c1c576040517fdd62ed3e00000000000000000000000000000000000000000000000000000000815233600482015230602482015260009073ffffffffffffffffffffffffffffffffffffffff85169063dd62ed3e90604401602060405180830381865afa1580156127f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128179190615785565b9050848110612c1a576040517f23b872dd0000000000000000000000000000000000000000000000000000000081523360048201523060248201526044810186905273ffffffffffffffffffffffffffffffffffffffff8516906323b872dd906064016020604051808303816000875af1158015612899573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128bd919061579e565b5060355473ffffffffffffffffffffffffffffffffffffffff858116911614612af5576035546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa15801561294f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129739190615785565b905061297f8686613ffd565b6035546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152600091612a1891849173ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa1580156129f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112899190615785565b90506000612a2461261a565b90506000612a4a82612a44601760000154866141b290919063ffffffff16565b906141be565b6035546019546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff918216600482015260248101849052929350169063a9059cbb906044016020604051808303816000875af1158015612ac7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612aeb919061579e565b5050505050612bc2565b6000612aff61261a565b90506000612b1f82612a446017600001548a6141b290919063ffffffff16565b6019546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821660048201526024810183905291925087169063a9059cbb906044016020604051808303816000875af1158015612b9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bbe919061579e565b5050505b612c1a601a54601755601b54601855601c54601980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b505b50505050565b600082815260208190526040902060010154612c3d816137b0565b6112b983836138aa565b60105461dead600090815260096020527f960b1051749987b45b5679007fff577a1c2f763ec21c15a6c5eb19307500378554909161128f9190613193565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16612d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff16600090815260126020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16612e01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff16600090815260116020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff16612ee5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152829073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa158015612f51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f759190615785565b101561300c576040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa158015612fe5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130099190615785565b91505b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301526024820184905284169063a9059cbb906044016020604051808303816000875af1158015613081573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c1c919061579e565b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff1661313d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4348455252593a204e4f545f414c4c4f574544000000000000000000000000006044820152606401610f85565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152600e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b600061319f828461573a565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8316613248576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610f85565b73ffffffffffffffffffffffffffffffffffffffff82166132eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610f85565b73ffffffffffffffffffffffffffffffffffffffff8381166000818152600a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166133fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610f85565b73ffffffffffffffffffffffffffffffffffffffff821661349f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610f85565b6000811161352f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610f85565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600c602052604090205460ff161561356257600080fd5b61356d838383613961565b613576816141ca565b15613583576135836142e9565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600d602052604090205460ff16156135ef5773ffffffffffffffffffffffffffffffffffffffff83166000908152600b60205260408120546135e19083613193565b90506135ed8482614344565b505b73ffffffffffffffffffffffffffffffffffffffff83166000908152600d602052604090205460ff161561365b5773ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604081205461364d90836137a4565b90506136598382614344565b505b73ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604081205460ff1680156136ab575060335473ffffffffffffffffffffffffffffffffffffffff858116911614155b80156136dd575073ffffffffffffffffffffffffffffffffffffffff841660009081526011602052604090205460ff16155b156136ea57506001613752565b73ffffffffffffffffffffffffffffffffffffffff841660009081526012602052604090205460ff161561372057506002613752565b73ffffffffffffffffffffffffffffffffffffffff831660009081526012602052604090205460ff1615613752575060035b612c1c848484846144a6565b6000818484111561379c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8591906154d5565b505050900390565b600061319f82846157bb565b6119218133614a2d565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1661136d5760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905561384c3390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff161561136d5760008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b73ffffffffffffffffffffffffffffffffffffffff831661398d5761398582614afd565b6112b9614b48565b73ffffffffffffffffffffffffffffffffffffffff82166139b15761398583614afd565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600d602052604090205460ff16156139e8576112b983614afd565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600d602052604090205460ff1615613a1f576112b982614afd565b613a2883614afd565b6112b982614afd565b73ffffffffffffffffffffffffffffffffffffffff8216613aae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610f85565b600f54613abb9082613193565b600f5573ffffffffffffffffffffffffffffffffffffffff8216600090815260096020526040902054613aee9082613193565b73ffffffffffffffffffffffffffffffffffffffff83166000818152600960205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90613b4c9085815260200190565b60405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216613bfb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610f85565b613c4581604051806060016040528060228152602001615a156022913973ffffffffffffffffffffffffffffffffffffffff8516600090815260096020526040902054919061375e565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020526040902055600f54613c7890826137a4565b600f55601054613c889082613193565b60105560405181815260009073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001613b4c565b60008060008411613d43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4552433230536e617073686f743a2069642069732030000000000000000000006044820152606401610f85565b613d4b613ed8565b841115613db4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006044820152606401610f85565b6000613dc08486614b56565b84549091508103613dd8576000809250925050613e00565b6001846001018281548110613def57613def6157ce565b906000526020600020015492509250505b9250929050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600a60209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612c1c5781811015613ecb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610f85565b612c1c84848484036131a6565b600061128f60365490565b6000613ef3603680546001019055565b6000613efd613ed8565b90507f8030e83b04d87bef53480e26263266d6ca66863aa8506aca6f2559d18aa1cb6781604051613f3091815260200190565b60405180910390a1919050565b600080805b601554811015613f915760008181526013602052604090205473ffffffffffffffffffffffffffffffffffffffff808616911603613f7f57600191505b80613f898161574d565b915050613f42565b5092915050565b6000806015546001613faa919061573a565b905060005b601554811015613f915760008181526014602052604090205473ffffffffffffffffffffffffffffffffffffffff808616911603613feb578091505b80613ff58161574d565b915050613faf565b6040805160028082526060820183526000926020830190803683370190505090508181600081518110614032576140326157ce565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152603554825191169082906001908110614070576140706157ce565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526033546040517f095ea7b30000000000000000000000000000000000000000000000000000000081529082166004820152602481018590529083169063095ea7b3906044016020604051808303816000875af11580156140f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061411b919061579e565b506033546040517f5c11d79500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690635c11d7959061417b90869060009086903090429060040161582c565b600060405180830381600087803b15801561419557600080fd5b505af11580156141a9573d6000803e3d6000fd5b50505050505050565b600061319f82846158b7565b600061319f82846158f4565b60345460009073ffffffffffffffffffffffffffffffffffffffff16331480159061421157506035547501000000000000000000000000000000000000000000900460ff16155b801561421f5750602c5460ff165b801561423a575060305460315443916142379161573a565b11155b80156142d95750602f546035546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa1580156142b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142d69190615785565b10155b8015610eeb575050603254111590565b602f546142f89061dead614c1b565b43603155602f54602e5461430b91613193565b602e819055602d54101561434257602c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b565b600081118015614377575073ffffffffffffffffffffffffffffffffffffffff82166000908152600b6020526040902054155b15614402576006805473ffffffffffffffffffffffffffffffffffffffff84166000818152600760205260408120839055600183018455929092527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169091179055614442565b80158015614434575073ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205415155b156144425761444282614e63565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460085461447a9183916117ef916137a4565b60085573ffffffffffffffffffffffffffffffffffffffff9091166000908152600b6020526040902055565b60ff811615806144b957508060ff166001145b156147085760178054601a5560188054601b5560198054601c805473ffffffffffffffffffffffffffffffffffffffff8084167fffffffffffffffffffffffff000000000000000000000000000000000000000092831617909255601d54909555601e54909355601f5490921692909116919091179055604080518082018252601481527f496e73756666696369656e742042616c616e636500000000000000000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff871660009081526009909152919091205461459891849061375e565b73ffffffffffffffffffffffffffffffffffffffff80861660009081526009602052604080822093909355908516815220546145d49083613193565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526009602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906146359086815260200190565b60405180910390a38060ff166000036146a5576146a0601a54601755601b54601855601c54601980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b612c1c565b8060ff166001036146a0576146a0602354601755602454601855602554601980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b8060ff1660020361478a5760178054601a5560188054601b5560198054601c805473ffffffffffffffffffffffffffffffffffffffff8084167fffffffffffffffffffffffff00000000000000000000000000000000000000009283161790925560265490955560275490935560285490921692909116919091179055614808565b8060ff166003036148085760178054601a5560188054601b5560198054601c805473ffffffffffffffffffffffffffffffffffffffff8084167fffffffffffffffffffffffff000000000000000000000000000000000000000092831617909255602954909555602a54909355602b54909216929091169190911790555b600061481383614fed565b905061489e836040518060400160405280601481526020017f496e73756666696369656e742042616c616e6365000000000000000000000000815250600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461375e9092919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff808716600090815260096020526040808220939093558351918716815291909120546148de91613193565b73ffffffffffffffffffffffffffffffffffffffff851660009081526009602052604090205561490d81615074565b614965601a54601755601b54601855601c54601980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83600001516040516149c891815260200190565b60405180910390a360195460208281015160405190815273ffffffffffffffffffffffffffffffffffffffff928316928816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050505050565b60008281526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff1661136d57614a838173ffffffffffffffffffffffffffffffffffffffff16601461509c565b614a8e83602061509c565b604051602001614a9f92919061592f565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a0000000000000000000000000000000000000000000000000000000008252610f85916004016154d5565b73ffffffffffffffffffffffffffffffffffffffff81166000908152603760209081526040808320600b83528184205460099093529220546119219291614b439161573a565b6152df565b6143426038614b43600f5490565b81546000908103614b6957506000610eeb565b82546000905b80821015614bc5576000614b838383615329565b905084868281548110614b9857614b986157ce565b90600052602060002001541115614bb157809150614bbf565b614bbc81600161573a565b92505b50614b6f565b600082118015614bfa57508385614bdd6001856157bb565b81548110614bed57614bed6157ce565b9060005260206000200154145b15614c1357614c0a6001836157bb565b92505050610eeb565b509050610eeb565b603580547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1675010000000000000000000000000000000000000000001790556040805160028082526060820183526000926020830190803683375050603554825192935073ffffffffffffffffffffffffffffffffffffffff1691839150600090614ca957614ca96157ce565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503081600181518110614cf757614cf76157ce565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526035546033546040517f095ea7b300000000000000000000000000000000000000000000000000000000815290831660048201526024810186905291169063095ea7b3906044016020604051808303816000875af1158015614d80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614da4919061579e565b506033546040517f5c11d79500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690635c11d79590614e0490869060009086908890429060040161582c565b600060405180830381600087803b158015614e1e57600080fd5b505af1158015614e32573d6000803e3d6000fd5b5050603580547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1690555050505050565b60068054614e73906001906157bb565b81548110614e8357614e836157ce565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff84811684526007909252604090922054600680549290931692918110614ece57614ece6157ce565b600091825260208083209190910180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff948516179055918316815260079182905260408120546006805491939291614f3f906001906157bb565b81548110614f4f57614f4f6157ce565b600091825260208083209091015473ffffffffffffffffffffffffffffffffffffffff1683528201929092526040019020556006805480614f9257614f926159b0565b60008281526020902081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff90810180547fffffffffffffffffffffffff000000000000000000000000000000000000000016905501905550565b61501160405180606001604052806000815260200160008152602001600081525090565b600060405180606001604052806000815260200161503485601760000154615344565b815260200161504885601760010154615344565b815250905061506c81604001516112898360200151866137a490919063ffffffff16565b815292915050565b6020810151601954611921919073ffffffffffffffffffffffffffffffffffffffff16615366565b606060006150ab8360026158b7565b6150b690600261573a565b67ffffffffffffffff8111156150ce576150ce6157fd565b6040519080825280601f01601f1916602001820160405280156150f8576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061512f5761512f6157ce565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110615192576151926157ce565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006151ce8460026158b7565b6151d990600161573a565b90505b6001811115615276577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061521a5761521a6157ce565b1a60f81b828281518110615230576152306157ce565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c9361526f816159df565b90506151dc565b50831561319f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610f85565b60006152e9613ed8565b9050806152f5846153eb565b10156112b9578254600180820185556000858152602080822090930193909355938401805494850181558252902090910155565b600061533860028484186158f4565b61319f9084841661573a565b60008160000361535657506000610eeb565b61319f612710612a4485856141b2565b73ffffffffffffffffffffffffffffffffffffffff8116615385575050565b81600003615391575050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600960205260409020546153c19083613193565b73ffffffffffffffffffffffffffffffffffffffff90911660009081526009602052604090205550565b805460009081036153fe57506000919050565b8154829061540e906001906157bb565b8154811061541e5761541e6157ce565b90600052602060002001549050919050565b60006020828403121561544257600080fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461319f57600080fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461192157600080fd5b6000602082840312156154a657600080fd5b813561319f81615472565b60005b838110156154cc5781810151838201526020016154b4565b50506000910152565b60208152600082518060208401526154f48160408501602087016154b1565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6000806040838503121561553957600080fd5b823561554481615472565b946020939093013593505050565b801515811461192157600080fd5b600080600080600060a0868803121561557857600080fd5b853561558381615552565b97602087013597506040870135966060810135965060800135945092505050565b6000806000606084860312156155b957600080fd5b83356155c481615472565b925060208401356155d481615472565b929592945050506040919091013590565b6000602082840312156155f757600080fd5b5035919050565b6000806040838503121561561157600080fd5b82359150602083013561562381615472565b809150509250929050565b6000806040838503121561564157600080fd5b823561564c81615472565b9150602083013561562381615472565b6000806040838503121561566f57600080fd5b823561567a81615472565b9150602083013561562381615552565b6000806040838503121561569d57600080fd5b50508035926020909101359150565b6000806000606084860312156156c157600080fd5b83356156cc81615472565b92506020840135915060408401356156e381615472565b809150509250925092565b60006020828403121561570057600080fd5b815161319f81615472565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610eeb57610eeb61570b565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361577e5761577e61570b565b5060010190565b60006020828403121561579757600080fd5b5051919050565b6000602082840312156157b057600080fd5b815161319f81615552565b81810381811115610eeb57610eeb61570b565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561588957845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101615857565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156158ef576158ef61570b565b500290565b60008261592a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516159678160178501602088016154b1565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060179184019182015283516159a48160288401602088016154b1565b01602801949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6000816159ee576159ee61570b565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a9f312ee86611988e4cc5930b9bf8bc2e659978d430adcc623221d2e96e2f4c064736f6c63430008100033

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

0000000000000000000000003b505af97031b75e2be39e7f8fa1fa634857f29d000000000000000000000000c71b2b3dd4a0a72f8857e4f5fbac53b401f273550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000003e8

-----Decoded View---------------
Arg [0] : _router (address): 0x3b505Af97031B75e2be39e7F8FA1Fa634857f29D
Arg [1] : _development (address): 0xC71B2b3DD4a0A72f8857e4f5fBac53b401F27355
Arg [2] : _developmentFeeBuy (uint256): 0
Arg [3] : _buybackFeeBuy (uint256): 0
Arg [4] : _developmentFeeSell (uint256): 200
Arg [5] : _buybackFeeSell (uint256): 1000

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000003b505af97031b75e2be39e7f8fa1fa634857f29d
Arg [1] : 000000000000000000000000c71b2b3dd4a0a72f8857e4f5fbac53b401f27355
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [5] : 00000000000000000000000000000000000000000000000000000000000003e8


Deployed Bytecode Sourcemap

473:30647:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2606:202:0;;;;;;;;;;-1:-1:-1;2606:202:0;;;;;:::i;:::-;;:::i;:::-;;;516:14:17;;509:22;491:41;;479:2;464:18;2606:202:0;;;;;;;;26398:328:13;;;;;;;;;;-1:-1:-1;26398:328:13;;;;;:::i;:::-;;:::i;:::-;;3210:35;;;;;;;;;;-1:-1:-1;3210:35:13;;;;;;;;;;;1153:42:17;1141:55;;;1123:74;;1111:2;1096:18;3210:35:13;954:249:17;5770:90:13;;;;;;;;;;-1:-1:-1;5848:5:13;;;;;;;;;;;;;;;;;5770:90;;;;;;;:::i;6811:158::-;;;;;;;;;;-1:-1:-1;6811:158:13;;;;;:::i;:::-;;:::i;1724:46::-;;;;;;;;;;-1:-1:-1;1724:46:13;;;;;:::i;:::-;;;;;;;;;;;;;;;;19400:565;;;;;;;;;;-1:-1:-1;19400:565:13;;;;;:::i;:::-;;:::i;6062:93::-;;;;;;;;;;-1:-1:-1;6141:7:13;;6062:93;;;3032:25:17;;;3020:2;3005:18;6062:93:13;2886:177:17;3897:122:13;;;;;;;;;;;;3939:80;3897:122;;6975:309;;;;;;;;;;-1:-1:-1;6975:309:13;;;;;:::i;:::-;;:::i;4391:129:0:-;;;;;;;;;;-1:-1:-1;4391:129:0;;;;;:::i;:::-;4465:7;4491:12;;;;;;;;;;:22;;;;4391:129;629:62:13;;;;;;;;;;;;667:24;629:62;;13646:149;;;;;;;;;;;;;:::i;3179:24::-;;;;;;;;;;-1:-1:-1;3179:24:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4230:14:17;;4223:22;4205:41;;4277:2;4262:18;;4255:34;;;;4305:18;;;4298:34;;;;4363:2;4348:18;;4341:34;;;;4406:3;4391:19;;4384:35;4450:3;4435:19;;4428:35;4494:3;4479:19;;4472:35;4192:3;4177:19;3179:24:13;3896:617:17;4816:145:0;;;;;;;;;;-1:-1:-1;4816:145:0;;;;;:::i;:::-;;:::i;2742:47:13:-;;;;;;;;;;-1:-1:-1;2742:47:13;;;;;:::i;:::-;;;;;;;;;;;;;;;;5966:90;;;;;;;;;;-1:-1:-1;5966:90:13;;2955:2;4980:36:17;;4968:2;4953:18;5966:90:13;4838:184:17;5925:214:0;;;;;;;;;;-1:-1:-1;5925:214:0;;;;;:::i;:::-;;:::i;7290:224:13:-;;;;;;;;;;-1:-1:-1;7290:224:13;;;;;:::i;:::-;;:::i;8172:181::-;;;;;;;;;;-1:-1:-1;8172:181:13;;;;;:::i;:::-;;:::i;10059:472::-;;;;;;;;;;-1:-1:-1;10059:472:13;;;;;:::i;:::-;;:::i;24071:315::-;;;;;;;;;;-1:-1:-1;24071:315:13;;;;;:::i;:::-;;:::i;24392:219::-;;;;;;;;;;-1:-1:-1;24392:219:13;;;;;:::i;:::-;;:::i;7801:180::-;;;;;;;;;;-1:-1:-1;7801:180:13;;;;;:::i;:::-;;:::i;28434:270::-;;;;;;;;;;-1:-1:-1;28434:270:13;;;;;:::i;:::-;;:::i;11746:121::-;;;;;;;;;;-1:-1:-1;11746:121:13;;;;;:::i;:::-;11833:27;;11810:4;11833:27;;;:18;:27;;;;;;;;;11746:121;9545:508;;;;;;;;;;-1:-1:-1;9545:508:13;;;;;:::i;:::-;;:::i;24694:143::-;;;;;;;;;;-1:-1:-1;24694:143:13;;;;;:::i;:::-;;:::i;3396:30::-;;;;;;;;;;-1:-1:-1;3396:30:13;;;;;;;;;;;25640:199;;;;;;;;;;-1:-1:-1;25640:199:13;;;;;:::i;:::-;;:::i;6371:117::-;;;;;;;;;;-1:-1:-1;6371:117:13;;;;;:::i;:::-;6463:18;;6437:7;6463:18;;;:9;:18;;;;;;;6371:117;23672:294;;;;;;;;;;-1:-1:-1;23672:294:13;;;;;:::i;:::-;;:::i;922:26::-;;;;;;;;;;;;;;;;28267:109;;;;;;;;;;;;;:::i;13801:252::-;;;;;;;;;;-1:-1:-1;13801:252:13;;;;;:::i;:::-;;:::i;2895:145:0:-;;;;;;;;;;-1:-1:-1;2895:145:0;;;;;:::i;:::-;2981:4;3004:12;;;;;;;;;;;:29;;;;;;;;;;;;;;;;2895:145;5866:94:13;;;;;;;;;;-1:-1:-1;5946:7:13;;;;;;;;;;;;;;;;;5866:94;;27771:136;;;;;;;;;;;;;:::i;28710:230::-;;;;;;;;;;-1:-1:-1;28710:230:13;;;;;:::i;:::-;;:::i;1491:41::-;;;;;;;;;;-1:-1:-1;1491:41:13;;;;;:::i;:::-;;;;;;;;;;;;;;9121:418;;;;;;;;;;-1:-1:-1;9121:418:13;;;;;:::i;:::-;;:::i;21083:184::-;;;;;;;;;;-1:-1:-1;21083:184:13;;;;;:::i;:::-;;:::i;2027:49:0:-;;;;;;;;;;-1:-1:-1;2027:49:0;2072:4;2027:49;;7520:275:13;;;;;;;;;;-1:-1:-1;7520:275:13;;;;;:::i;:::-;;:::i;26041:287::-;;;;;;;;;;-1:-1:-1;26041:287:13;;;;;:::i;:::-;;:::i;6494:164::-;;;;;;;;;;-1:-1:-1;6494:164:13;;;;;:::i;:::-;;:::i;3283:19::-;;;;;;;;;;-1:-1:-1;3283:19:13;;;;;;;;8598:517;;;;;;;;;;-1:-1:-1;8598:517:13;;;;;:::i;:::-;;:::i;20228:555::-;;;;;;;;;;-1:-1:-1;20228:555:13;;;;;:::i;:::-;;:::i;3308:81::-;;;;;;;;;;;;3347:42;3308:81;;3251:26;;;;;;;;;;-1:-1:-1;3251:26:13;;;;;;;;14059:141;;;;;;;;;;;;;:::i;15879:1633::-;;;;;;;;;;-1:-1:-1;15879:1633:13;;;;;:::i;:::-;;:::i;561:62::-;;;;;;;;;;;;599:24;561:62;;5241:147:0;;;;;;;;;;-1:-1:-1;5241:147:0;;;;;:::i;:::-;;:::i;6161:85:13:-;;;;;;;;;;-1:-1:-1;1874:15:13;6161:85;;6252:113;;;;;;;;;;;;;:::i;6664:141::-;;;;;;;;;;-1:-1:-1;6664:141:13;;;;;:::i;:::-;6771:18;;;;6745:7;6771:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6664:141;3082:21;;;;;;;;;;-1:-1:-1;3082:21:13;;;;;;;;;;;;;;;;;;6998:25:17;;;7054:2;7039:18;;7032:34;;;;7114:42;7102:55;7082:18;;;7075:83;6986:2;6971:18;3082:21:13;6796:368:17;8359:185:13;;;;;;;;;;-1:-1:-1;8359:185:13;;;;;:::i;:::-;;:::i;3056:20::-;;;;;;;;;;-1:-1:-1;3056:20:13;;;;;;;;;;;;;;697:70;;;;;;;;;;;;739:28;697:70;;7987:179;;;;;;;;;;-1:-1:-1;7987:179:13;;;;;:::i;:::-;;:::i;21324:315::-;;;;;;;;;;-1:-1:-1;21324:315:13;;;;;:::i;:::-;;:::i;27519:190::-;;;;;;;;;;-1:-1:-1;27519:190:13;;;;;:::i;:::-;;:::i;2606:202:0:-;2691:4;2714:47;;;2729:32;2714:47;;:87;;-1:-1:-1;952:25:9;937:40;;;;2765:36:0;2707:94;2606:202;-1:-1:-1;;2606:202:0:o;26398:328:13:-;26507:10;2072:4:0;3004:29;;;:12;;:29;:12;:29;;;;;26471:71:13;;;;;;;7847:2:17;26471:71:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;26471:71:13;;;;;;;;;26561:29;;;;;;;:12;:29;;;;;;;;26553:117;;;;;;;8195:2:17;26553:117:13;;;8177:21:17;8234:2;8214:18;;;8207:30;8273:34;8253:18;;;8246:62;8344:34;8324:18;;;8317:62;8416:12;8395:19;;;8388:41;8446:19;;26553:117:13;7993:478:17;26553:117:13;26681:29;;26713:5;26681:29;;;:12;:29;;;;;:37;;;;;;26398:328::o;6811:158::-;6886:4;6902:39;719:10:6;6925:7:13;6934:6;6902:8;:39::i;:::-;-1:-1:-1;6958:4:13;6811:158;;;;:::o;19400:565::-;19577:10;2072:4:0;3004:29;;;:12;;:29;:12;:29;;;;;19541:71:13;;;;;;;7847:2:17;19541:71:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;19541:71:13;7645:343:17;19541:71:13;19622:8;:38;;;;;;;;;;;;;;19670:23;:30;;;;-1:-1:-1;19710:31:13;:35;19755:26;:36;19801:31;:41;19884:12;19852:29;:44;19906:32;:52;19400:565::o;6975:309::-;7073:4;7089:36;7099:6;7107:9;7118:6;7089:9;:36::i;:::-;7135:121;7144:6;719:10:6;7166:89:13;7204:6;7166:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;;;719:10:6;7166:33:13;;;;;;;;;;:37;:89::i;:::-;7135:8;:121::i;:::-;-1:-1:-1;7273:4:13;6975:309;;;;;:::o;13646:149::-;6463:9;:18;;;;3347:42;13699:7;6463:18;;;;;13725:7;;13699;;13725:63;;6463:18;;13725:36;;:7;:11;:36::i;:::-;:40;;:63::i;:::-;13718:70;;13646:149;:::o;4816:145:0:-;4465:7;4491:12;;;;;;;;;;:22;;;2505:16;2516:4;2505:10;:16::i;:::-;4929:25:::1;4940:4;4946:7;4929:10;:25::i;:::-;4816:145:::0;;;:::o;5925:214::-;6020:23;;;719:10:6;6020:23:0;6012:83;;;;;;;8678:2:17;6012:83:0;;;8660:21:17;8717:2;8697:18;;;8690:30;8756:34;8736:18;;;8729:62;8827:17;8807:18;;;8800:45;8862:19;;6012:83:0;8476:411:17;6012:83:0;6106:26;6118:4;6124:7;6106:11;:26::i;:::-;5925:214;;:::o;7290:224:13:-;719:10:6;7387:4:13;7435:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;7387:4;;7403:83;;7426:7;;7435:50;;7474:10;7435:38;:50::i;8172:181::-;8270:10;2072:4:0;3004:29;;;:12;;:29;:12;:29;;;;;8234:71:13;;;;;;;7847:2:17;8234:71:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;8234:71:13;7645:343:17;8234:71:13;8315:24;;;;;;:15;:24;;;;;:31;;;;8342:4;8315:31;;;8172:181::o;10059:472::-;10173:10;2072:4:0;3004:29;;;:12;;:29;:12;:29;;;;;10137:71:13;;;;;;;7847:2:17;10137:71:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;10137:71:13;7645:343:17;10137:71:13;10237:11;;;;;;;10252:5;10218:31;;;:18;:31;;;;;;;;;:39;;;;;;10267:13;:39;;;;;;;;;;;;;;10316:19;;;;;;;;;;;;;;10352:20;;;;;;;10267:39;;10352:18;;:20;;;;;;;;;;10267:39;10352:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10345:4;:27;;;;;;;;;;;;;10398:11;;;;;10345:4;10383:27;;;:14;:27;;;;;;;;:34;;;;;;10345:27;10383:34;;;;;;10446:11;;;;10427:31;;:18;:31;;;;;:38;;;;;;;;10487:11;;10476:8;;;;:22;;;;10487:11;;;10476:22;;;;;;10520:4;;10508:6;:9;;;;:16;;;;;10520:4;;;;10508:16;;;-1:-1:-1;;10059:472:13:o;24071:315::-;24161:10;2981:4:0;3004:29;;;:12;;:29;:12;:29;;;;;24132:64:13;;;;;;;7847:2:17;24132:64:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;24132:64:13;7645:343:17;24132:64:13;1874:15;24214:26;24232:7;24214:13;6141:7;;;6062:93;24214:13;:17;;:26::i;:::-;:40;;24206:79;;;;;;;9350:2:17;24206:79:13;;;9332:21:17;9389:2;9369:18;;;9362:30;9428:28;9408:18;;;9401:56;9474:18;;24206:79:13;9148:350:17;24206:79:13;24295:46;24324:1;24328:3;24333:7;24295:20;:46::i;:::-;24351:19;24357:3;24362:7;24351:5;:19::i;24392:219::-;24469:10;2981:4:0;3004:29;;;:12;;:29;:12;:29;;;;;24440:64:13;;;;;;;7847:2:17;24440:64:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;24440:64:13;7645:343:17;24440:64:13;24514:53;24535:10;24555:1;24559:7;24514:20;:53::i;:::-;24577:26;24583:10;24595:7;24577:5;:26::i;:::-;24392:219;:::o;7801:180::-;7895:10;2072:4:0;3004:29;;;:12;;:29;:12;:29;;;;;7859:71:13;;;;;;;7847:2:17;7859:71:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;7859:71:13;7645:343:17;7859:71:13;7940:27;;;;;;:18;:27;;;;;:34;;;;7970:4;7940:34;;;7801:180::o;28434:270::-;28597:33;;;28521:7;28597:33;;;:24;:33;;;;;28521:7;;;;28576:55;;28585:10;;28576:8;:55::i;:::-;28540:91;;;;28649:11;:48;;28672:24;28688:7;28672:15;:24::i;:::-;28649:48;;;28663:5;28649:48;28642:55;28434:270;-1:-1:-1;;;;;28434:270:13:o;9545:508::-;9650:10;2981:4:0;3004:29;;;:12;;:29;:12;:29;;;;;9617:68:13;;;;;;;7847:2:17;9617:68:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;9617:68:13;7645:343:17;9617:68:13;9703:26;;;9695:71;;;;;;;9705:2:17;9695:71:13;;;9687:21:17;;;9724:18;;;9717:30;9783:34;9763:18;;;9756:62;9835:18;;9695:71:13;9503:356:17;9695:71:13;9776:31;:46;;;;;;;;;;;;;;;9832:27;:42;;;;;;;;9884:28;:43;;;;;;;;9937:34;:49;;;;;;;;9996:35;:50;;;;;;;;9545:508::o;24694:143::-;24810:18;;;24757:7;24810:18;;;:9;:18;;;;;;;;;24783:6;:15;;;;;:22;:46;;:26;:46::i;25640:199::-;25753:10;2072:4:0;3004:29;;;:12;;:29;:12;:29;;;;;25717:71:13;;;;;;;7847:2:17;25717:71:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;25717:71:13;7645:343:17;25717:71:13;25799:26;;;;;;;;;:17;:26;;;;;:32;;;;;;;;;;;;;25640:199::o;23672:294::-;23769:10;2981:4:0;3004:29;;;:12;;:29;:12;:29;;;;;23740:64:13;;;;;;;7847:2:17;23740:64:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;23740:64:13;7645:343:17;23740:64:13;23815:43;23831:5;23838:10;23850:7;23815:15;:43::i;:::-;23868:48;23889:5;23904:1;23908:7;23868:20;:48::i;:::-;23928:21;23934:5;23941:7;23928:5;:21::i;28267:109::-;28320:7;28346:23;:21;:23::i;13801:252::-;13882:27;;;13860:7;13882:27;;;:18;:27;;;;;;;;13879:168;;;-1:-1:-1;13932:1:13;;13801:252;-1:-1:-1;13801:252:13:o;13879:168::-;14012:23;;:12;13967:27;:69;;:44;:69::i;27771:136::-;27830:10;27816:25;;;;:13;:25;;;;;;;;27808:71;;;;;;;10066:2:17;27808:71:13;;;10048:21:17;10105:2;10085:18;;;10078:30;10144:34;10124:18;;;10117:62;10215:3;10195:18;;;10188:31;10236:19;;27808:71:13;9864:397:17;27808:71:13;27889:11;:9;:11::i;28710:230::-;28782:7;28802:16;28820:13;28837:43;28846:10;28858:21;28837:8;:43::i;:::-;28801:79;;;;28898:11;:35;;6141:7;;28898:35;;;28912:5;28898:35;28891:42;28710:230;-1:-1:-1;;;;28710:230:13:o;9121:418::-;9240:10;2981:4:0;3004:29;;;:12;;:29;:12;:29;;;;;9207:68:13;;;;;;;7847:2:17;9207:68:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;9207:68:13;7645:343:17;9207:68:13;9329:4;9293:32;:15;9313:11;9293:19;:32::i;:::-;:40;;9285:74;;;;;;;10468:2:17;9285:74:13;;;10450:21:17;10507:2;10487:18;;;10480:30;10546:23;10526:18;;;10519:51;10587:18;;9285:74:13;10266:345:17;9285:74:13;9369:9;:42;;;9421:20;:34;;;9500:32;9396:15;9444:11;9500:19;:32::i;:::-;9466:16;:66;-1:-1:-1;;9121:418:13:o;21083:184::-;21185:10;2072:4:0;3004:29;;;:12;;:29;:12;:29;;;;;21149:71:13;;;;;;;7847:2:17;21149:71:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;21149:71:13;7645:343:17;21149:71:13;21230:28;;:20;;;;:28;;;;;21251:6;;21230:28;;;;21251:6;21230:20;:28;;;;;;;;;;;;;;;;;;;7520:275;7622:4;7638:129;719:10:6;7661:7:13;7670:96;7709:15;7670:96;;;;;;;;;;;;;;;;;719:10:6;7670:25:13;;;;:11;:25;;;;;;;;;:34;;;;;;;;;;;;:38;:96::i;26041:287::-;26149:10;2072:4:0;3004:29;;;:12;;:29;:12;:29;;;;;26113:71:13;;;;;;;7847:2:17;26113:71:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;26113:71:13;7645:343:17;26113:71:13;26204:31;;;;;;;:12;:31;;;;;;;;26203:32;26195:76;;;;;;;10818:2:17;26195:76:13;;;10800:21:17;10857:2;10837:18;;;10830:30;10896:32;10876:18;;;10869:60;10946:18;;26195:76:13;10616:354:17;26195:76:13;26282:31;;;;;;:12;:31;;;;;:38;;;;26316:4;26282:38;;;26041:287::o;6494:164::-;6572:4;6588:42;719:10:6;6612:9:13;6623:6;6588:9;:42::i;8598:517::-;8716:10;2981:4:0;3004:29;;;:12;;:29;:12;:29;;;;;8683:68:13;;;;;;;7847:2:17;8683:68:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;8683:68:13;7645:343:17;8683:68:13;8805:4;8769:32;:15;8789:11;8769:19;:32::i;:::-;:40;;8761:74;;;;;;;10468:2:17;8761:74:13;;;10450:21:17;10507:2;10487:18;;;10480:30;10546:23;10526:18;;;10519:51;10587:18;;8761:74:13;10266:345:17;8761:74:13;8845:12;:45;;;8900:23;:37;;;8948:8;:41;;;8999:19;:33;;;9076:32;8875:15;8926:11;9076:19;:32::i;:::-;9043:15;:65;-1:-1:-1;;8598:517:13:o;20228:555::-;20311:13;;:23;;;;;;;;20293:15;;20311:13;;;:21;;:23;;;;;;;;;;;;;;:13;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20293:41;-1:-1:-1;20365:10:13;:21;;;;;:73;;-1:-1:-1;20424:13:13;;;;20402:10;:36;20365:73;:116;;;-1:-1:-1;20454:10:13;20476:4;20454:27;20365:116;20344:176;;;;;;;11177:2:17;20344:176:13;;;11159:21:17;11216:2;11196:18;;;11189:30;11255:18;11235;;;11228:46;11291:18;;20344:176:13;10975:340:17;20344:176:13;20535:27;20556:5;20535:20;:27::i;:::-;20531:246;;20578:25;;;;;;;;:18;:25;;;;;;;;:32;;20606:4;20578:32;;;;;;;;;20624:14;:21;;;;;:28;;;;;;;;;20673:11;;;20667:18;;:5;:18;;;;;:26;;;;;;;;;;;20714:11;;20707:19;;:6;:19;;;;;;:28;;;;;;;;;;;;;;;20750:16;;;;20606:4;;20750:16;:::i;:::-;;;;-1:-1:-1;;20283:500:13;20228:555;;:::o;14059:141::-;14169:23;;:12;14124:27;14098:7;;14124:69;;:27;:44;:69::i;15879:1633::-;3546:11;3579:6;3575:103;3595:11;;3591:1;:15;3575:103;;;3630:8;;;;:5;:8;;;;;;3642:10;3630:22;:8;;;:22;3627:40;;3663:4;3654:13;;3627:40;3608:3;;;;:::i;:::-;;;;3575:103;;;-1:-1:-1;3730:13:13;;;;3708:10;:36;;:58;;;3760:6;3708:58;3687:122;;;;;;;11177:2:17;3687:122:13;;;11159:21:17;11216:2;11196:18;;;11189:30;11255:18;11235;;;11228:46;11291:18;;3687:122:13;10975:340:17;3687:122:13;15962:6:::1;15972:1;15962:11:::0;15959:1547:::1;;15989:15;11720:13:::0;11705:28;:12;:28;;;;;;;;;;;;;;;;;;;;;;11662:78;15959:1547:::1;16036:18;16057:21;16072:5;16057:14;:21::i;:::-;16036:42;;16108:11;;16095:10;:24;16092:1404;;;16160:50;::::0;;;;16184:10:::1;16160:50;::::0;::::1;12074:34:17::0;16204:4:13::1;12124:18:17::0;;;12117:43;16139:18:13::1;::::0;16160:23:::1;::::0;::::1;::::0;::::1;::::0;11986:18:17;;16160:50:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16139:71;;16245:6;16231:10;:20;16228:1254;;16275:61;::::0;;;;16302:10:::1;16275:61;::::0;::::1;12623:34:17::0;16322:4:13::1;12673:18:17::0;;;12666:43;12725:18;;;12718:34;;;16275:26:13::1;::::0;::::1;::::0;::::1;::::0;12535:18:17;;16275:61:13::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;16371:4:13::1;::::0;::::1;16362:13:::0;;::::1;16371:4:::0;::::1;16362:13;16359:1067;;16442:4;::::0;16427:46:::1;::::0;;;;16467:4:::1;16427:46;::::0;::::1;1123:74:17::0;16403:21:13::1;::::0;16442:4:::1;;::::0;16427:31:::1;::::0;1096:18:17;;16427:46:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16403:70;;16499:25;16510:6;16518:5;16499:10;:25::i;:::-;16583:4;::::0;16568:46:::1;::::0;;;;16608:4:::1;16568:46;::::0;::::1;1123:74:17::0;16550:15:13::1;::::0;16568:65:::1;::::0;16619:13;;16583:4:::1;;::::0;16568:31:::1;::::0;1096:18:17;;16568:46:13::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:65::-;16550:83;;16775:16;16794:8;:6;:8::i;:::-;16775:27;;16828:28;16859:54;16904:8;16859:40;16871:12;:27;;;16859:7;:11;;:40;;;;:::i;:::-;:44:::0;::::1;:54::i;:::-;16947:4;::::0;16962:31;;16940:76:::1;::::0;;;;16947:4:::1;16962:31:::0;;::::1;16940:76;::::0;::::1;13187:74:17::0;13277:18;;;13270:34;;;16828:85:13;;-1:-1:-1;16947:4:13::1;::::0;16940:21:::1;::::0;13160:18:17;;16940:76:13::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16377:662;;;;16359:1067;;;17162:16;17181:8;:6;:8::i;:::-;17162:27;;17215:28;17246:53;17290:8;17246:39;17257:12;:27;;;17246:6;:10;;:39;;;;:::i;:53::-;17349:31:::0;;17326:77:::1;::::0;;;;:22:::1;17349:31:::0;;::::1;17326:77;::::0;::::1;13187:74:17::0;13277:18;;;13270:34;;;17215:84:13;;-1:-1:-1;17326:22:13;::::1;::::0;::::1;::::0;13160:18:17;;17326:77:13::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17045:381;;16359:1067;17448:15;11720:13:::0;11705:28;:12;:28;;;;;;;;;;;;;;;;;;;;;;11662:78;17448:15:::1;16121:1375;16092:1404;16022:1484;3536:291:::0;15879:1633;;:::o;5241:147:0:-;4465:7;4491:12;;;;;;;;;;:22;;;2505:16;2516:4;2505:10;:16::i;:::-;5355:26:::1;5367:4;5373:7;5355:11;:26::i;6252:113:13:-:0;6350:7;;3347:42;6296:7;6322:23;;;:9;:23;;;;6296:7;;6322:36;;:23;:27;:36::i;8359:185::-;8460:10;2072:4:0;3004:29;;;:12;;:29;:12;:29;;;;;8424:71:13;;;;;;;7847:2:17;8424:71:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;8424:71:13;7645:343:17;8424:71:13;8505:24;;8532:5;8505:24;;;:15;:24;;;;;:32;;;;;;8359:185::o;7987:179::-;8079:10;2072:4:0;3004:29;;;:12;;:29;:12;:29;;;;;8043:71:13;;;;;;;7847:2:17;8043:71:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;8043:71:13;7645:343:17;8043:71:13;8124:27;;8154:5;8124:27;;;:18;:27;;;;;:35;;;;;;7987:179::o;21324:315::-;21442:10;2072:4:0;3004:29;;;:12;;:29;:12;:29;;;;;21406:71:13;;;;;;;7847:2:17;21406:71:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;21406:71:13;7645:343:17;21406:71:13;21491:30;;;;;21515:4;21491:30;;;1123:74:17;21524:6:13;;21491:15;;;;;;1096:18:17;;21491:30:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;21487:110;;;21556:30;;;;;21580:4;21556:30;;;1123:74:17;21556:15:13;;;;;;1096:18:17;;21556:30:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21547:39;;21487:110;21606:26;;;;;:14;13205:55:17;;;21606:26:13;;;13187:74:17;13277:18;;;13270:34;;;21606:14:13;;;;;13160:18:17;;21606:26:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;27519:190::-;27628:10;2072:4:0;3004:29;;;:12;;:29;:12;:29;;;;;27592:71:13;;;;;;;7847:2:17;27592:71:13;;;7829:21:17;7886:2;7866:18;;;7859:30;7925:21;7905:18;;;7898:49;7964:18;;27592:71:13;7645:343:17;27592:71:13;27673:22;;;;;;;;;:13;:22;;;;;:29;;;;;;;;;;;;;27519:190::o;2755:96:12:-;2813:7;2839:5;2843:1;2839;:5;:::i;:::-;2832:12;2755:96;-1:-1:-1;;;2755:96:12:o;11873:371:13:-;12005:19;;;11997:68;;;;;;;13517:2:17;11997:68:13;;;13499:21:17;13556:2;13536:18;;;13529:30;13595:34;13575:18;;;13568:62;13666:6;13646:18;;;13639:34;13690:19;;11997:68:13;13315:400:17;11997:68:13;12083:21;;;12075:68;;;;;;;13922:2:17;12075:68:13;;;13904:21:17;13961:2;13941:18;;;13934:30;14000:34;13980:18;;;13973:62;14071:4;14051:18;;;14044:32;14093:19;;12075:68:13;13720:398:17;12075:68:13;12154:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12205:32;;3032:25:17;;;12205:32:13;;3005:18:17;12205:32:13;;;;;;;11873:371;;;:::o;12371:1269::-;12498:18;;;12490:68;;;;;;;14325:2:17;12490:68:13;;;14307:21:17;14364:2;14344:18;;;14337:30;14403:34;14383:18;;;14376:62;14474:7;14454:18;;;14447:35;14499:19;;12490:68:13;14123:401:17;12490:68:13;12576:16;;;12568:64;;;;;;;14731:2:17;12568:64:13;;;14713:21:17;14770:2;14750:18;;;14743:30;14809:34;14789:18;;;14782:62;14880:5;14860:18;;;14853:33;14903:19;;12568:64:13;14529:399:17;12568:64:13;12659:1;12650:6;:10;12642:64;;;;;;;15135:2:17;12642:64:13;;;15117:21:17;15174:2;15154:18;;;15147:30;15213:34;15193:18;;;15186:62;15284:11;15264:18;;;15257:39;15313:19;;12642:64:13;14933:405:17;12642:64:13;12725:16;;;;;;;:12;:16;;;;;;;;12724:17;12716:26;;;;;;12752:38;12773:4;12779:2;12783:6;12752:20;:38::i;:::-;12804:25;12822:6;12804:17;:25::i;:::-;12801:54;;;12832:20;:18;:20::i;:::-;12868:21;;;;;;;:17;:21;;;;;;;;12865:152;;;12930:12;;;12907:20;12930:12;;;:6;:12;;;;;:19;:31;;12954:6;12930:23;:31::i;:::-;12907:54;;12976:29;12986:4;12992:12;12976:9;:29::i;:::-;12891:126;12865:152;13030:23;;;;;;;:17;:23;;;;;;;;13027:149;;;13093:10;;;13070:20;13093:10;;;:6;:10;;;;;:17;:29;;13115:6;13093:21;:29::i;:::-;13070:52;;13137:27;13147:2;13151:12;13137:9;:27::i;:::-;13055:121;13027:149;13286:18;;;13256:13;13286:18;;;:14;:18;;;;;;;;:52;;;;-1:-1:-1;13324:13:13;;;13308:30;;;13324:13;;13308:30;;13286:52;:80;;;;-1:-1:-1;11833:27:13;;;11810:4;11833:27;;;:18;:27;;;;;;;;13342:24;13286:80;13283:255;;;-1:-1:-1;13392:1:13;13283:255;;;13413:21;;;;;;;:15;:21;;;;;;;;13410:128;;;-1:-1:-1;13460:1:13;13410:128;;;13481:19;;;;;;;:15;:19;;;;;;;;13478:60;;;-1:-1:-1;13526:1:13;13478:60;13592:41;13607:4;13613:2;13617:6;13625:7;13592:14;:41::i;4959:231:12:-;5075:7;5134:12;5126:6;;;;5118:29;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;5168:5:12;;;4959:231::o;3122:96::-;3180:7;3206:5;3210:1;3206;:5;:::i;3334:103:0:-;3400:30;3411:4;719:10:6;3400::0;:30::i;7474:233::-;2981:4;3004:12;;;;;;;;;;;:29;;;;;;;;;;;;;7552:149;;7595:6;:12;;;;;;;;;;;:29;;;;;;;;;;:36;;;;7627:4;7595:36;;;7677:12;719:10:6;;640:96;7677:12:0;7650:40;;7668:7;7650:40;;7662:4;7650:40;;;;;;;;;;7474:233;;:::o;7878:234::-;2981:4;3004:12;;;;;;;;;;;:29;;;;;;;;;;;;;7957:149;;;8031:5;7999:12;;;;;;;;;;;:29;;;;;;;;;;;:37;;;;;;8055:40;719:10:6;;7999:12:0;;8055:40;;8031:5;8055:40;7878:234;;:::o;30286:831:13:-;30475:18;;;30471:640;;30529:26;30552:2;30529:22;:26::i;:::-;30569:28;:26;:28::i;30471:640::-;30618:16;;;30614:497;;30670:28;30693:4;30670:22;:28::i;30614:497::-;30761:21;;;;;;;:17;:21;;;;;;;;30757:354;;;30830:28;30853:4;30830:22;:28::i;30757:354::-;30879:23;;;;;;;:17;:23;;;;;;;;30875:236;;;30951:26;30974:2;30951:22;:26::i;30875:236::-;31032:28;31055:4;31032:22;:28::i;:::-;31074:26;31097:2;31074:22;:26::i;22656:301::-;22740:21;;;22732:65;;;;;;;15678:2:17;22732:65:13;;;15660:21:17;15717:2;15697:18;;;15690:30;15756:33;15736:18;;;15729:61;15807:18;;22732:65:13;15476:355:17;22732:65:13;22818:7;;:19;;22830:6;22818:11;:19::i;:::-;22808:7;:29;22868:18;;;;;;;:9;:18;;;;;;:30;;22891:6;22868:22;:30::i;:::-;22847:18;;;;;;;:9;:18;;;;;;:51;;;;22913:37;;22847:18;;;22913:37;;;;22943:6;3032:25:17;;3020:2;3005:18;;2886:177;22913:37:13;;;;;;;;22656:301;;:::o;23276:385::-;23361:21;;;23353:67;;;;;;;16038:2:17;23353:67:13;;;16020:21:17;16077:2;16057:18;;;16050:30;16116:34;16096:18;;;16089:62;16187:3;16167:18;;;16160:31;16208:19;;23353:67:13;15836:397:17;23353:67:13;23452:68;23475:6;23452:68;;;;;;;;;;;;;;;;;:18;;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;23431:18;;;;;;;:9;:18;;;;;:89;23541:7;;:19;;23553:6;23541:11;:19::i;:::-;23531:7;:29;23581:7;;:19;;23593:6;23581:11;:19::i;:::-;23571:7;:29;23616:37;;3032:25:17;;;23642:1:13;;23616:37;;;;;;3020:2:17;3005:18;23616:37:13;2886:177:17;28946:482:13;29035:4;29041:7;29081:1;29068:10;:14;29060:49;;;;;;;16440:2:17;29060:49:13;;;16422:21:17;16479:2;16459:18;;;16452:30;16518:24;16498:18;;;16491:52;16560:18;;29060:49:13;16238:346:17;29060:49:13;29141:23;:21;:23::i;:::-;29127:10;:37;;29119:79;;;;;;;16791:2:17;29119:79:13;;;16773:21:17;16830:2;16810:18;;;16803:30;16869:31;16849:18;;;16842:59;16918:18;;29119:79:13;16589:353:17;29119:79:13;29209:13;29225:40;:9;29254:10;29225:28;:40::i;:::-;29289:20;;29209:56;;-1:-1:-1;29280:29:13;;29276:146;;29333:5;29340:1;29325:17;;;;;;;29276:146;29381:4;29387:9;:16;;29404:5;29387:23;;;;;;;;:::i;:::-;;;;;;;;;29373:38;;;;;28946:482;;;;;;:::o;21924:462::-;6771:18;;;;22068:24;6771:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;22155:17;22135:37;;22131:248;;22217:6;22197:16;:26;;22189:68;;;;;;;17338:2:17;22189:68:13;;;17320:21:17;17377:2;17357:18;;;17350:30;17416:31;17396:18;;;17389:59;17465:18;;22189:68:13;17136:353:17;22189:68:13;22301:51;22310:5;22317:7;22345:6;22326:16;:25;22301:8;:51::i;28136:125::-;28200:7;28226:28;:18;918:14:7;;827:112;27913:217:13;27960:7;27979:30;:18;1032:19:7;;1050:1;1032:19;;;945:123;27979:30:13;28020:17;28040:23;:21;:23::i;:::-;28020:43;;28078:19;28087:9;28078:19;;;;3032:25:17;;3020:2;3005:18;;2886:177;28078:19:13;;;;;;;;28114:9;27913:217;-1:-1:-1;27913:217:13:o;20789:241::-;20857:4;;;20902:98;20922:11;;20918:1;:15;20902:98;;;20957:8;;;;:5;:8;;;;;;:17;;;;:8;;:17;20954:35;;20985:4;20976:13;;20954:35;20935:3;;;;:::i;:::-;;;;20902:98;;;-1:-1:-1;21017:6:13;20789:241;-1:-1:-1;;20789:241:13:o;19971:251::-;20034:7;20053:13;20069:11;;20083:1;20069:15;;;;:::i;:::-;20053:31;;20098:9;20094:99;20117:11;;20113:1;:15;20094:99;;;20152:9;;;;:6;:9;;;;;;:19;;;;:9;;:19;20149:33;;20181:1;20173:9;;20149:33;20130:3;;;;:::i;:::-;;;;20094:99;;17518:426;17612:16;;;17626:1;17612:16;;;;;;;;17588:21;;17612:16;;;;;;;;;;-1:-1:-1;17612:16:13;17588:40;;17648:5;17638:4;17643:1;17638:7;;;;;;;;:::i;:::-;:15;;;;:7;;;;;;;;;:15;17673:4;;17663:7;;17673:4;;;17663;;17673;;17663:7;;;;;;:::i;:::-;:14;;;;:7;;;;;;;;;:14;17718:13;;17688:53;;;;;17718:13;;;17688:53;;;13187:74:17;13277:18;;;13270:34;;;17688:21:13;;;;;;13160:18:17;;17688:53:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;17751:13:13;;:186;;;;;:13;;;;;:67;;:186;;17832:6;;17751:13;;17867:4;;17893;;17912:15;;17751:186;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17578:366;17518:426;;:::o;3465:96:12:-;3523:7;3549:5;3553:1;3549;:5;:::i;3850:96::-;3908:7;3934:5;3938:1;3934;:5;:::i;18005:448:13:-;18108:11;;18071:4;;18108:11;;18094:10;:25;;;;:44;;-1:-1:-1;18132:6:13;;;;;;;18131:7;18094:44;:83;;;;-1:-1:-1;18150:8:13;:27;;;18094:83;:174;;;;-1:-1:-1;18221:31:13;;18189:29;;18256:12;;18189:63;;;:::i;:::-;:79;;18094:174;:298;;;;-1:-1:-1;18366:26:13;;18331:4;;18316:46;;;;;18356:4;18316:46;;;1123:74:17;18331:4:13;;;;;18316:31;;1096:18:17;;18316:46:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:76;;18094:298;:352;;;;-1:-1:-1;;18414:32:13;;-1:-1:-1;18404:42:13;;18005:448::o;18488:378::-;18547:26;;18537:51;;3347:42;18537:9;:51::i;:::-;18630:12;18598:29;:44;18722:26;;18686:31;;:63;;:35;:63::i;:::-;18652:31;:97;;;18796:23;;-1:-1:-1;18759:101:13;;;18822:8;:35;;;;;;18759:101;18488:378::o;24843:379::-;24927:1;24918:6;:10;:40;;;;-1:-1:-1;24932:14:13;;;;;;;:6;:14;;;;;:21;:26;24918:40;24915:184;;;25307:7;:14;;25283:21;;;;;;;:13;:21;;;;;:38;;;25332:20;;;;;;;;;;;;;;;;;;;;24915:184;;;25011:11;;:40;;;;-1:-1:-1;25026:14:13;;;25050:1;25026:14;;;:6;:14;;;;;:21;:25;;25011:40;25008:91;;;25067:20;25080:6;25067:12;:20::i;:::-;25139:14;;;;;;;:6;:14;;;;;:21;25123:11;;:50;;25166:6;;25123:38;;:15;:38::i;:50::-;25109:11;:64;25184:14;;;;;;;;:6;:14;;;;;:30;24843:379::o;14278:1173::-;14389:12;;;;;:28;;;14405:7;:12;;14416:1;14405:12;14389:28;14386:1059;;;11269:12;11253:28;;:13;:28;;;;;;;;;;;;;;;;;;;;;;;;11306:10;11291:25;;;;;;;;;;;;;;;;;;;;;;;;14482:53;;;;;;;;;;;;;;;;;;;;:17;;;-1:-1:-1;14482:17:13;;;:9;:17;;;;;;;;:53;;14504:6;;14482:21;:53::i;:::-;14462:17;;;;;;;;:9;:17;;;;;;:73;;;;14572:20;;;;;;;:32;;14597:6;14572:24;:32::i;:::-;14549:20;;;;;;;;:9;:20;;;;;;;:55;;;;14624:35;;;;;;;;;;14652:6;3032:25:17;;3020:2;3005:18;;2886:177;14624:35:13;;;;;;;;14677:7;:12;;14688:1;14677:12;14674:133;;14709:15;11720:13;11705:28;:12;:28;;;;;;;;;;;;;;;;;;;;;;11662:78;14709:15;14386:1059;;14674:133;14748:7;:12;;14759:1;14748:12;14745:62;;14780:12;11384:9;11369:24;:12;:24;;;;;;;;;;;;;;;;;;;;;;11329:71;14386:1059;14840:7;:12;;14851:1;14840:12;14837:143;;11468:12;11452:28;;:13;:28;;;;;;;;;;;;;;;;;;;;;;;;11505:15;11490:30;;;;;;;;;;;;;;;;;;;;;;;;14837:143;;;14914:7;:12;;14925:1;14914:12;14911:69;;11596:12;11580:28;;:13;:28;;;;;;;;;;;;;;;;;;;;;;;;11633:16;11618:31;;;;;;;;;;;;;;;;;;;;;;;;14946:19;14994:24;15021:18;15032:6;15021:10;:18::i;:::-;14994:45;;15073:53;15095:6;15073:53;;;;;;;;;;;;;;;;;:9;:17;15083:6;15073:17;;;;;;;;;;;;;;;;:21;;:53;;;;;:::i;:::-;15053:17;;;;;;;;:9;:17;;;;;;:73;;;;15188:22;;15163:20;;;;;;;;;;:48;;:24;:48::i;:::-;15140:20;;;;;;;:9;:20;;;;;:71;15225:18;15235:7;15225:9;:18::i;:::-;15258:15;11720:13;11705:28;:12;:28;;;;;;;;;;;;;;;;;;;;;;11662:78;15258:15;15310:9;15293:51;;15302:6;15293:51;;;15321:7;:22;;;15293:51;;;;3032:25:17;;3020:2;3005:18;;2886:177;15293:51:13;;;;;;;;15380:31;;15413:19;;;;;15363:70;;3032:25:17;;;15380:31:13;;;;;15363:70;;;;;3005:18:17;15363:70:13;;;;;;;14823:622;14278:1173;;;;:::o;3718:492:0:-;2981:4;3004:12;;;;;;;;;;;:29;;;;;;;;;;;;;3801:403;;3989:41;4017:7;3989:41;;4027:2;3989:19;:41::i;:::-;4101:38;4129:4;4136:2;4101:19;:38::i;:::-;3896:265;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;3844:349;;;;;;;;:::i;29465:171:13:-;29548:33;;;;;;;:24;:33;;;;;;;;29605:6;:15;;;;;:22;6463:9;:18;;;;;;29532:97;;29548:33;29584:43;;;:::i;:::-;29532:15;:97::i;29642:116::-;29698:53;29714:21;29737:13;6141:7;;;6062:93;634:892:5;746:12;;723:7;;746:17;;742:56;;-1:-1:-1;786:1:5;779:8;;742:56;848:12;;808:11;;871:414;884:4;878:3;:10;871:414;;;904:11;918:23;931:3;936:4;918:12;:23::i;:::-;904:37;;1171:7;1158:5;1164:3;1158:10;;;;;;;;:::i;:::-;;;;;;;;;:20;1154:121;;;1205:3;1198:10;;1154:121;;;1253:7;:3;1259:1;1253:7;:::i;:::-;1247:13;;1154:121;890:395;871:414;;;1408:1;1402:3;:7;:36;;;;-1:-1:-1;1431:7:5;1413:5;1419:7;1425:1;1419:3;:7;:::i;:::-;1413:14;;;;;;;;:::i;:::-;;;;;;;;;:25;1402:36;1398:122;;;1461:7;1467:1;1461:3;:7;:::i;:::-;1454:14;;;;;;1398:122;-1:-1:-1;1506:3:5;-1:-1:-1;1499:10:5;;18904:427:13;3472:6;:13;;;;;;;;19003:16:::1;::::0;;19017:1:::1;19003:16:::0;;;;;::::1;::::0;;-1:-1:-1;;19003:16:13::1;::::0;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;19039:4:13::1;::::0;19029:7;;;;-1:-1:-1;19039:4:13::1;;::::0;19029:7;;-1:-1:-1;19039:4:13::1;::::0;19029:7:::1;;;;:::i;:::-;;;;;;:14;;;;;;;;;::::0;::::1;19071:4;19053;19058:1;19053:7;;;;;;;;:::i;:::-;:23;::::0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;19094:4:::1;::::0;19116:13:::1;::::0;19087:52:::1;::::0;;;;19116:13;;::::1;19087:52;::::0;::::1;13187:74:17::0;13277:18;;;13270:34;;;19094:4:13;::::1;::::0;19087:20:::1;::::0;13160:18:17;;19087:52:13::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;19149:13:13::1;::::0;:175:::1;::::0;;;;:13:::1;::::0;;::::1;::::0;:67:::1;::::0;:175:::1;::::0;19230:6;;19149:13:::1;::::0;19265:4;;19283:2;;19299:15:::1;::::0;19149:175:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;3490:6:13;:14;;;;;;-1:-1:-1;;;;;18904:427:13:o;25366:223::-;25457:7;25465:14;;:16;;25480:1;;25465:16;:::i;:::-;25457:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;25432:21;;;;;:13;:21;;;;;;;;25424:7;:30;;25457:25;;;;;25424:7;:30;;;;;;:::i;:::-;;;;;;;;;;;;;:58;;;;;;;;;;;25536:21;;;;;:13;:21;;;;;;;;25507:7;25515:14;;25536:21;;:13;25424:30;25515:16;;-1:-1:-1;;25515:16:13;:::i;:::-;25507:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;25493:40;;;;;;;;;;;;:64;25568:7;:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25366:223:13:o;10622:387::-;10681:16;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;10681:16:13;10709:23;10735:158;;;;;;;;10758:1;10735:158;;;;10773:50;10786:7;10795:12;:27;;;10773:12;:50::i;:::-;10735:158;;;;10837:46;10850:7;10859:12;:23;;;10837:12;:46::i;:::-;10735:158;;;10709:184;;10928:51;10964:6;:14;;;10928:31;10940:6;:18;;;10928:7;:11;;:31;;;;:::i;:51::-;10904:75;;:6;10622:387;-1:-1:-1;;10622:387:13:o;15457:130::-;15528:18;;;;15548:31;;15519:61;;15528:18;15548:31;;15519:8;:61::i;1652:441:8:-;1727:13;1752:19;1784:10;1788:6;1784:1;:10;:::i;:::-;:14;;1797:1;1784:14;:::i;:::-;1774:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1774:25:8;;1752:47;;1809:15;:6;1816:1;1809:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;;1834;:6;1841:1;1834:9;;;;;;;;:::i;:::-;;;;:15;;;;;;;;;;-1:-1:-1;1864:9:8;1876:10;1880:6;1876:1;:10;:::i;:::-;:14;;1889:1;1876:14;:::i;:::-;1864:26;;1859:132;1896:1;1892;:5;1859:132;;;1930:12;1943:5;1951:3;1943:11;1930:25;;;;;;;:::i;:::-;;;;1918:6;1925:1;1918:9;;;;;;;;:::i;:::-;;;;:37;;;;;;;;;;-1:-1:-1;1979:1:8;1969:11;;;;;1899:3;;;:::i;:::-;;;1859:132;;;-1:-1:-1;2008:10:8;;2000:55;;;;;;;20635:2:17;2000:55:8;;;20617:21:17;;;20654:18;;;20647:30;20713:34;20693:18;;;20686:62;20765:18;;2000:55:8;20433:356:17;29764:304:13;29858:17;29878:23;:21;:23::i;:::-;29858:43;-1:-1:-1;29858:43:13;29915:30;29931:9;29915:15;:30::i;:::-;:42;29911:151;;;29973:29;;;;;;;;-1:-1:-1;29973:29:13;;;;;;;;;;;;;;30016:16;;;:35;;;;;;;;;;;;;;;29764:304::o;806:153:11:-;868:7;941:11;951:1;942:5;;;941:11;:::i;:::-;931:21;;932:5;;;931:21;:::i;11015:190:13:-;11090:7;11112:4;11120:1;11112:9;11109:22;;-1:-1:-1;11130:1:13;11123:8;;11109:22;11148:50;11183:5;11148:17;:7;11160:4;11148:11;:17::i;15593:213::-;15668:23;;;15665:35;;15593:213;;:::o;15665:35::-;15712:7;15723:1;15712:12;15709:24;;15593:213;;:::o;15709:24::-;15766:20;;;;;;;:9;:20;;;;;;:33;;15791:7;15766:24;:33::i;:::-;15743:20;;;;;;;;:9;:20;;;;;:56;-1:-1:-1;15593:213:13:o;30074:206::-;30167:10;;30144:7;;30167:15;;30163:111;;-1:-1:-1;30205:1:13;;30074:206;-1:-1:-1;30074:206:13:o;30163:111::-;30248:10;;30244:3;;30248:14;;30261:1;;30248:14;:::i;:::-;30244:19;;;;;;;;:::i;:::-;;;;;;;;;30237:26;;30074:206;;;:::o;14:332:17:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;180:9;167:23;230:66;223:5;219:78;212:5;209:89;199:117;;312:1;309;302:12;543:154;629:42;622:5;618:54;611:5;608:65;598:93;;687:1;684;677:12;702:247;761:6;814:2;802:9;793:7;789:23;785:32;782:52;;;830:1;827;820:12;782:52;869:9;856:23;888:31;913:5;888:31;:::i;1208:250::-;1293:1;1303:113;1317:6;1314:1;1311:13;1303:113;;;1393:11;;;1387:18;1374:11;;;1367:39;1339:2;1332:10;1303:113;;;-1:-1:-1;;1450:1:17;1432:16;;1425:27;1208:250::o;1463:455::-;1612:2;1601:9;1594:21;1575:4;1644:6;1638:13;1687:6;1682:2;1671:9;1667:18;1660:34;1703:79;1775:6;1770:2;1759:9;1755:18;1750:2;1742:6;1738:15;1703:79;:::i;:::-;1834:2;1822:15;1839:66;1818:88;1803:104;;;;1909:2;1799:113;;1463:455;-1:-1:-1;;1463:455:17:o;1923:315::-;1991:6;1999;2052:2;2040:9;2031:7;2027:23;2023:32;2020:52;;;2068:1;2065;2058:12;2020:52;2107:9;2094:23;2126:31;2151:5;2126:31;:::i;:::-;2176:5;2228:2;2213:18;;;;2200:32;;-1:-1:-1;;;1923:315:17:o;2243:118::-;2329:5;2322:13;2315:21;2308:5;2305:32;2295:60;;2351:1;2348;2341:12;2366:515;2458:6;2466;2474;2482;2490;2543:3;2531:9;2522:7;2518:23;2514:33;2511:53;;;2560:1;2557;2550:12;2511:53;2599:9;2586:23;2618:28;2640:5;2618:28;:::i;:::-;2665:5;2717:2;2702:18;;2689:32;;-1:-1:-1;2768:2:17;2753:18;;2740:32;;2819:2;2804:18;;2791:32;;-1:-1:-1;2870:3:17;2855:19;2842:33;;-1:-1:-1;2366:515:17;-1:-1:-1;;;2366:515:17:o;3250:456::-;3327:6;3335;3343;3396:2;3384:9;3375:7;3371:23;3367:32;3364:52;;;3412:1;3409;3402:12;3364:52;3451:9;3438:23;3470:31;3495:5;3470:31;:::i;:::-;3520:5;-1:-1:-1;3577:2:17;3562:18;;3549:32;3590:33;3549:32;3590:33;:::i;:::-;3250:456;;3642:7;;-1:-1:-1;;;3696:2:17;3681:18;;;;3668:32;;3250:456::o;3711:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;-1:-1:-1;3862:23:17;;3711:180;-1:-1:-1;3711:180:17:o;4518:315::-;4586:6;4594;4647:2;4635:9;4626:7;4622:23;4618:32;4615:52;;;4663:1;4660;4653:12;4615:52;4699:9;4686:23;4676:33;;4759:2;4748:9;4744:18;4731:32;4772:31;4797:5;4772:31;:::i;:::-;4822:5;4812:15;;;4518:315;;;;;:::o;5027:388::-;5095:6;5103;5156:2;5144:9;5135:7;5131:23;5127:32;5124:52;;;5172:1;5169;5162:12;5124:52;5211:9;5198:23;5230:31;5255:5;5230:31;:::i;:::-;5280:5;-1:-1:-1;5337:2:17;5322:18;;5309:32;5350:33;5309:32;5350:33;:::i;5605:382::-;5670:6;5678;5731:2;5719:9;5710:7;5706:23;5702:32;5699:52;;;5747:1;5744;5737:12;5699:52;5786:9;5773:23;5805:31;5830:5;5805:31;:::i;:::-;5855:5;-1:-1:-1;5912:2:17;5897:18;;5884:32;5925:30;5884:32;5925:30;:::i;5992:248::-;6060:6;6068;6121:2;6109:9;6100:7;6096:23;6092:32;6089:52;;;6137:1;6134;6127:12;6089:52;-1:-1:-1;;6160:23:17;;;6230:2;6215:18;;;6202:32;;-1:-1:-1;5992:248:17:o;7169:471::-;7261:6;7269;7277;7330:2;7318:9;7309:7;7305:23;7301:32;7298:52;;;7346:1;7343;7336:12;7298:52;7385:9;7372:23;7404:31;7429:5;7404:31;:::i;:::-;7454:5;-1:-1:-1;7506:2:17;7491:18;;7478:32;;-1:-1:-1;7562:2:17;7547:18;;7534:32;7575:33;7534:32;7575:33;:::i;:::-;7627:7;7617:17;;;7169:471;;;;;:::o;8892:251::-;8962:6;9015:2;9003:9;8994:7;8990:23;8986:32;8983:52;;;9031:1;9028;9021:12;8983:52;9063:9;9057:16;9082:31;9107:5;9082:31;:::i;11320:184::-;11372:77;11369:1;11362:88;11469:4;11466:1;11459:15;11493:4;11490:1;11483:15;11509:125;11574:9;;;11595:10;;;11592:36;;;11608:18;;:::i;11639:195::-;11678:3;11709:66;11702:5;11699:77;11696:103;;11779:18;;:::i;:::-;-1:-1:-1;11826:1:17;11815:13;;11639:195::o;12171:184::-;12241:6;12294:2;12282:9;12273:7;12269:23;12265:32;12262:52;;;12310:1;12307;12300:12;12262:52;-1:-1:-1;12333:16:17;;12171:184;-1:-1:-1;12171:184:17:o;12763:245::-;12830:6;12883:2;12871:9;12862:7;12858:23;12854:32;12851:52;;;12899:1;12896;12889:12;12851:52;12931:9;12925:16;12950:28;12972:5;12950:28;:::i;15343:128::-;15410:9;;;15431:11;;;15428:37;;;15445:18;;:::i;16947:184::-;16999:77;16996:1;16989:88;17096:4;17093:1;17086:15;17120:4;17117:1;17110:15;17494:184;17546:77;17543:1;17536:88;17643:4;17640:1;17633:15;17667:4;17664:1;17657:15;17683:1026;17945:4;17993:3;17982:9;17978:19;18024:6;18013:9;18006:25;18050:2;18088:6;18083:2;18072:9;18068:18;18061:34;18131:3;18126:2;18115:9;18111:18;18104:31;18155:6;18190;18184:13;18221:6;18213;18206:22;18259:3;18248:9;18244:19;18237:26;;18298:2;18290:6;18286:15;18272:29;;18319:1;18329:218;18343:6;18340:1;18337:13;18329:218;;;18408:13;;18423:42;18404:62;18392:75;;18522:15;;;;18487:12;;;;18365:1;18358:9;18329:218;;;-1:-1:-1;;18615:42:17;18603:55;;;;18598:2;18583:18;;18576:83;-1:-1:-1;;;18690:3:17;18675:19;18668:35;18564:3;17683:1026;-1:-1:-1;;;17683:1026:17:o;18714:228::-;18754:7;18880:1;18812:66;18808:74;18805:1;18802:81;18797:1;18790:9;18783:17;18779:105;18776:131;;;18887:18;;:::i;:::-;-1:-1:-1;18927:9:17;;18714:228::o;18947:274::-;18987:1;19013;19003:189;;19048:77;19045:1;19038:88;19149:4;19146:1;19139:15;19177:4;19174:1;19167:15;19003:189;-1:-1:-1;19206:9:17;;18947:274::o;19226:812::-;19637:25;19632:3;19625:38;19607:3;19692:6;19686:13;19708:75;19776:6;19771:2;19766:3;19762:12;19755:4;19747:6;19743:17;19708:75;:::i;:::-;19847:19;19842:2;19802:16;;;19834:11;;;19827:40;19892:13;;19914:76;19892:13;19976:2;19968:11;;19961:4;19949:17;;19914:76;:::i;:::-;20010:17;20029:2;20006:26;;19226:812;-1:-1:-1;;;;19226:812:17:o;20043:184::-;20095:77;20092:1;20085:88;20192:4;20189:1;20182:15;20216:4;20213:1;20206:15;20232:196;20271:3;20299:5;20289:39;;20308:18;;:::i;:::-;-1:-1:-1;20355:66:17;20344:78;;20232:196::o

Swarm Source

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