ETH Price: $3,322.58 (+1.93%)
Gas: 3 Gwei

Token

SmmBOT (SmmBOT)
 

Overview

Max Total Supply

1,000,000,000 SmmBOT

Holders

60

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
515,683.567962368247108743 SmmBOT

Value
$0.00
0x748f60c65dd4ea0bc103977c7bad38d21cb5b49a
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:
SmmBOT

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 11 : token.sol
// SPDX-License-Identifier: No License

/* 
Telegram - https://t.me/Smmbot_portal
Telegram bot - https://t.me/smmerc_bot
Website - https://smmbot.tech/
Twitter - https://twitter.com/smmbot_erc

*/

pragma solidity 0.8.19;

import "./ERC20.sol";
import "./ERC20Burnable.sol";
import "./Ownable.sol"; 
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Pair.sol";
import "./IUniswapV2Router01.sol";
import "./IUniswapV2Router02.sol";

contract SmmBOT is ERC20, ERC20Burnable, Ownable {
    
    uint256 public swapThreshold;
    
    uint256 private _mainPending;

    address public RejuvenateArmamentStatisticalSchematic;
    uint16[3] public EconomicSwiftInsightExamination;

    mapping (address => bool) public isExcludedFromFees;

    uint16[3] public IgniteArmamentInfrastructure;
    bool private _swapping;

    IUniswapV2Router02 public routerV2;
    address public ClarifyBlastCriteria;
    mapping (address => bool) public FloralNetworkInduction;

    mapping (address => bool) public isExcludedFromLimits;

    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
 
    event SwapThresholdUpdated(uint256 swapThreshold);

    event RejuvenateArmamentStatisticalSchematicUpdated(address RejuvenateArmamentStatisticalSchematic);
    event ThoroughCommercialOscillationScrutiny(uint16 buyFee, uint16 sellFee, uint16 transferFee);
    event CorporateAssessmentDigest(address recipient, uint256 amount);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event RouterV2Updated(address indexed routerV2);	
    event UnionRestartModifications(address indexed AMMPair, bool isPair);

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event MaxBuyAmountUpdated(uint256 maxBuyAmount);
    event MaxSellAmountUpdated(uint256 maxSellAmount);
 
    constructor()
        ERC20(unicode"SmmBOT", unicode"SmmBOT") 
    {
        address supplyRecipient = 0x4084A0d8088309D3957f4eFD830c0a25A49b6EED;
        
        ApexSharpshooterMonetaryFissure(330000000 * (10 ** decimals()) / 10);

        MagnifyRocketConstraintModalities(0x4084A0d8088309D3957f4eFD830c0a25A49b6EED);
        BolsterZenithPaceAcquisitionLimit(2000, 3500, 0);

        excludeFromFees(supplyRecipient, true);
        excludeFromFees(address(this), true); 

        _updateRouterV2(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        excludeFromLimits(supplyRecipient, true);
        excludeFromLimits(address(this), true);
        excludeFromLimits(address(0), true); 
        excludeFromLimits(RejuvenateArmamentStatisticalSchematic, true);

        RapidConflagrationBaseCostMetamorphosis(200000000 * (10 ** decimals()) / 10);
        PartisanSynchronyAxioms(200000000* (10 ** decimals()) / 10);

        _mint(supplyRecipient, 10000000000 * (10 ** decimals()) / 10);
        _transferOwnership(0x4084A0d8088309D3957f4eFD830c0a25A49b6EED);
    }

    receive() external payable {}

    function decimals() public pure override returns (uint8) {
        return 18;
    }
    
    function _swapTokensForCoin(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = routerV2.WETH();

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

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

    function ApexSharpshooterMonetaryFissure(uint256 _swapThreshold) public onlyOwner {
        swapThreshold = _swapThreshold;
        
        emit SwapThresholdUpdated(_swapThreshold);
    }

    function MonetaryTruthfulnessValidation() public view returns (uint256) {
        return 0 + _mainPending;
    }

    function MagnifyRocketConstraintModalities(address _newAddress) public onlyOwner {
        RejuvenateArmamentStatisticalSchematic = _newAddress;

        excludeFromFees(_newAddress, true);

        emit RejuvenateArmamentStatisticalSchematicUpdated(_newAddress);
    }

    function BolsterZenithPaceAcquisitionLimit(uint16 _buyFee, uint16 _sellFee, uint16 _transferFee) public onlyOwner {
        EconomicSwiftInsightExamination = [_buyFee, _sellFee, _transferFee];

        IgniteArmamentInfrastructure[0] = 0 + EconomicSwiftInsightExamination[0];
        IgniteArmamentInfrastructure[1] = 0 + EconomicSwiftInsightExamination[1];
        IgniteArmamentInfrastructure[2] = 0 + EconomicSwiftInsightExamination[2];
        require(IgniteArmamentInfrastructure[0] <= 10000 && IgniteArmamentInfrastructure[1] <= 10000 && IgniteArmamentInfrastructure[2] <= 10000, "TaxesDefaultRouter: Cannot exceed max total fee of 50%");

        emit ThoroughCommercialOscillationScrutiny(_buyFee, _sellFee, _transferFee);
    }

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        
        bool canSwap = MonetaryTruthfulnessValidation() >= swapThreshold;
        
        if (!_swapping && !FloralNetworkInduction[from] && canSwap) {
            _swapping = true;
            
            if (false || _mainPending > 0) {
                uint256 token2Swap = 0 + _mainPending;
                bool success = false;

                _swapTokensForCoin(token2Swap);
                uint256 coinsReceived = address(this).balance;
                
                uint256 mainPortion = coinsReceived * _mainPending / token2Swap;
                if (mainPortion > 0) {
                    (success,) = payable(address(RejuvenateArmamentStatisticalSchematic)).call{value: mainPortion}("");
                    require(success, "TaxesDefaultRouterWalletCoin: Fee transfer error");
                    emit CorporateAssessmentDigest(RejuvenateArmamentStatisticalSchematic, mainPortion);
                }
                _mainPending = 0;

            }

            _swapping = false;
        }

        if (!_swapping && amount > 0 && to != address(routerV2) && !isExcludedFromFees[from] && !isExcludedFromFees[to]) {
            uint256 fees = 0;
            uint8 txType = 3;
            
            if (FloralNetworkInduction[from]) {
                if (IgniteArmamentInfrastructure[0] > 0) txType = 0;
            }
            else if (FloralNetworkInduction[to]) {
                if (IgniteArmamentInfrastructure[1] > 0) txType = 1;
            }
            else if (IgniteArmamentInfrastructure[2] > 0) txType = 2;
            
            if (txType < 3) {
                
                fees = amount * IgniteArmamentInfrastructure[txType] / 10000;
                amount -= fees;
                
                _mainPending += fees * EconomicSwiftInsightExamination[txType] / IgniteArmamentInfrastructure[txType];

                
            }

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

    function _updateRouterV2(address router) private {
        routerV2 = IUniswapV2Router02(router);
        ClarifyBlastCriteria = IUniswapV2Factory(routerV2.factory()).createPair(address(this), routerV2.WETH());
        
        excludeFromLimits(router, true);

        _setAMMPair(ClarifyBlastCriteria, true);

        emit RouterV2Updated(router);
    }

    function setAMMPair(address pair, bool isPair) public onlyOwner {
        require(pair != ClarifyBlastCriteria, "DefaultRouter: Cannot remove initial pair from list");

        _setAMMPair(pair, isPair);
    }

    function _setAMMPair(address pair, bool isPair) private {
        FloralNetworkInduction[pair] = isPair;

        if (isPair) { 
            excludeFromLimits(pair, true);

        }

        emit UnionRestartModifications(pair, isPair);
    }

    function excludeFromLimits(address account, bool isExcluded) public onlyOwner {
        isExcludedFromLimits[account] = isExcluded;

        emit ExcludeFromLimits(account, isExcluded);
    }

    function RapidConflagrationBaseCostMetamorphosis(uint256 _maxBuyAmount) public onlyOwner {
        maxBuyAmount = _maxBuyAmount;
        
        emit MaxBuyAmountUpdated(_maxBuyAmount);
    }

    function PartisanSynchronyAxioms(uint256 _maxSellAmount) public onlyOwner {
        maxSellAmount = _maxSellAmount;
        
        emit MaxSellAmountUpdated(_maxSellAmount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        if (FloralNetworkInduction[from] && !isExcludedFromLimits[to]) { // BUY
            require(amount <= maxBuyAmount, "MaxTx: Cannot exceed max buy limit");
        }
    
        if (FloralNetworkInduction[to] && !isExcludedFromLimits[from]) { // SELL
            require(amount <= maxSellAmount, "MaxTx: Cannot exceed max sell limit");
        }
    
        super._beforeTokenTransfer(from, to, amount);
    }

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

File 2 of 11 : IUniswapV2Router02.sol
// SPDX-License-Identifier: No License

/* 

*/

pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    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;
}

File 3 of 11 : IUniswapV2Router01.sol
// SPDX-License-Identifier: No License

/* 

*/

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    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 4 of 11 : IUniswapV2Pair.sol
// SPDX-License-Identifier: No License

/* 

*/

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 5 of 11 : IUniswapV2Factory.sol
// SPDX-License-Identifier: No License

/* 

*/


pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    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 createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 6 of 11 : Ownable.sol
// SPDX-License-Identifier: No License

/* 

*/

// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 7 of 11 : ERC20Burnable.sol
// SPDX-License-Identifier: No License

/* 

*/

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

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

File 8 of 11 : ERC20.sol
// SPDX-License-Identifier: No License

/* 

*/

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 9 of 11 : Context.sol
// SPDX-License-Identifier: No License

/* 

*/

// 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 10 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: No License

/* 

*/

// 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 11 of 11 : IERC20.sol
// SPDX-License-Identifier: No License

/* 

*/

// OpenZeppelin Contracts (last updated v4.9.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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CorporateAssessmentDigest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxBuyAmount","type":"uint256"}],"name":"MaxBuyAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxSellAmount","type":"uint256"}],"name":"MaxSellAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"RejuvenateArmamentStatisticalSchematic","type":"address"}],"name":"RejuvenateArmamentStatisticalSchematicUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"routerV2","type":"address"}],"name":"RouterV2Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"swapThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"buyFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"transferFee","type":"uint16"}],"name":"ThoroughCommercialOscillationScrutiny","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"AMMPair","type":"address"},{"indexed":false,"internalType":"bool","name":"isPair","type":"bool"}],"name":"UnionRestartModifications","type":"event"},{"inputs":[{"internalType":"uint256","name":"_swapThreshold","type":"uint256"}],"name":"ApexSharpshooterMonetaryFissure","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_buyFee","type":"uint16"},{"internalType":"uint16","name":"_sellFee","type":"uint16"},{"internalType":"uint16","name":"_transferFee","type":"uint16"}],"name":"BolsterZenithPaceAcquisitionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ClarifyBlastCriteria","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"EconomicSwiftInsightExamination","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"FloralNetworkInduction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"IgniteArmamentInfrastructure","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"MagnifyRocketConstraintModalities","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MonetaryTruthfulnessValidation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellAmount","type":"uint256"}],"name":"PartisanSynchronyAxioms","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"RapidConflagrationBaseCostMetamorphosis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"RejuvenateArmamentStatisticalSchematic","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromLimits","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":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routerV2","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"isPair","type":"bool"}],"name":"setAMMPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f536d6d424f5400000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f536d6d424f54000000000000000000000000000000000000000000000000000081525081600390816200008f919062001533565b508060049081620000a1919062001533565b505050620000c4620000b86200033660201b60201c565b6200033e60201b60201c565b6000734084a0d8088309d3957f4efd830c0a25a49b6eed90506200012a600a620000f36200040460201b60201c565b600a620001019190620017aa565b6313ab6680620001129190620017fb565b6200011e919062001875565b6200040d60201b60201c565b6200014f734084a0d8088309d3957f4efd830c0a25a49b6eed6200046060201b60201c565b620001676107d0610dac60006200050060201b60201c565b6200017a8160016200081460201b60201c565b6200018d3060016200081460201b60201c565b620001b2737a250d5630b4cf539739df2c5dacb4c659f2488d620008cf60201b60201c565b620001c581600162000b8760201b60201c565b620001d830600162000b8760201b60201c565b620001ec6000600162000b8760201b60201c565b62000221600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000b8760201b60201c565b6200026e600a620002376200040460201b60201c565b600a620002459190620017aa565b630bebc200620002569190620017fb565b62000262919062001875565b62000c4260201b60201c565b620002bb600a620002846200040460201b60201c565b600a620002929190620017aa565b630bebc200620002a39190620017fb565b620002af919062001875565b62000c9560201b60201c565b6200030a81600a620002d26200040460201b60201c565b600a620002e09190620017aa565b6402540be400620002f29190620017fb565b620002fe919062001875565b62000ce860201b60201c565b6200032f734084a0d8088309d3957f4efd830c0a25a49b6eed6200033e60201b60201c565b5062001dcc565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b6200041d62000e5560201b60201c565b806006819055507f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647681604051620004559190620018be565b60405180910390a150565b6200047062000e5560201b60201c565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c48160016200081460201b60201c565b7f7e73a74e2130cc5ddcd0052db77e2fc705cc1cb9add35bd23493759c2aa39acf81604051620004f5919062001920565b60405180910390a150565b6200051062000e5560201b60201c565b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff16815250600990600362000555929190620011f6565b5060096000600381106200056e576200056d6200193d565b5b601091828204019190066002029054906101000a900461ffff1660006200059691906200197a565b600b600060038110620005ae57620005ad6200193d565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600160038110620005eb57620005ea6200193d565b5b601091828204019190066002029054906101000a900461ffff1660006200061391906200197a565b600b6001600381106200062b576200062a6200193d565b5b601091828204019190066002026101000a81548161ffff021916908361ffff16021790555060096002600381106200066857620006676200193d565b5b601091828204019190066002029054906101000a900461ffff1660006200069091906200197a565b600b600260038110620006a857620006a76200193d565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550612710600b600060038110620006e857620006e76200193d565b5b601091828204019190066002029054906101000a900461ffff1661ffff16111580156200074c5750612710600b6001600381106200072b576200072a6200193d565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b8015620007905750612710600b6002600381106200076f576200076e6200193d565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b620007d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c99062001a3e565b60405180910390fd5b7fad52a8ce6837dc95d68c200da98ad470334e7f6768288653b78f415b8234efb8838383604051620008079392919062001a71565b60405180910390a1505050565b6200082462000e5560201b60201c565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008c3919062001acb565b60405180910390a25050565b80600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200097e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620009a4919062001b1e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000a2e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000a54919062001b1e565b6040518363ffffffff1660e01b815260040162000a7392919062001b50565b6020604051808303816000875af115801562000a93573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ab9919062001b1e565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000b0c81600162000b8760201b60201c565b62000b41600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600162000ee660201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff167fbc052db65df144ad4f71f02da93cae3d4401104c30ac374d7cc10d87ee07b60260405160405180910390a250565b62000b9762000e5560201b60201c565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc928260405162000c36919062001acb565b60405180910390a25050565b62000c5262000e5560201b60201c565b806010819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d8160405162000c8a9190620018be565b60405180910390a150565b62000ca562000e5560201b60201c565b806011819055507fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a8160405162000cdd9190620018be565b60405180910390a150565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d519062001bcd565b60405180910390fd5b62000d6e6000838362000fac60201b60201c565b806002600082825462000d82919062001bef565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000e359190620018be565b60405180910390a362000e5160008383620011aa60201b60201c565b5050565b62000e656200033660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000e8b620011c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ee4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000edb9062001c7a565b60405180910390fd5b565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550801562000f585762000f5782600162000b8760201b60201c565b5b8173ffffffffffffffffffffffffffffffffffffffff167feec3c205c2ec2436d6d51e27ca422a7260bce7886bc2c0a2ae8ae98c81cd46588260405162000fa0919062001acb565b60405180910390a25050565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015620010505750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156200109f576010548111156200109e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010959062001d12565b60405180910390fd5b5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015620011435750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15620011925760115481111562001191576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620011889062001daa565b60405180910390fd5b5b620011a5838383620011ec60201b60201c565b505050565b620011bd838383620011f160201b60201c565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b826003600f01601090048101928215620012875791602002820160005b838211156200125557835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262001213565b8015620012855782816101000a81549061ffff021916905560020160208160010104928301926001030262001255565b505b5090506200129691906200129a565b5090565b5b80821115620012b55760008160009055506001016200129b565b5090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200133b57607f821691505b602082108103620013515762001350620012f3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620013bb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200137c565b620013c786836200137c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620014146200140e6200140884620013df565b620013e9565b620013df565b9050919050565b6000819050919050565b6200143083620013f3565b620014486200143f826200141b565b84845462001389565b825550505050565b600090565b6200145f62001450565b6200146c81848462001425565b505050565b5b8181101562001494576200148860008262001455565b60018101905062001472565b5050565b601f821115620014e357620014ad8162001357565b620014b8846200136c565b81016020851015620014c8578190505b620014e0620014d7856200136c565b83018262001471565b50505b505050565b600082821c905092915050565b60006200150860001984600802620014e8565b1980831691505092915050565b6000620015238383620014f5565b9150826002028217905092915050565b6200153e82620012b9565b67ffffffffffffffff8111156200155a5762001559620012c4565b5b62001566825462001322565b6200157382828562001498565b600060209050601f831160018114620015ab576000841562001596578287015190505b620015a2858262001515565b86555062001612565b601f198416620015bb8662001357565b60005b82811015620015e557848901518255600182019150602085019450602081019050620015be565b8683101562001605578489015162001601601f891682620014f5565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620016a85780860481111562001680576200167f6200161a565b5b6001851615620016905780820291505b8081029050620016a08562001649565b945062001660565b94509492505050565b600082620016c3576001905062001796565b81620016d3576000905062001796565b8160018114620016ec5760028114620016f7576200172d565b600191505062001796565b60ff8411156200170c576200170b6200161a565b5b8360020a9150848211156200172657620017256200161a565b5b5062001796565b5060208310610133831016604e8410600b8410161715620017675782820a9050838111156200176157620017606200161a565b5b62001796565b62001776848484600162001656565b9250905081840481111562001790576200178f6200161a565b5b81810290505b9392505050565b600060ff82169050919050565b6000620017b782620013df565b9150620017c4836200179d565b9250620017f37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620016b1565b905092915050565b60006200180882620013df565b91506200181583620013df565b92508282026200182581620013df565b915082820484148315176200183f576200183e6200161a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200188282620013df565b91506200188f83620013df565b925082620018a257620018a162001846565b5b828204905092915050565b620018b881620013df565b82525050565b6000602082019050620018d56000830184620018ad565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200190882620018db565b9050919050565b6200191a81620018fb565b82525050565b60006020820190506200193760008301846200190f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061ffff82169050919050565b600062001987826200196c565b915062001994836200196c565b9250828201905061ffff811115620019b157620019b06200161a565b5b92915050565b600082825260208201905092915050565b7f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560008201527f64206d617820746f74616c20666565206f662035302500000000000000000000602082015250565b600062001a26603683620019b7565b915062001a3382620019c8565b604082019050919050565b6000602082019050818103600083015262001a598162001a17565b9050919050565b62001a6b816200196c565b82525050565b600060608201905062001a88600083018662001a60565b62001a97602083018562001a60565b62001aa6604083018462001a60565b949350505050565b60008115159050919050565b62001ac58162001aae565b82525050565b600060208201905062001ae2600083018462001aba565b92915050565b600080fd5b62001af881620018fb565b811462001b0457600080fd5b50565b60008151905062001b188162001aed565b92915050565b60006020828403121562001b375762001b3662001ae8565b5b600062001b478482850162001b07565b91505092915050565b600060408201905062001b6760008301856200190f565b62001b7660208301846200190f565b9392505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001bb5601f83620019b7565b915062001bc28262001b7d565b602082019050919050565b6000602082019050818103600083015262001be88162001ba6565b9050919050565b600062001bfc82620013df565b915062001c0983620013df565b925082820190508082111562001c245762001c236200161a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001c62602083620019b7565b915062001c6f8262001c2a565b602082019050919050565b6000602082019050818103600083015262001c958162001c53565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b600062001cfa602283620019b7565b915062001d078262001c9c565b604082019050919050565b6000602082019050818103600083015262001d2d8162001ceb565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c6960008201527f6d69740000000000000000000000000000000000000000000000000000000000602082015250565b600062001d92602383620019b7565b915062001d9f8262001d34565b604082019050919050565b6000602082019050818103600083015262001dc58162001d83565b9050919050565b613aa48062001ddc6000396000f3fe6080604052600436106102135760003560e01c8063852707ad11610118578063b76813c8116100a0578063d33504671161006f578063d3350467146107e2578063daacc6c41461081f578063db8f0f7b14610848578063dd62ed3e14610873578063f2fde38b146108b05761021a565b8063b76813c81461073c578063c024666814610765578063c0a904a21461078e578063c1438acf146107b75761021a565b8063a2745dff116100e7578063a2745dff1461061f578063a457c2d71461065c578063a9059cbb14610699578063a940352c146106d6578063aa88602a146106ff5761021a565b8063852707ad1461057357806388e765ff1461059e5780638da5cb5b146105c957806395d89b41146105f45761021a565b806342966c681161019b5780635cce86cd1161016a5780635cce86cd1461048e57806366d602ae146104cb57806370a08231146104f6578063715018a61461053357806379cc67901461054a5761021a565b806342966c68146103d45780634fbee193146103fd578063502f74461461043a57806353b01bb6146104655761021a565b806318160ddd116101e257806318160ddd146102db57806323b872dd146103065780632d99d32e14610343578063313ce5671461036c57806339509351146103975761021a565b80630445b6671461021f57806306fdde031461024a578063095ea7b31461027557806313e3b34a146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102346108d9565b6040516102419190612875565b60405180910390f35b34801561025657600080fd5b5061025f6108df565b60405161026c9190612920565b60405180910390f35b34801561028157600080fd5b5061029c600480360381019061029791906129d1565b610971565b6040516102a99190612a2c565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190612a47565b610994565b005b3480156102e757600080fd5b506102f0610a22565b6040516102fd9190612875565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190612a74565b610a2c565b60405161033a9190612a2c565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190612af3565b610a5b565b005b34801561037857600080fd5b50610381610b01565b60405161038e9190612b4f565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906129d1565b610b0a565b6040516103cb9190612a2c565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190612b6a565b610b41565b005b34801561040957600080fd5b50610424600480360381019061041f9190612a47565b610b55565b6040516104319190612a2c565b60405180910390f35b34801561044657600080fd5b5061044f610b75565b60405161045c9190612bf6565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190612b6a565b610b9b565b005b34801561049a57600080fd5b506104b560048036038101906104b09190612a47565b610be4565b6040516104c29190612a2c565b60405180910390f35b3480156104d757600080fd5b506104e0610c04565b6040516104ed9190612875565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612a47565b610c0a565b60405161052a9190612875565b60405180910390f35b34801561053f57600080fd5b50610548610c52565b005b34801561055657600080fd5b50610571600480360381019061056c91906129d1565b610c66565b005b34801561057f57600080fd5b50610588610c86565b6040516105959190612c20565b60405180910390f35b3480156105aa57600080fd5b506105b3610cac565b6040516105c09190612875565b60405180910390f35b3480156105d557600080fd5b506105de610cb2565b6040516105eb9190612c20565b60405180910390f35b34801561060057600080fd5b50610609610cdc565b6040516106169190612920565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190612b6a565b610d6e565b6040516106539190612c58565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e91906129d1565b610d9c565b6040516106909190612a2c565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb91906129d1565b610e13565b6040516106cd9190612a2c565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612b6a565b610e36565b005b34801561070b57600080fd5b5061072660048036038101906107219190612b6a565b610e7f565b6040516107339190612c58565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190612c9f565b610ead565b005b34801561077157600080fd5b5061078c60048036038101906107879190612af3565b61118f565b005b34801561079a57600080fd5b506107b560048036038101906107b09190612af3565b611240565b005b3480156107c357600080fd5b506107cc6112f1565b6040516107d99190612c20565b60405180910390f35b3480156107ee57600080fd5b5061080960048036038101906108049190612a47565b611317565b6040516108169190612a2c565b60405180910390f35b34801561082b57600080fd5b5061084660048036038101906108419190612b6a565b611337565b005b34801561085457600080fd5b5061085d611380565b60405161086a9190612875565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190612cf2565b611396565b6040516108a79190612875565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190612a47565b61141d565b005b60065481565b6060600380546108ee90612d61565b80601f016020809104026020016040519081016040528092919081815260200182805461091a90612d61565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b60008061097c6114a0565b90506109898185856114a8565b600191505092915050565b61099c611671565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109e881600161118f565b7f7e73a74e2130cc5ddcd0052db77e2fc705cc1cb9add35bd23493759c2aa39acf81604051610a179190612c20565b60405180910390a150565b6000600254905090565b600080610a376114a0565b9050610a448582856116ef565b610a4f85858561177b565b60019150509392505050565b610a63611671565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90612e04565b60405180910390fd5b610afd8282611d95565b5050565b60006012905090565b600080610b156114a0565b9050610b36818585610b278589611396565b610b319190612e53565b6114a8565b600191505092915050565b610b52610b4c6114a0565b82611e50565b50565b600a6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ba3611671565b806006819055507f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647681604051610bd99190612875565b60405180910390a150565b600f6020528060005260406000206000915054906101000a900460ff1681565b60115481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c5a611671565b610c64600061201d565b565b610c7882610c726114a0565b836116ef565b610c828282611e50565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ceb90612d61565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1790612d61565b8015610d645780601f10610d3957610100808354040283529160200191610d64565b820191906000526020600020905b815481529060010190602001808311610d4757829003601f168201915b5050505050905090565b600b8160038110610d7e57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b600080610da76114a0565b90506000610db58286611396565b905083811015610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190612ef9565b60405180910390fd5b610e0782868684036114a8565b60019250505092915050565b600080610e1e6114a0565b9050610e2b81858561177b565b600191505092915050565b610e3e611671565b806011819055507fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a81604051610e749190612875565b60405180910390a150565b60098160038110610e8f57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b610eb5611671565b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff168152506009906003610ef89291906127a2565b506009600060038110610f0e57610f0d612f19565b5b601091828204019190066002029054906101000a900461ffff166000610f349190612f48565b600b600060038110610f4957610f48612f19565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600160038110610f8357610f82612f19565b5b601091828204019190066002029054906101000a900461ffff166000610fa99190612f48565b600b600160038110610fbe57610fbd612f19565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600260038110610ff857610ff7612f19565b5b601091828204019190066002029054906101000a900461ffff16600061101e9190612f48565b600b60026003811061103357611032612f19565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550612710600b6000600381106110705761106f612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff16111580156110d05750612710600b6001600381106110af576110ae612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b80156111105750612710600b6002600381106110ef576110ee612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b61114f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114690612ff0565b60405180910390fd5b7fad52a8ce6837dc95d68c200da98ad470334e7f6768288653b78f415b8234efb883838360405161118293929190613010565b60405180910390a1505050565b611197611671565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516112349190612a2c565b60405180910390a25050565b611248611671565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516112e59190612a2c565b60405180910390a25050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e6020528060005260406000206000915054906101000a900460ff1681565b61133f611671565b806010819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d816040516113759190612875565b60405180910390a150565b600060075460006113919190612e53565b905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611425611671565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b906130b9565b60405180910390fd5b61149d8161201d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e9061314b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d906131dd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116649190612875565b60405180910390a3505050565b6116796114a0565b73ffffffffffffffffffffffffffffffffffffffff16611697610cb2565b73ffffffffffffffffffffffffffffffffffffffff16146116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e490613249565b60405180910390fd5b565b60006116fb8484611396565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117755781811015611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e906132b5565b60405180910390fd5b61177484848484036114a8565b5b50505050565b6000600654611788611380565b10159050600c60009054906101000a900460ff161580156117f35750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156117fc5750805b156119cc576001600c60006101000a81548160ff02191690831515021790555060008061182b57506000600754115b156119b057600060075460006118419190612e53565b9050600061184e826120e3565b60004790506000836007548361186491906132d5565b61186e9190613346565b905060008111156119a357600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516118bf906133a8565b60006040518083038185875af1925050503d80600081146118fc576040519150601f19603f3d011682016040523d82523d6000602084013e611901565b606091505b50508093505082611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e9061342f565b60405180910390fd5b7fe8cf55cb745f9404c1e7c44ff43ec87d85917483f41c1122f16e431c36c7ec2c600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260405161199a92919061344f565b60405180910390a15b6000600781905550505050505b6000600c60006101000a81548160ff0219169083151502179055505b600c60009054906101000a900460ff161580156119e95750600082115b8015611a435750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611a995750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611aef5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d845760008060039050600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b92576000600b600060038110611b6457611b63612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611b8d57600090505b611c6b565b600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c29576000600b600160038110611bfb57611bfa612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611c2457600190505b611c6a565b6000600b600260038110611c4057611c3f612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611c6957600290505b5b5b60038160ff161015611d6c57612710600b8260ff1660038110611c9157611c90612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff1685611cba91906132d5565b611cc49190613346565b91508184611cd29190613478565b9350600b8160ff1660038110611ceb57611cea612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff1660098260ff1660038110611d2057611d1f612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff1683611d4991906132d5565b611d539190613346565b60076000828254611d649190612e53565b925050819055505b6000821115611d8157611d80863084612326565b5b50505b611d8f848484612326565b50505050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015611dfe57611dfd826001611240565b5b8173ffffffffffffffffffffffffffffffffffffffff167feec3c205c2ec2436d6d51e27ca422a7260bce7886bc2c0a2ae8ae98c81cd465882604051611e449190612a2c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb69061351e565b60405180910390fd5b611ecb8260008361259c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f48906135b0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120049190612875565b60405180910390a361201883600084612788565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612100576120ff6135d0565b5b60405190808252806020026020018201604052801561212e5781602001602082028036833780820191505090505b509050308160008151811061214657612145612f19565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122119190613614565b8160018151811061222557612224612f19565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061228c30600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846114a8565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016122f095949392919061373a565b600060405180830381600087803b15801561230a57600080fd5b505af115801561231e573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90613806565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fb90613898565b60405180910390fd5b61240f83838361259c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c9061392a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125839190612875565b60405180910390a3612596848484612788565b50505050565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561263f5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561268a57601054811115612689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612680906139bc565b60405180910390fd5b5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561272d5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561277857601154811115612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e90613a4e565b60405180910390fd5b5b612783838383612798565b505050565b61279383838361279d565b505050565b505050565b505050565b826003600f0160109004810192821561282e5791602002820160005b838211156127fe57835183826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026127be565b801561282c5782816101000a81549061ffff02191690556002016020816001010492830192600103026127fe565b505b50905061283b919061283f565b5090565b5b80821115612858576000816000905550600101612840565b5090565b6000819050919050565b61286f8161285c565b82525050565b600060208201905061288a6000830184612866565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128ca5780820151818401526020810190506128af565b60008484015250505050565b6000601f19601f8301169050919050565b60006128f282612890565b6128fc818561289b565b935061290c8185602086016128ac565b612915816128d6565b840191505092915050565b6000602082019050818103600083015261293a81846128e7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061297282612947565b9050919050565b61298281612967565b811461298d57600080fd5b50565b60008135905061299f81612979565b92915050565b6129ae8161285c565b81146129b957600080fd5b50565b6000813590506129cb816129a5565b92915050565b600080604083850312156129e8576129e7612942565b5b60006129f685828601612990565b9250506020612a07858286016129bc565b9150509250929050565b60008115159050919050565b612a2681612a11565b82525050565b6000602082019050612a416000830184612a1d565b92915050565b600060208284031215612a5d57612a5c612942565b5b6000612a6b84828501612990565b91505092915050565b600080600060608486031215612a8d57612a8c612942565b5b6000612a9b86828701612990565b9350506020612aac86828701612990565b9250506040612abd868287016129bc565b9150509250925092565b612ad081612a11565b8114612adb57600080fd5b50565b600081359050612aed81612ac7565b92915050565b60008060408385031215612b0a57612b09612942565b5b6000612b1885828601612990565b9250506020612b2985828601612ade565b9150509250929050565b600060ff82169050919050565b612b4981612b33565b82525050565b6000602082019050612b646000830184612b40565b92915050565b600060208284031215612b8057612b7f612942565b5b6000612b8e848285016129bc565b91505092915050565b6000819050919050565b6000612bbc612bb7612bb284612947565b612b97565b612947565b9050919050565b6000612bce82612ba1565b9050919050565b6000612be082612bc3565b9050919050565b612bf081612bd5565b82525050565b6000602082019050612c0b6000830184612be7565b92915050565b612c1a81612967565b82525050565b6000602082019050612c356000830184612c11565b92915050565b600061ffff82169050919050565b612c5281612c3b565b82525050565b6000602082019050612c6d6000830184612c49565b92915050565b612c7c81612c3b565b8114612c8757600080fd5b50565b600081359050612c9981612c73565b92915050565b600080600060608486031215612cb857612cb7612942565b5b6000612cc686828701612c8a565b9350506020612cd786828701612c8a565b9250506040612ce886828701612c8a565b9150509250925092565b60008060408385031215612d0957612d08612942565b5b6000612d1785828601612990565b9250506020612d2885828601612990565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d7957607f821691505b602082108103612d8c57612d8b612d32565b5b50919050565b7f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e6960008201527f7469616c20706169722066726f6d206c69737400000000000000000000000000602082015250565b6000612dee60338361289b565b9150612df982612d92565b604082019050919050565b60006020820190508181036000830152612e1d81612de1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e5e8261285c565b9150612e698361285c565b9250828201905080821115612e8157612e80612e24565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612ee360258361289b565b9150612eee82612e87565b604082019050919050565b60006020820190508181036000830152612f1281612ed6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612f5382612c3b565b9150612f5e83612c3b565b9250828201905061ffff811115612f7857612f77612e24565b5b92915050565b7f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560008201527f64206d617820746f74616c20666565206f662035302500000000000000000000602082015250565b6000612fda60368361289b565b9150612fe582612f7e565b604082019050919050565b6000602082019050818103600083015261300981612fcd565b9050919050565b60006060820190506130256000830186612c49565b6130326020830185612c49565b61303f6040830184612c49565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130a360268361289b565b91506130ae82613047565b604082019050919050565b600060208201905081810360008301526130d281613096565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061313560248361289b565b9150613140826130d9565b604082019050919050565b6000602082019050818103600083015261316481613128565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131c760228361289b565b91506131d28261316b565b604082019050919050565b600060208201905081810360008301526131f6816131ba565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061323360208361289b565b915061323e826131fd565b602082019050919050565b6000602082019050818103600083015261326281613226565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061329f601d8361289b565b91506132aa82613269565b602082019050919050565b600060208201905081810360008301526132ce81613292565b9050919050565b60006132e08261285c565b91506132eb8361285c565b92508282026132f98161285c565b915082820484148315176133105761330f612e24565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133518261285c565b915061335c8361285c565b92508261336c5761336b613317565b5b828204905092915050565b600081905092915050565b50565b6000613392600083613377565b915061339d82613382565b600082019050919050565b60006133b382613385565b9150819050919050565b7f546178657344656661756c74526f7574657257616c6c6574436f696e3a20466560008201527f65207472616e73666572206572726f7200000000000000000000000000000000602082015250565b600061341960308361289b565b9150613424826133bd565b604082019050919050565b600060208201905081810360008301526134488161340c565b9050919050565b60006040820190506134646000830185612c11565b6134716020830184612866565b9392505050565b60006134838261285c565b915061348e8361285c565b92508282039050818111156134a6576134a5612e24565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061350860218361289b565b9150613513826134ac565b604082019050919050565b60006020820190508181036000830152613537816134fb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061359a60228361289b565b91506135a58261353e565b604082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061360e81612979565b92915050565b60006020828403121561362a57613629612942565b5b6000613638848285016135ff565b91505092915050565b6000819050919050565b600061366661366161365c84613641565b612b97565b61285c565b9050919050565b6136768161364b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136b181612967565b82525050565b60006136c383836136a8565b60208301905092915050565b6000602082019050919050565b60006136e78261367c565b6136f18185613687565b93506136fc83613698565b8060005b8381101561372d57815161371488826136b7565b975061371f836136cf565b925050600181019050613700565b5085935050505092915050565b600060a08201905061374f6000830188612866565b61375c602083018761366d565b818103604083015261376e81866136dc565b905061377d6060830185612c11565b61378a6080830184612866565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137f060258361289b565b91506137fb82613794565b604082019050919050565b6000602082019050818103600083015261381f816137e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061388260238361289b565b915061388d82613826565b604082019050919050565b600060208201905081810360008301526138b181613875565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061391460268361289b565b915061391f826138b8565b604082019050919050565b6000602082019050818103600083015261394381613907565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b60006139a660228361289b565b91506139b18261394a565b604082019050919050565b600060208201905081810360008301526139d581613999565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c6960008201527f6d69740000000000000000000000000000000000000000000000000000000000602082015250565b6000613a3860238361289b565b9150613a43826139dc565b604082019050919050565b60006020820190508181036000830152613a6781613a2b565b905091905056fea264697066735822122019e9a7c7d901c06fdcb9864dfc9f4e9bd6827a9b44d81efa9b1e363d51b3a45764736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102135760003560e01c8063852707ad11610118578063b76813c8116100a0578063d33504671161006f578063d3350467146107e2578063daacc6c41461081f578063db8f0f7b14610848578063dd62ed3e14610873578063f2fde38b146108b05761021a565b8063b76813c81461073c578063c024666814610765578063c0a904a21461078e578063c1438acf146107b75761021a565b8063a2745dff116100e7578063a2745dff1461061f578063a457c2d71461065c578063a9059cbb14610699578063a940352c146106d6578063aa88602a146106ff5761021a565b8063852707ad1461057357806388e765ff1461059e5780638da5cb5b146105c957806395d89b41146105f45761021a565b806342966c681161019b5780635cce86cd1161016a5780635cce86cd1461048e57806366d602ae146104cb57806370a08231146104f6578063715018a61461053357806379cc67901461054a5761021a565b806342966c68146103d45780634fbee193146103fd578063502f74461461043a57806353b01bb6146104655761021a565b806318160ddd116101e257806318160ddd146102db57806323b872dd146103065780632d99d32e14610343578063313ce5671461036c57806339509351146103975761021a565b80630445b6671461021f57806306fdde031461024a578063095ea7b31461027557806313e3b34a146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102346108d9565b6040516102419190612875565b60405180910390f35b34801561025657600080fd5b5061025f6108df565b60405161026c9190612920565b60405180910390f35b34801561028157600080fd5b5061029c600480360381019061029791906129d1565b610971565b6040516102a99190612a2c565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190612a47565b610994565b005b3480156102e757600080fd5b506102f0610a22565b6040516102fd9190612875565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190612a74565b610a2c565b60405161033a9190612a2c565b60405180910390f35b34801561034f57600080fd5b5061036a60048036038101906103659190612af3565b610a5b565b005b34801561037857600080fd5b50610381610b01565b60405161038e9190612b4f565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b991906129d1565b610b0a565b6040516103cb9190612a2c565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190612b6a565b610b41565b005b34801561040957600080fd5b50610424600480360381019061041f9190612a47565b610b55565b6040516104319190612a2c565b60405180910390f35b34801561044657600080fd5b5061044f610b75565b60405161045c9190612bf6565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190612b6a565b610b9b565b005b34801561049a57600080fd5b506104b560048036038101906104b09190612a47565b610be4565b6040516104c29190612a2c565b60405180910390f35b3480156104d757600080fd5b506104e0610c04565b6040516104ed9190612875565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612a47565b610c0a565b60405161052a9190612875565b60405180910390f35b34801561053f57600080fd5b50610548610c52565b005b34801561055657600080fd5b50610571600480360381019061056c91906129d1565b610c66565b005b34801561057f57600080fd5b50610588610c86565b6040516105959190612c20565b60405180910390f35b3480156105aa57600080fd5b506105b3610cac565b6040516105c09190612875565b60405180910390f35b3480156105d557600080fd5b506105de610cb2565b6040516105eb9190612c20565b60405180910390f35b34801561060057600080fd5b50610609610cdc565b6040516106169190612920565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190612b6a565b610d6e565b6040516106539190612c58565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e91906129d1565b610d9c565b6040516106909190612a2c565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb91906129d1565b610e13565b6040516106cd9190612a2c565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190612b6a565b610e36565b005b34801561070b57600080fd5b5061072660048036038101906107219190612b6a565b610e7f565b6040516107339190612c58565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e9190612c9f565b610ead565b005b34801561077157600080fd5b5061078c60048036038101906107879190612af3565b61118f565b005b34801561079a57600080fd5b506107b560048036038101906107b09190612af3565b611240565b005b3480156107c357600080fd5b506107cc6112f1565b6040516107d99190612c20565b60405180910390f35b3480156107ee57600080fd5b5061080960048036038101906108049190612a47565b611317565b6040516108169190612a2c565b60405180910390f35b34801561082b57600080fd5b5061084660048036038101906108419190612b6a565b611337565b005b34801561085457600080fd5b5061085d611380565b60405161086a9190612875565b60405180910390f35b34801561087f57600080fd5b5061089a60048036038101906108959190612cf2565b611396565b6040516108a79190612875565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d29190612a47565b61141d565b005b60065481565b6060600380546108ee90612d61565b80601f016020809104026020016040519081016040528092919081815260200182805461091a90612d61565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b60008061097c6114a0565b90506109898185856114a8565b600191505092915050565b61099c611671565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109e881600161118f565b7f7e73a74e2130cc5ddcd0052db77e2fc705cc1cb9add35bd23493759c2aa39acf81604051610a179190612c20565b60405180910390a150565b6000600254905090565b600080610a376114a0565b9050610a448582856116ef565b610a4f85858561177b565b60019150509392505050565b610a63611671565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90612e04565b60405180910390fd5b610afd8282611d95565b5050565b60006012905090565b600080610b156114a0565b9050610b36818585610b278589611396565b610b319190612e53565b6114a8565b600191505092915050565b610b52610b4c6114a0565b82611e50565b50565b600a6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ba3611671565b806006819055507f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647681604051610bd99190612875565b60405180910390a150565b600f6020528060005260406000206000915054906101000a900460ff1681565b60115481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c5a611671565b610c64600061201d565b565b610c7882610c726114a0565b836116ef565b610c828282611e50565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ceb90612d61565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1790612d61565b8015610d645780601f10610d3957610100808354040283529160200191610d64565b820191906000526020600020905b815481529060010190602001808311610d4757829003601f168201915b5050505050905090565b600b8160038110610d7e57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b600080610da76114a0565b90506000610db58286611396565b905083811015610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190612ef9565b60405180910390fd5b610e0782868684036114a8565b60019250505092915050565b600080610e1e6114a0565b9050610e2b81858561177b565b600191505092915050565b610e3e611671565b806011819055507fa0dff8a4e8bcaa27b5a2b64bc312f8b338e362bd6cad89f5fe2ae6b8389fb38a81604051610e749190612875565b60405180910390a150565b60098160038110610e8f57600080fd5b60109182820401919006600202915054906101000a900461ffff1681565b610eb5611671565b60405180606001604052808461ffff1661ffff1681526020018361ffff1661ffff1681526020018261ffff1661ffff168152506009906003610ef89291906127a2565b506009600060038110610f0e57610f0d612f19565b5b601091828204019190066002029054906101000a900461ffff166000610f349190612f48565b600b600060038110610f4957610f48612f19565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600160038110610f8357610f82612f19565b5b601091828204019190066002029054906101000a900461ffff166000610fa99190612f48565b600b600160038110610fbe57610fbd612f19565b5b601091828204019190066002026101000a81548161ffff021916908361ffff1602179055506009600260038110610ff857610ff7612f19565b5b601091828204019190066002029054906101000a900461ffff16600061101e9190612f48565b600b60026003811061103357611032612f19565b5b601091828204019190066002026101000a81548161ffff021916908361ffff160217905550612710600b6000600381106110705761106f612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff16111580156110d05750612710600b6001600381106110af576110ae612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b80156111105750612710600b6002600381106110ef576110ee612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff1611155b61114f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114690612ff0565b60405180910390fd5b7fad52a8ce6837dc95d68c200da98ad470334e7f6768288653b78f415b8234efb883838360405161118293929190613010565b60405180910390a1505050565b611197611671565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516112349190612a2c565b60405180910390a25050565b611248611671565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92826040516112e59190612a2c565b60405180910390a25050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e6020528060005260406000206000915054906101000a900460ff1681565b61133f611671565b806010819055507fd0459d371e1defb856088ceda9d33bfed2a31a105e0bae2113cdc7dcc9e77e9d816040516113759190612875565b60405180910390a150565b600060075460006113919190612e53565b905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611425611671565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611494576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148b906130b9565b60405180910390fd5b61149d8161201d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e9061314b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d906131dd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116649190612875565b60405180910390a3505050565b6116796114a0565b73ffffffffffffffffffffffffffffffffffffffff16611697610cb2565b73ffffffffffffffffffffffffffffffffffffffff16146116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e490613249565b60405180910390fd5b565b60006116fb8484611396565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146117755781811015611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e906132b5565b60405180910390fd5b61177484848484036114a8565b5b50505050565b6000600654611788611380565b10159050600c60009054906101000a900460ff161580156117f35750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156117fc5750805b156119cc576001600c60006101000a81548160ff02191690831515021790555060008061182b57506000600754115b156119b057600060075460006118419190612e53565b9050600061184e826120e3565b60004790506000836007548361186491906132d5565b61186e9190613346565b905060008111156119a357600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516118bf906133a8565b60006040518083038185875af1925050503d80600081146118fc576040519150601f19603f3d011682016040523d82523d6000602084013e611901565b606091505b50508093505082611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e9061342f565b60405180910390fd5b7fe8cf55cb745f9404c1e7c44ff43ec87d85917483f41c1122f16e431c36c7ec2c600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260405161199a92919061344f565b60405180910390a15b6000600781905550505050505b6000600c60006101000a81548160ff0219169083151502179055505b600c60009054906101000a900460ff161580156119e95750600082115b8015611a435750600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611a995750600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611aef5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d845760008060039050600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b92576000600b600060038110611b6457611b63612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611b8d57600090505b611c6b565b600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611c29576000600b600160038110611bfb57611bfa612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611c2457600190505b611c6a565b6000600b600260038110611c4057611c3f612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff161115611c6957600290505b5b5b60038160ff161015611d6c57612710600b8260ff1660038110611c9157611c90612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff1685611cba91906132d5565b611cc49190613346565b91508184611cd29190613478565b9350600b8160ff1660038110611ceb57611cea612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff1660098260ff1660038110611d2057611d1f612f19565b5b601091828204019190066002029054906101000a900461ffff1661ffff1683611d4991906132d5565b611d539190613346565b60076000828254611d649190612e53565b925050819055505b6000821115611d8157611d80863084612326565b5b50505b611d8f848484612326565b50505050565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015611dfe57611dfd826001611240565b5b8173ffffffffffffffffffffffffffffffffffffffff167feec3c205c2ec2436d6d51e27ca422a7260bce7886bc2c0a2ae8ae98c81cd465882604051611e449190612a2c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb69061351e565b60405180910390fd5b611ecb8260008361259c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f48906135b0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120049190612875565b60405180910390a361201883600084612788565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff811115612100576120ff6135d0565b5b60405190808252806020026020018201604052801561212e5781602001602082028036833780820191505090505b509050308160008151811061214657612145612f19565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122119190613614565b8160018151811061222557612224612f19565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061228c30600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846114a8565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016122f095949392919061373a565b600060405180830381600087803b15801561230a57600080fd5b505af115801561231e573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c90613806565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fb90613898565b60405180910390fd5b61240f83838361259c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c9061392a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125839190612875565b60405180910390a3612596848484612788565b50505050565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561263f5750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561268a57601054811115612689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612680906139bc565b60405180910390fd5b5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561272d5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561277857601154811115612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e90613a4e565b60405180910390fd5b5b612783838383612798565b505050565b61279383838361279d565b505050565b505050565b505050565b826003600f0160109004810192821561282e5791602002820160005b838211156127fe57835183826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026127be565b801561282c5782816101000a81549061ffff02191690556002016020816001010492830192600103026127fe565b505b50905061283b919061283f565b5090565b5b80821115612858576000816000905550600101612840565b5090565b6000819050919050565b61286f8161285c565b82525050565b600060208201905061288a6000830184612866565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156128ca5780820151818401526020810190506128af565b60008484015250505050565b6000601f19601f8301169050919050565b60006128f282612890565b6128fc818561289b565b935061290c8185602086016128ac565b612915816128d6565b840191505092915050565b6000602082019050818103600083015261293a81846128e7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061297282612947565b9050919050565b61298281612967565b811461298d57600080fd5b50565b60008135905061299f81612979565b92915050565b6129ae8161285c565b81146129b957600080fd5b50565b6000813590506129cb816129a5565b92915050565b600080604083850312156129e8576129e7612942565b5b60006129f685828601612990565b9250506020612a07858286016129bc565b9150509250929050565b60008115159050919050565b612a2681612a11565b82525050565b6000602082019050612a416000830184612a1d565b92915050565b600060208284031215612a5d57612a5c612942565b5b6000612a6b84828501612990565b91505092915050565b600080600060608486031215612a8d57612a8c612942565b5b6000612a9b86828701612990565b9350506020612aac86828701612990565b9250506040612abd868287016129bc565b9150509250925092565b612ad081612a11565b8114612adb57600080fd5b50565b600081359050612aed81612ac7565b92915050565b60008060408385031215612b0a57612b09612942565b5b6000612b1885828601612990565b9250506020612b2985828601612ade565b9150509250929050565b600060ff82169050919050565b612b4981612b33565b82525050565b6000602082019050612b646000830184612b40565b92915050565b600060208284031215612b8057612b7f612942565b5b6000612b8e848285016129bc565b91505092915050565b6000819050919050565b6000612bbc612bb7612bb284612947565b612b97565b612947565b9050919050565b6000612bce82612ba1565b9050919050565b6000612be082612bc3565b9050919050565b612bf081612bd5565b82525050565b6000602082019050612c0b6000830184612be7565b92915050565b612c1a81612967565b82525050565b6000602082019050612c356000830184612c11565b92915050565b600061ffff82169050919050565b612c5281612c3b565b82525050565b6000602082019050612c6d6000830184612c49565b92915050565b612c7c81612c3b565b8114612c8757600080fd5b50565b600081359050612c9981612c73565b92915050565b600080600060608486031215612cb857612cb7612942565b5b6000612cc686828701612c8a565b9350506020612cd786828701612c8a565b9250506040612ce886828701612c8a565b9150509250925092565b60008060408385031215612d0957612d08612942565b5b6000612d1785828601612990565b9250506020612d2885828601612990565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d7957607f821691505b602082108103612d8c57612d8b612d32565b5b50919050565b7f44656661756c74526f757465723a2043616e6e6f742072656d6f766520696e6960008201527f7469616c20706169722066726f6d206c69737400000000000000000000000000602082015250565b6000612dee60338361289b565b9150612df982612d92565b604082019050919050565b60006020820190508181036000830152612e1d81612de1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e5e8261285c565b9150612e698361285c565b9250828201905080821115612e8157612e80612e24565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612ee360258361289b565b9150612eee82612e87565b604082019050919050565b60006020820190508181036000830152612f1281612ed6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612f5382612c3b565b9150612f5e83612c3b565b9250828201905061ffff811115612f7857612f77612e24565b5b92915050565b7f546178657344656661756c74526f757465723a2043616e6e6f7420657863656560008201527f64206d617820746f74616c20666565206f662035302500000000000000000000602082015250565b6000612fda60368361289b565b9150612fe582612f7e565b604082019050919050565b6000602082019050818103600083015261300981612fcd565b9050919050565b60006060820190506130256000830186612c49565b6130326020830185612c49565b61303f6040830184612c49565b949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006130a360268361289b565b91506130ae82613047565b604082019050919050565b600060208201905081810360008301526130d281613096565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061313560248361289b565b9150613140826130d9565b604082019050919050565b6000602082019050818103600083015261316481613128565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006131c760228361289b565b91506131d28261316b565b604082019050919050565b600060208201905081810360008301526131f6816131ba565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061323360208361289b565b915061323e826131fd565b602082019050919050565b6000602082019050818103600083015261326281613226565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061329f601d8361289b565b91506132aa82613269565b602082019050919050565b600060208201905081810360008301526132ce81613292565b9050919050565b60006132e08261285c565b91506132eb8361285c565b92508282026132f98161285c565b915082820484148315176133105761330f612e24565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133518261285c565b915061335c8361285c565b92508261336c5761336b613317565b5b828204905092915050565b600081905092915050565b50565b6000613392600083613377565b915061339d82613382565b600082019050919050565b60006133b382613385565b9150819050919050565b7f546178657344656661756c74526f7574657257616c6c6574436f696e3a20466560008201527f65207472616e73666572206572726f7200000000000000000000000000000000602082015250565b600061341960308361289b565b9150613424826133bd565b604082019050919050565b600060208201905081810360008301526134488161340c565b9050919050565b60006040820190506134646000830185612c11565b6134716020830184612866565b9392505050565b60006134838261285c565b915061348e8361285c565b92508282039050818111156134a6576134a5612e24565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061350860218361289b565b9150613513826134ac565b604082019050919050565b60006020820190508181036000830152613537816134fb565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061359a60228361289b565b91506135a58261353e565b604082019050919050565b600060208201905081810360008301526135c98161358d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061360e81612979565b92915050565b60006020828403121561362a57613629612942565b5b6000613638848285016135ff565b91505092915050565b6000819050919050565b600061366661366161365c84613641565b612b97565b61285c565b9050919050565b6136768161364b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136b181612967565b82525050565b60006136c383836136a8565b60208301905092915050565b6000602082019050919050565b60006136e78261367c565b6136f18185613687565b93506136fc83613698565b8060005b8381101561372d57815161371488826136b7565b975061371f836136cf565b925050600181019050613700565b5085935050505092915050565b600060a08201905061374f6000830188612866565b61375c602083018761366d565b818103604083015261376e81866136dc565b905061377d6060830185612c11565b61378a6080830184612866565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137f060258361289b565b91506137fb82613794565b604082019050919050565b6000602082019050818103600083015261381f816137e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061388260238361289b565b915061388d82613826565b604082019050919050565b600060208201905081810360008301526138b181613875565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061391460268361289b565b915061391f826138b8565b604082019050919050565b6000602082019050818103600083015261394381613907565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d617820627579206c696d60008201527f6974000000000000000000000000000000000000000000000000000000000000602082015250565b60006139a660228361289b565b91506139b18261394a565b604082019050919050565b600060208201905081810360008301526139d581613999565b9050919050565b7f4d617854783a2043616e6e6f7420657863656564206d61782073656c6c206c6960008201527f6d69740000000000000000000000000000000000000000000000000000000000602082015250565b6000613a3860238361289b565b9150613a43826139dc565b604082019050919050565b60006020820190508181036000830152613a6781613a2b565b905091905056fea264697066735822122019e9a7c7d901c06fdcb9864dfc9f4e9bd6827a9b44d81efa9b1e363d51b3a45764736f6c63430008130033

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.