ETH Price: $3,209.49 (+2.35%)

Token

Bera (BERA)
 

Overview

Max Total Supply

1,000,000,000 BERA

Holders

96

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,260,791.325081921987887524 BERA

Value
$0.00
0xc0b9b5464c58832695adeb40bd9661ff566a9461
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xC25Ea037...40A615f65
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
MemeCoin

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: Memecoin.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IUniswapV2Router.sol";
import "./IUniswapV2Factory.sol";
import "./ERC20.sol";

contract MemeCoin is ERC20 {
    uint256 public constant TOTAL_SUPPLY = 1000000000 * 10**18; // Total supply tokens = 1bn
    uint256 public constant TOTAL_BUY_TOKENS = 800000000 * 10**18; // Total tokens to buy = 800mn
    uint256 public constant LIQUIDITY_TOKENS = 200000000 * 10**18; // Total tokens to for LP = 200mn
    uint256 public constant BUY_PRICE_DIFFERENCE_PERCENT = 1000; // Difference in buy price as percentage
    uint256 public constant FEE_PERCENTAGE = 2; // Fee percentage
    uint256 public constant TARGET_LIQUIDITY = 4 * 10**18; // Target liquidity in ETH, assuming 18 decimals
    address payable public constant REVENUE_ACCOUNT = payable(0xCDE357ABBdf15Da7CCE4B51CE70a1d0F08DfB782); // Fee collection address
    uint256 public sanityTokenAmount = 100 * 10 ** 18;

    IUniswapV2Router public uniswapRouter;
    address public lpAddress;
    string public picture;
    address public taxWallet;
    bool public listed;
    bool public degen;
    uint256 public totalETHBought; // Total ETH paid for tokens buying
    uint256 public totalTokensBought; // Total tokens bought
    uint256 public maxWalletAmount; // Total amount of tokens a wallet can hold
    uint256 public buyTax;
    uint256 public sellTax;
    uint256 public devTaxTokens;// Tax tokens accumulated off all taxes {buy & sell}

    mapping(address => uint256) public contributions; // Track ETH contributions
    mapping(address => uint256) public tokens; // Track bought tokens

    constructor(
        address _router,
        address _taxWallet,
        uint256 _maxWalletAmount,
        uint256 _buyTax,
        uint256 _sellTax,
        string memory _name,
        string memory _ticker,
        string memory _picture,
        bool _degen
    ) ERC20(_name, _ticker) {
        uniswapRouter = IUniswapV2Router(_router);
        if (_maxWalletAmount == 0) {
            maxWalletAmount = type(uint256).max;//No Wallet limit
        } else if(_maxWalletAmount == 1){
            maxWalletAmount = (TOTAL_SUPPLY * 5) / 1000;//0.5% Wallet limit
        } else if(_maxWalletAmount == 2){
            maxWalletAmount = TOTAL_SUPPLY * 1 / 100; //1% Wallet limit
        }
        require(_maxWalletAmount == 0 || _maxWalletAmount == 1 || _maxWalletAmount == 2,'Invalid Max Wallet Amount');
        picture = _picture;
        taxWallet = _taxWallet;
        buyTax = _buyTax;
        sellTax = _sellTax;
        degen = _degen;
        listed = false;
        totalETHBought = 0;

        //Create Pair
        lpAddress = IUniswapV2Factory(uniswapRouter.factory()).createPair(address(this), uniswapRouter.WETH());
        
        //Max approve token for Router
        _approve(address(this), address(uniswapRouter), type(uint256).max);

        _mint(address(this), TOTAL_SUPPLY);
    }


    modifier onlyTaxWallet() {
        require(tx.origin == taxWallet,"Unauthorized Reset Attempt");
        _;
    }


    // @notice transfer function that handles all the buy and sell tax logic.
    // @param sender this is the address of the user where tokens are sent from.
    // @param recepient this the address of the user receiving the tokens.
    // @param amount this is the amount of tokens to be sent.
    function _transfer(address sender, address recipient, uint256 amount) internal override {
            uint256 tax;
            address _weth = uniswapRouter.WETH();
        if (listed){
            updateMaxWalletAmount(lpAddress,_weth);
            
            //Buy tax
            if (buyTax > 0 && sender == lpAddress && recipient != taxWallet){
                    tax = amount * buyTax / 100;
                    uint256 taxedAmount = amount - tax;
                    devTaxTokens = devTaxTokens + tax;
                    amount = taxedAmount;
                    super._transfer(sender, address(this), tax);
            }

            //Sell tax
            if (sellTax > 0 && recipient == lpAddress && sender!= taxWallet){
                    tax = amount * sellTax / 100;
                    uint256 taxedAmount = amount - tax;
                    devTaxTokens = devTaxTokens + tax;
                    amount = taxedAmount;
                    super._transfer(sender, address(this), tax);
            }

            if (recipient != taxWallet && recipient != lpAddress && recipient != address(0x000000000000000000000000000000000000dEaD)) {
                require(balanceOf(address(recipient)) + amount <= maxWalletAmount, "Transfer amount exceeds the max wallet amount");
            }


            super._transfer(sender, recipient, amount);
            if(sender != lpAddress && recipient != lpAddress){
                _swapAndLiquify();
            }
        }else{
            
            
            if (recipient != taxWallet && recipient != address(this) && recipient != lpAddress) {
                
                require(balanceOf(address(recipient)) + amount <= maxWalletAmount, "Transfer amount exceeds the max wallet amount");
            }

            super._transfer(sender, recipient, amount);

            //Make sure only contract can addLiquidty
            if(recipient == lpAddress){
                require(sender == address(this),"Invalid AddLiquidty Attempt");
            }
        }
    }

    // @notice allows a user buy a memecoin by sending ETHER.
    // @param buyer this is the address of the user buyingb the tokens.
    // @param slippageAmount this is the minimum amount allowed by user to be received during the purchase.
    function buyTokens(address buyer,uint256 slippageAmount) external payable {
        require(!listed, "Liquidity is already added to Uniswap");
        require(msg.value > 0, "Send ETH to buy tokens");

        uint256 fee = msg.value * FEE_PERCENTAGE / 100;
        uint256 ethAmount = msg.value - fee;

        uint256 tokenAmount = calculateTokenAmount(ethAmount);
        uint256 currentPrice = tokenAmount/ethAmount;

        uint256 finalprice;

        if (_getRemainingAmount() == msg.value) {

            finalprice = currentPrice;
    
            if(tokenAmount > (TOTAL_BUY_TOKENS - totalTokensBought)){
                tokenAmount = TOTAL_BUY_TOKENS - totalTokensBought;
            }
        }

        totalTokensBought += tokenAmount;    
        contributions[buyer] += ethAmount;
    

        if(finalprice == 0){
            require(tokenAmount >= slippageAmount, "Slippage Amount Restriction");
        }

        if(buyTax > 0 && buyer != taxWallet){
            uint256 tax = tokenAmount * buyTax / 100;
            uint256 buyerTokens = tokenAmount - tax;
            devTaxTokens = devTaxTokens + tax;
            tokens[buyer] += buyerTokens;
            tokenAmount = buyerTokens;
        }else{
            tokens[buyer] += tokenAmount;
        }

        totalETHBought += ethAmount;

        _transfer(address(this), buyer, tokenAmount);
        bool success;
        (success, ) = REVENUE_ACCOUNT.call{value: fee}("");
        require(success, "Transfer failed");

        if (address(this).balance >= TARGET_LIQUIDITY && !listed) {
            _addLiquidity();
            _burnRemainingTokens();
        }
    }

    // @notice allows a user sell a memecoin.
    // @param seller this is the address of the user selling tokens.
    // @param tokenAmount this is the amount of tokens a user wants to sell.
    function sellTokens(address seller,uint256 tokenAmount) external {
        require(!listed, "Liquidity is already added to Uniswap");
        require(tokenAmount > 0, "Amount must be greater than 0");

        uint256 ethAmount = calculateEthAmount(seller,tokenAmount);

        if ((balanceOf(address(this)) + tokenAmount) == TOTAL_SUPPLY) {
            ethAmount = address(this).balance;

            if(!degen){
                contributions[seller] = 0;
            }

            totalETHBought = 0;
        } else {

            if(!degen){
                
                    contributions[seller] -= ethAmount;
                    totalETHBought -= ethAmount;
            }else{
                if(contributions[seller] < ethAmount){

                    uint subAmount;
                    if(tokenAmount > 0 && tokenAmount <= (tokens[seller] * 25 / 100)){
                        subAmount = contributions[seller] * 25 / 100;
                    } else if (tokenAmount >= (tokens[seller] * 25 / 100) && tokenAmount <= (tokens[seller] * 50 / 100)){
                        subAmount = contributions[seller] * 50 / 100;
                    } else if (tokenAmount >= (tokens[seller] * 50 / 100) && tokenAmount <= (tokens[seller] * 75 / 100)){
                        subAmount = contributions[seller] * 75 / 100;
                    } else if (tokenAmount >= (tokens[seller] * 75 / 100) && tokenAmount <= (tokens[seller] * 100 / 100)){
                        subAmount = contributions[seller] * 100 / 100;
                    }
                        contributions[seller] = contributions[seller] - subAmount;
                        totalETHBought -= ethAmount;                
                }else{
                  
                        totalETHBought -= ethAmount;
                }
            }

        }

       uint256 fee = ethAmount * FEE_PERCENTAGE / 100;

       if(sellTax > 0 && seller != taxWallet){
            uint256 tax = tokenAmount * sellTax / 100;
            uint256 sellerTokens = tokenAmount - tax;
            tokens[seller] -= tokenAmount;
            devTaxTokens = devTaxTokens + tax;
            tokenAmount = sellerTokens;
        }else{
            tokens[seller] -= tokenAmount;
        }


        totalTokensBought -= tokenAmount; 
        
        _transfer(seller, address(this), tokenAmount);
        bool success;
        (success, ) = seller.call{value: ethAmount - fee}("");
        require(success, "Transfer failed");
        (success, ) = REVENUE_ACCOUNT.call{value: fee}("");
        require(success, "Transfer failed");

    }

    // @notice call to get the remaining ETHER amount required to be spent by users for the memecoin to be listed.
    // @returns A uint value indicating the remaining ETHER amount required to be spent by users for the memecoin to be listed.
    function getRemainingAmount() public view returns (uint256) {
        require(TARGET_LIQUIDITY > address(this).balance, "Liquidity target exceeded");

        return _getRemainingAmount();
    }

    // @notice allows the user calculate the minimum amount required to be received during a buy.
    // @param ethAmount this of ETHER to be used for the buy.
    // @param slippageAllowance this is the amount in percentage  used to calculate slippage.
    function slippage(uint256 ethAmount,uint256 slippageAllowance) public view returns(uint256) {
        uint256 fee = ethAmount * FEE_PERCENTAGE / 100;
        ethAmount = ethAmount - fee;
         uint256 slippageAmount = calculateTokenAmount(ethAmount);
        if (buyTax > 0) {
            uint256 tax = slippageAmount * buyTax / 100;
            slippageAmount = slippageAmount - tax;
        }
        slippageAllowance = slippageAmount * slippageAllowance / 100;
        slippageAmount = slippageAmount - slippageAllowance;
        return slippageAmount;
    }

    // @notice call to get the remaining ETHER amount required to be spent by users for the memecoin to be listed.
    // @param ethAmount this an amount of ETHER to be used to buy.
    // @returns A uint value indicating the token amount a user would receive.
    function calculateTokenAmount(uint256 ethAmount) public view returns (uint256) {
        require(totalETHBought + ethAmount <= TARGET_LIQUIDITY, "Liquidity target exceeded");

        uint256 initialTokenPrice = _initialTokenPrice();
        uint256 tokenPrice = initialTokenPrice + ((initialTokenPrice * BUY_PRICE_DIFFERENCE_PERCENT / 100) * (totalETHBought + (ethAmount / 6)) / TARGET_LIQUIDITY);
        return ethAmount * 10**18 / tokenPrice;
    }

    // @notice call to get the ETHER amount sent to a user when tokens are sold.
    // @param user this is the address of the user.
    // @param tokenAmount this the amount of tokens a user want to sell.
    // @returns A uint value indicating the ETHER amount a user would receive.
    function calculateEthAmount(address user,uint256 tokenAmount) public view returns (uint256) {
        uint256 userTokens = tokens[user];
        require(userTokens <= tokenAmount, "Insufficient user token balance");

        uint256 value;
        if(!degen){

            return contributions[user] * tokenAmount / userTokens;
        }else{
            if(contributions[user] < totalETHBought){
                value = totalETHBought - contributions[user];
                value = value / 5;
                value = value + contributions[user];
            }else{
                value = totalETHBought;
            }
            return value * tokenAmount / userTokens;
        }
    }


    // @notice allows the creator of a memecoin set the minimum amount required to be met before a swap of the tax tokens occurs.
    // @param value this is the minimum amount required to be met before a swap of the tax tokens.
    function setSanityTokenAmount(uint256 newValue) external onlyTaxWallet {
        sanityTokenAmount = newValue * 10 ** 18;
    }


    // @notice allows the creator of a memecoin tax from the token.
    function removeTaxFees() external onlyTaxWallet {
        buyTax = 0;
        sellTax = 0;
    }


    // @notice function that adds liqudity to Uniswap once the Target Liquidity is met.
    function _addLiquidity() internal {

        listed = true;
        uniswapRouter.addLiquidityETH{ value: address(this).balance }(
            address(this),
            LIQUIDITY_TOKENS,
            0,
            0,
            address(this),
            block.timestamp
        );

        uint256 amount = IERC20(lpAddress).balanceOf(address(this));

        //Burn LP
        IERC20(lpAddress).transfer(address(0x000000000000000000000000000000000000dEaD),amount);

        _swapAndLiquify();
    }

    // @notice function that burns the remaining tokens in the contract after liquidity is added.
    function _burnRemainingTokens() internal  {
        
        uint256 amount;
        if(devTaxTokens > 0){
            amount = IERC20(address(this)).balanceOf(address(this)) - devTaxTokens;
        }else{
            amount = IERC20(address(this)).balanceOf(address(this));
        }

        //Burn Remaining Tokens
        IERC20(address(this)).transfer(address(0x000000000000000000000000000000000000dEaD),amount);
    }


    // @notice fucntion that update the maxWalletAmount once the 6 ETHER requirement is met.
    function updateMaxWalletAmount(address _lpToken,address _weth) internal {
        if(maxWalletAmount == type(uint256).max) return;

        uint256 amount = IERC20(_weth).balanceOf(address(_lpToken));

        if (amount >= 6 ether) {
            maxWalletAmount = type(uint256).max;
        }
    }
    
    // @notice call to get the remaining ETHER amount required to be spent by users for the memecoin to be listed.
    // @returns A uint value indicating the remaining ETHER amount required to be spent by users for the memecoin to be listed.
    function _getRemainingAmount() internal view returns (uint256) {
    
        return (TARGET_LIQUIDITY - totalETHBought) * 100 / (100 - FEE_PERCENTAGE);
    }


    // Get initial ETH normalized price per token
    function _initialTokenPrice() internal pure returns (uint256){
 
        return TARGET_LIQUIDITY * 10**18 / ((TOTAL_BUY_TOKENS * BUY_PRICE_DIFFERENCE_PERCENT) / 375);      
    }

    // @notice function that swaps devTaxToken balance for ETHER.
    function _swapAndLiquify() private {

        if(devTaxTokens < sanityTokenAmount) return;
        _swapTokensForEth(devTaxTokens);
        devTaxTokens = 0;
        
    }

    // @notice function that executes the swaps devTaxToken balance for ETHER.
    function _swapTokensForEth(uint256 tokenAmount) private  {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            taxWallet,
            (block.timestamp)
        );
    }
}

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

pragma solidity ^0.8.0;

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

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

File 2 of 7: ERC20.sol
// SPDX-License-Identifier: MIT
// 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 3 of 7: IERC20.sol
// SPDX-License-Identifier: MIT
// 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);
}

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

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

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

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

File 5 of 7: IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IUniswapV2Factory {

    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);
}

File 6 of 7: IUniswapV2Router.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IUniswapV2Router {
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    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 getAmountsOut(uint256 amountIn, address[] memory path) external view returns (uint256[] memory amounts);
    function factory() external pure returns (address);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
        function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_taxWallet","type":"address"},{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"},{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_ticker","type":"string"},{"internalType":"string","name":"_picture","type":"string"},{"internalType":"bool","name":"_degen","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BUY_PRICE_DIFFERENCE_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_PERCENTAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVENUE_ACCOUNT","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TARGET_LIQUIDITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_BUY_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"buyer","type":"address"},{"internalType":"uint256","name":"slippageAmount","type":"uint256"}],"name":"buyTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"calculateEthAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"calculateTokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"contributions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"degen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTaxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRemainingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"listed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"picture","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeTaxFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sanityTokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"seller","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"sellTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setSanityTokenAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethAmount","type":"uint256"},{"internalType":"uint256","name":"slippageAllowance","type":"uint256"}],"name":"slippage","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":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalETHBought","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensBought","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":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405268056bc75e2d6310000060055534801561001c575f80fd5b50604051612f3a380380612f3a83398101604081905261003b916105f3565b838360036100498382610754565b5060046100568282610754565b5050600680546001600160a01b0319166001600160a01b038c16179055505f879003610086575f19600c556100e9565b866001036100ba576103e86100a86b033b2e3c9fd0803ce80000006005610822565b6100b2919061083f565b600c556100e9565b866002036100e95760646100db6b033b2e3c9fd0803ce80000006001610822565b6100e5919061083f565b600c555b8615806100f65750866001145b806101015750866002145b6101525760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964204d61782057616c6c657420416d6f756e740000000000000060448201526064015b60405180910390fd5b600861015e8382610754565b5060098054600d889055600e8790556001600160a01b038a8116600161ff0160a01b031990921691909117600160a81b841515021760ff60a01b19169091555f600a556006546040805163c45a015560e01b81529051919092169163c45a01559160048281019260209291908290030181865afa1580156101e1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610205919061085e565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610264573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610288919061085e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102f6919061085e565b600780546001600160a01b0319166001600160a01b03928316179055600654610323913091165f19610347565b610339306b033b2e3c9fd0803ce800000061046a565b505050505050505050610891565b6001600160a01b0383166103a95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610149565b6001600160a01b03821661040a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610149565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166104c05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610149565b8060025f8282546104d1919061087e565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b80516001600160a01b0381168114610542575f80fd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011261056a575f80fd5b81516001600160401b0381111561058357610583610547565b604051601f8201601f19908116603f011681016001600160401b03811182821017156105b1576105b1610547565b6040528181528382016020018510156105c8575f80fd5b8160208501602083015e5f918101602001919091529392505050565b80518015158114610542575f80fd5b5f805f805f805f805f6101208a8c03121561060c575f80fd5b6106158a61052c565b985061062360208b0161052c565b60408b015160608c015160808d015160a08e0151939b50919950975095506001600160401b03811115610654575f80fd5b6106608c828d0161055b565b60c08c015190955090506001600160401b0381111561067d575f80fd5b6106898c828d0161055b565b60e08c015190945090506001600160401b038111156106a6575f80fd5b6106b28c828d0161055b565b9250506106c26101008b016105e4565b90509295985092959850929598565b600181811c908216806106e557607f821691505b60208210810361070357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561052757805f5260205f20601f840160051c8101602085101561072e5750805b601f840160051c820191505b8181101561074d575f815560010161073a565b5050505050565b81516001600160401b0381111561076d5761076d610547565b6107818161077b84546106d1565b84610709565b6020601f8211600181146107b3575f831561079c5750848201515b5f19600385901b1c1916600184901b17845561074d565b5f84815260208120601f198516915b828110156107e257878501518255602094850194600190920191016107c2565b50848210156107ff57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176108395761083961080e565b92915050565b5f8261085957634e487b7160e01b5f52601260045260245ffd5b500490565b5f6020828403121561086e575f80fd5b6108778261052c565b9392505050565b808201808211156108395761083961080e565b61269c8061089e5f395ff3fe60806040526004361061023d575f3560e01c8063735de9f711610134578063b198155d116100b3578063cf602ebc11610078578063cf602ebc14610657578063d89738c114610676578063dabaae111461068b578063dd62ed3e1461069f578063e4860339146106be578063ee662922146106e9575f80fd5b8063b198155d146105d0578063baa9e531146105ef578063be7ed94714610604578063c464fe6514610623578063cc1776d314610642575f80fd5b80639b4dc8cc116100f95780639b4dc8cc1461053f578063a24bcf461461055e578063a457c2d71461057d578063a9059cbb1461059c578063aa4bde28146105bb575f80fd5b8063735de9f7146104c55780637900692a146104e45780637b1e9cf8146104f8578063902d55a51461050c57806395d89b411461052b575f80fd5b8063313ce567116101c05780634f7041a5116101855780634f7041a5146104375780635c95eb521461044c5780636fc505261461046757806370a082311461047c57806372e1a09a146104b0575f80fd5b8063313ce5671461039e57806339509351146103b95780633fccbdff146103d857806342e94c90146103f75780634ed4926914610422575f80fd5b80631747a57b116102065780631747a57b1461030c57806318160ddd1461032c5780631ae947f71461034057806323b872dd146103605780632dc0562d1461037f575f80fd5b80620b46f81461024157806306fdde03146102685780630752881a1461028957806308f59fbc1461029e578063095ea7b3146102dd575b5f80fd5b34801561024c575f80fd5b50610255600281565b6040519081526020015b60405180910390f35b348015610273575f80fd5b5061027c610707565b60405161025f91906122c2565b61029c61029736600461230b565b610797565b005b3480156102a9575f80fd5b506102c573cde357abbdf15da7cce4b51ce70a1d0f08dfb78281565b6040516001600160a01b03909116815260200161025f565b3480156102e8575f80fd5b506102fc6102f736600461230b565b610ada565b604051901515815260200161025f565b348015610317575f80fd5b506009546102fc90600160a01b900460ff1681565b348015610337575f80fd5b50600254610255565b34801561034b575f80fd5b506009546102fc90600160a81b900460ff1681565b34801561036b575f80fd5b506102fc61037a366004612335565b610af3565b34801561038a575f80fd5b506009546102c5906001600160a01b031681565b3480156103a9575f80fd5b506040516012815260200161025f565b3480156103c4575f80fd5b506102fc6103d336600461230b565b610b16565b3480156103e3575f80fd5b506102556103f236600461230b565b610b37565b348015610402575f80fd5b50610255610411366004612373565b60106020525f908152604090205481565b34801561042d575f80fd5b50610255600f5481565b348015610442575f80fd5b50610255600d5481565b348015610457575f80fd5b50610255673782dace9d90000081565b348015610472575f80fd5b506102556103e881565b348015610487575f80fd5b50610255610496366004612373565b6001600160a01b03165f9081526020819052604090205490565b3480156104bb575f80fd5b50610255600a5481565b3480156104d0575f80fd5b506006546102c5906001600160a01b031681565b3480156104ef575f80fd5b5061029c610c79565b348015610503575f80fd5b5061027c610cde565b348015610517575f80fd5b506102556b033b2e3c9fd0803ce800000081565b348015610536575f80fd5b5061027c610d6a565b34801561054a575f80fd5b506007546102c5906001600160a01b031681565b348015610569575f80fd5b50610255610578366004612395565b610d79565b348015610588575f80fd5b506102fc61059736600461230b565b610e65565b3480156105a7575f80fd5b506102fc6105b636600461230b565b610edf565b3480156105c6575f80fd5b50610255600c5481565b3480156105db575f80fd5b506102556b0295be96e64066972000000081565b3480156105fa575f80fd5b50610255600b5481565b34801561060f575f80fd5b5061029c61061e366004612395565b610eec565b34801561062e575f80fd5b5061029c61063d36600461230b565b610f5e565b34801561064d575f80fd5b50610255600e5481565b348015610662575f80fd5b506102556106713660046123ac565b611589565b348015610681575f80fd5b5061025560055481565b348015610696575f80fd5b5061025561161b565b3480156106aa575f80fd5b506102556106b93660046123cc565b61167c565b3480156106c9575f80fd5b506102556106d8366004612373565b60116020525f908152604090205481565b3480156106f4575f80fd5b506102556aa56fa5b99019a5c800000081565b60606003805461071690612403565b80601f016020809104026020016040519081016040528092919081815260200182805461074290612403565b801561078d5780601f106107645761010080835404028352916020019161078d565b820191905f5260205f20905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b600954600160a01b900460ff16156107ca5760405162461bcd60e51b81526004016107c19061243b565b60405180910390fd5b5f34116108125760405162461bcd60e51b815260206004820152601660248201527553656e642045544820746f2062757920746f6b656e7360501b60448201526064016107c1565b5f6064610820600234612494565b61082a91906124ab565b90505f61083782346124ca565b90505f61084382610d79565b90505f61085083836124ab565b90505f3461085c6116a6565b036108a05750600b54819061087d906b0295be96e6406697200000006124ca565b8311156108a057600b5461089d906b0295be96e6406697200000006124ca565b92505b82600b5f8282546108b191906124dd565b90915550506001600160a01b0387165f90815260106020526040812080548692906108dd9084906124dd565b90915550505f81900361093a578583101561093a5760405162461bcd60e51b815260206004820152601b60248201527f536c69707061676520416d6f756e74205265737472696374696f6e000000000060448201526064016107c1565b5f600d5411801561095957506009546001600160a01b03888116911614155b156109cf575f6064600d548561096f9190612494565b61097991906124ab565b90505f61098682866124ca565b905081600f5461099691906124dd565b600f556001600160a01b0389165f90815260116020526040812080548392906109c09084906124dd565b909155509094506109fc915050565b6001600160a01b0387165f90815260116020526040812080548592906109f69084906124dd565b90915550505b83600a5f828254610a0d91906124dd565b90915550610a1e90503088856116dd565b6040515f9073cde357abbdf15da7cce4b51ce70a1d0f08dfb7829087908381818185875af1925050503d805f8114610a71576040519150601f19603f3d011682016040523d82523d5f602084013e610a76565b606091505b50508091505080610a995760405162461bcd60e51b81526004016107c1906124f0565b673782dace9d9000004710158015610abb5750600954600160a01b900460ff16155b15610ad057610ac8611a70565b610ad0611c0c565b5050505050505050565b5f33610ae7818585611d54565b60019150505b92915050565b5f33610b00858285611e77565b610b0b8585856116dd565b506001949350505050565b5f33610ae7818585610b28838361167c565b610b3291906124dd565b611d54565b6001600160a01b0382165f9081526011602052604081205482811115610b9f5760405162461bcd60e51b815260206004820152601f60248201527f496e73756666696369656e74207573657220746f6b656e2062616c616e63650060448201526064016107c1565b6009545f90600160a81b900460ff16610bea576001600160a01b0385165f908152601060205260409020548290610bd7908690612494565b610be191906124ab565b92505050610aed565b600a546001600160a01b0386165f908152601060205260409020541015610c69576001600160a01b0385165f90815260106020526040902054600a54610c3091906124ca565b9050610c3d6005826124ab565b6001600160a01b0386165f90815260106020526040902054909150610c6290826124dd565b9050610c6e565b50600a545b81610bd78583612494565b6009546001600160a01b03163214610cd35760405162461bcd60e51b815260206004820152601a60248201527f556e617574686f72697a656420526573657420417474656d707400000000000060448201526064016107c1565b5f600d819055600e55565b60088054610ceb90612403565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1790612403565b8015610d625780601f10610d3957610100808354040283529160200191610d62565b820191905f5260205f20905b815481529060010190602001808311610d4557829003601f168201915b505050505081565b60606004805461071690612403565b5f673782dace9d90000082600a54610d9191906124dd565b1115610ddb5760405162461bcd60e51b8152602060048201526019602482015278131a5c5d5a591a5d1e481d185c99d95d08195e18d959591959603a1b60448201526064016107c1565b5f610de4611eef565b90505f673782dace9d900000610dfb6006866124ab565b600a54610e0891906124dd565b6064610e166103e886612494565b610e2091906124ab565b610e2a9190612494565b610e3491906124ab565b610e3e90836124dd565b905080610e5385670de0b6b3a7640000612494565b610e5d91906124ab565b949350505050565b5f3381610e72828661167c565b905083811015610ed25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107c1565b610b0b8286868403611d54565b5f33610ae78185856116dd565b6009546001600160a01b03163214610f465760405162461bcd60e51b815260206004820152601a60248201527f556e617574686f72697a656420526573657420417474656d707400000000000060448201526064016107c1565b610f5881670de0b6b3a7640000612494565b60055550565b600954600160a01b900460ff1615610f885760405162461bcd60e51b81526004016107c19061243b565b5f8111610fd75760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016107c1565b5f610fe28383610b37565b90506b033b2e3c9fd0803ce800000082611010306001600160a01b03165f9081526020819052604090205490565b61101a91906124dd565b0361105557506009544790600160a81b900460ff1661104c576001600160a01b0383165f908152601060205260408120555b5f600a55611393565b600954600160a81b900460ff166110b0576001600160a01b0383165f908152601060205260408120805483929061108d9084906124ca565b9250508190555080600a5f8282546110a591906124ca565b909155506113939050565b6001600160a01b0383165f9081526010602052604090205481111561137c575f808311801561110e57506001600160a01b0384165f90815260116020526040902054606490611100906019612494565b61110a91906124ab565b8311155b1561114a576001600160a01b0384165f90815260106020526040902054606490611139906019612494565b61114391906124ab565b9050611320565b6001600160a01b0384165f90815260116020526040902054606490611170906019612494565b61117a91906124ab565b83101580156111b857506001600160a01b0384165f908152601160205260409020546064906111aa906032612494565b6111b491906124ab565b8311155b156111e3576001600160a01b0384165f90815260106020526040902054606490611139906032612494565b6001600160a01b0384165f90815260116020526040902054606490611209906032612494565b61121391906124ab565b831015801561125157506001600160a01b0384165f9081526011602052604090205460649061124390604b612494565b61124d91906124ab565b8311155b1561127c576001600160a01b0384165f9081526010602052604090205460649061113990604b612494565b6001600160a01b0384165f908152601160205260409020546064906112a290604b612494565b6112ac91906124ab565b83101580156112e957506001600160a01b0384165f908152601160205260409020546064906112db9082612494565b6112e591906124ab565b8311155b15611320576001600160a01b0384165f908152601060205260409020546064906113139082612494565b61131d91906124ab565b90505b6001600160a01b0384165f908152601060205260409020546113439082906124ca565b6001600160a01b0385165f90815260106020526040812091909155600a80548492906113709084906124ca565b90915550611393915050565b80600a5f82825461138d91906124ca565b90915550505b5f60646113a1600284612494565b6113ab91906124ab565b90505f600e541180156113cc57506009546001600160a01b03858116911614155b15611444575f6064600e54856113e29190612494565b6113ec91906124ab565b90505f6113f982866124ca565b6001600160a01b0387165f908152601160205260408120805492935087929091906114259084906124ca565b9091555050600f546114389083906124dd565b600f5593506114719050565b6001600160a01b0384165f908152601160205260408120805485929061146b9084906124ca565b90915550505b82600b5f82825461148291906124ca565b9091555061149390508430856116dd565b5f6001600160a01b0385166114a883856124ca565b6040515f81818185875af1925050503d805f81146114e1576040519150601f19603f3d011682016040523d82523d5f602084013e6114e6565b606091505b505080915050806115095760405162461bcd60e51b81526004016107c1906124f0565b60405173cde357abbdf15da7cce4b51ce70a1d0f08dfb7829083905f81818185875af1925050503d805f811461155a576040519150601f19603f3d011682016040523d82523d5f602084013e61155f565b606091505b505080915050806115825760405162461bcd60e51b81526004016107c1906124f0565b5050505050565b5f806064611598600286612494565b6115a291906124ab565b90506115ae81856124ca565b93505f6115ba85610d79565b600d54909150156115f0575f6064600d54836115d69190612494565b6115e091906124ab565b90506115ec81836124ca565b9150505b60646115fc8583612494565b61160691906124ab565b935061161284826124ca565b95945050505050565b5f47673782dace9d9000001161166f5760405162461bcd60e51b8152602060048201526019602482015278131a5c5d5a591a5d1e481d185c99d95d08195e18d959591959603a1b60448201526064016107c1565b6116776116a6565b905090565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f6116b3600260646124ca565b600a546116c890673782dace9d9000006124ca565b6116d3906064612494565b61167791906124ab565b5f8060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561172f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117539190612519565b600954909150600160a01b900460ff16156119675760075461177e906001600160a01b031682611f2f565b5f600d5411801561179c57506007546001600160a01b038681169116145b80156117b657506009546001600160a01b03858116911614155b15611805576064600d54846117cb9190612494565b6117d591906124ab565b91505f6117e283856124ca565b905082600f546117f291906124dd565b600f55925082611803863085611fc4565b505b5f600e5411801561182357506007546001600160a01b038581169116145b801561183d57506009546001600160a01b03868116911614155b1561188c576064600e54846118529190612494565b61185c91906124ab565b91505f61186983856124ca565b905082600f5461187991906124dd565b600f5592508261188a863085611fc4565b505b6009546001600160a01b038581169116148015906118b857506007546001600160a01b03858116911614155b80156118cf57506001600160a01b03841661dead14155b1561191e57600c54836118f6866001600160a01b03165f9081526020819052604090205490565b61190091906124dd565b111561191e5760405162461bcd60e51b81526004016107c190612534565b611929858585611fc4565b6007546001600160a01b0386811691161480159061195557506007546001600160a01b03858116911614155b1561196257611962612166565b611582565b6009546001600160a01b0385811691161480159061198e57506001600160a01b0384163014155b80156119a857506007546001600160a01b03858116911614155b156119f757600c54836119cf866001600160a01b03165f9081526020819052604090205490565b6119d991906124dd565b11156119f75760405162461bcd60e51b81526004016107c190612534565b611a02858585611fc4565b6007546001600160a01b0390811690851603611582576001600160a01b03851630146115825760405162461bcd60e51b815260206004820152601b60248201527f496e76616c6964204164644c6971756964747920417474656d7074000000000060448201526064016107c1565b6009805460ff60a01b1916600160a01b17905560065460405163f305d71960e01b815230600482018190526aa56fa5b99019a5c800000060248301525f60448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990479060c40160606040518083038185885af1158015611af7573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611b1c9190612581565b50506007546040516370a0823160e01b81523060048201525f92506001600160a01b03909116906370a0823190602401602060405180830381865afa158015611b67573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b8b91906125ac565b60075460405163a9059cbb60e01b815261dead6004820152602481018390529192506001600160a01b03169063a9059cbb906044016020604051808303815f875af1158015611bdc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c0091906125c3565b50611c09612166565b50565b600f545f9015611c8857600f546040516370a0823160e01b81523060048201819052906370a0823190602401602060405180830381865afa158015611c53573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c7791906125ac565b611c8191906124ca565b9050611ce9565b6040516370a0823160e01b81523060048201819052906370a0823190602401602060405180830381865afa158015611cc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ce691906125ac565b90505b60405163a9059cbb60e01b815261dead600482015260248101829052309063a9059cbb906044016020604051808303815f875af1158015611d2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d5091906125c3565b5050565b6001600160a01b038316611db65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c1565b6001600160a01b038216611e175760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c1565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f611e82848461167c565b90505f198114611ee95781811015611edc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107c1565b611ee98484848403611d54565b50505050565b5f610177611f0b6103e86b0295be96e640669720000000612494565b611f1591906124ab565b6116d3673782dace9d900000670de0b6b3a7640000612494565b5f19600c5403611f3d575050565b6040516370a0823160e01b81526001600160a01b0383811660048301525f91908316906370a0823190602401602060405180830381865afa158015611f84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fa891906125ac565b90506753444835ec5800008110611fbf575f19600c555b505050565b6001600160a01b0383166120285760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107c1565b6001600160a01b03821661208a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107c1565b6001600160a01b0383165f90815260208190526040902054818110156121015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107c1565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611ee9565b600554600f54101561217457565b61217f600f54612185565b5f600f55565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106121b8576121b86125e2565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561220f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122339190612519565b81600181518110612246576122466125e2565b6001600160a01b03928316602091820292909201015260065460095460405163791ac94760e01b81529183169263791ac947926122919287925f9288929091169042906004016125f6565b5f604051808303815f87803b1580156122a8575f80fd5b505af11580156122ba573d5f803e3d5ffd5b505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611c09575f80fd5b5f806040838503121561231c575f80fd5b8235612327816122f7565b946020939093013593505050565b5f805f60608486031215612347575f80fd5b8335612352816122f7565b92506020840135612362816122f7565b929592945050506040919091013590565b5f60208284031215612383575f80fd5b813561238e816122f7565b9392505050565b5f602082840312156123a5575f80fd5b5035919050565b5f80604083850312156123bd575f80fd5b50508035926020909101359150565b5f80604083850312156123dd575f80fd5b82356123e8816122f7565b915060208301356123f8816122f7565b809150509250929050565b600181811c9082168061241757607f821691505b60208210810361243557634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526025908201527f4c697175696469747920697320616c726561647920616464656420746f20556e604082015264069737761760dc1b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610aed57610aed612480565b5f826124c557634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610aed57610aed612480565b80820180821115610aed57610aed612480565b6020808252600f908201526e151c985b9cd9995c8819985a5b1959608a1b604082015260600190565b5f60208284031215612529575f80fd5b815161238e816122f7565b6020808252602d908201527f5472616e7366657220616d6f756e74206578636565647320746865206d61782060408201526c1dd85b1b195d08185b5bdd5b9d609a1b606082015260800190565b5f805f60608486031215612593575f80fd5b5050815160208301516040909301519094929350919050565b5f602082840312156125bc575f80fd5b5051919050565b5f602082840312156125d3575f80fd5b8151801515811461238e575f80fd5b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156126465783516001600160a01b031683526020938401939092019160010161261f565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220abb371368a1b1c67f2d88909d3ef726517b4d91bea478eea0df0fbdf0078171164736f6c634300081a00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000002e2ce7a7cf8bf02361153451939d8b81794632de0000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000842756c6c6143617400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044243415400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005668747470733a2f2f62756c6c612d66756e2d76622e73332e65752d6e6f7274682d312e616d617a6f6e6177732e636f6d2f6d6173636f745f796237616134376365625f32303234303930395f3137333835312e706e6700000000000000000000

Deployed Bytecode

0x60806040526004361061023d575f3560e01c8063735de9f711610134578063b198155d116100b3578063cf602ebc11610078578063cf602ebc14610657578063d89738c114610676578063dabaae111461068b578063dd62ed3e1461069f578063e4860339146106be578063ee662922146106e9575f80fd5b8063b198155d146105d0578063baa9e531146105ef578063be7ed94714610604578063c464fe6514610623578063cc1776d314610642575f80fd5b80639b4dc8cc116100f95780639b4dc8cc1461053f578063a24bcf461461055e578063a457c2d71461057d578063a9059cbb1461059c578063aa4bde28146105bb575f80fd5b8063735de9f7146104c55780637900692a146104e45780637b1e9cf8146104f8578063902d55a51461050c57806395d89b411461052b575f80fd5b8063313ce567116101c05780634f7041a5116101855780634f7041a5146104375780635c95eb521461044c5780636fc505261461046757806370a082311461047c57806372e1a09a146104b0575f80fd5b8063313ce5671461039e57806339509351146103b95780633fccbdff146103d857806342e94c90146103f75780634ed4926914610422575f80fd5b80631747a57b116102065780631747a57b1461030c57806318160ddd1461032c5780631ae947f71461034057806323b872dd146103605780632dc0562d1461037f575f80fd5b80620b46f81461024157806306fdde03146102685780630752881a1461028957806308f59fbc1461029e578063095ea7b3146102dd575b5f80fd5b34801561024c575f80fd5b50610255600281565b6040519081526020015b60405180910390f35b348015610273575f80fd5b5061027c610707565b60405161025f91906122c2565b61029c61029736600461230b565b610797565b005b3480156102a9575f80fd5b506102c573cde357abbdf15da7cce4b51ce70a1d0f08dfb78281565b6040516001600160a01b03909116815260200161025f565b3480156102e8575f80fd5b506102fc6102f736600461230b565b610ada565b604051901515815260200161025f565b348015610317575f80fd5b506009546102fc90600160a01b900460ff1681565b348015610337575f80fd5b50600254610255565b34801561034b575f80fd5b506009546102fc90600160a81b900460ff1681565b34801561036b575f80fd5b506102fc61037a366004612335565b610af3565b34801561038a575f80fd5b506009546102c5906001600160a01b031681565b3480156103a9575f80fd5b506040516012815260200161025f565b3480156103c4575f80fd5b506102fc6103d336600461230b565b610b16565b3480156103e3575f80fd5b506102556103f236600461230b565b610b37565b348015610402575f80fd5b50610255610411366004612373565b60106020525f908152604090205481565b34801561042d575f80fd5b50610255600f5481565b348015610442575f80fd5b50610255600d5481565b348015610457575f80fd5b50610255673782dace9d90000081565b348015610472575f80fd5b506102556103e881565b348015610487575f80fd5b50610255610496366004612373565b6001600160a01b03165f9081526020819052604090205490565b3480156104bb575f80fd5b50610255600a5481565b3480156104d0575f80fd5b506006546102c5906001600160a01b031681565b3480156104ef575f80fd5b5061029c610c79565b348015610503575f80fd5b5061027c610cde565b348015610517575f80fd5b506102556b033b2e3c9fd0803ce800000081565b348015610536575f80fd5b5061027c610d6a565b34801561054a575f80fd5b506007546102c5906001600160a01b031681565b348015610569575f80fd5b50610255610578366004612395565b610d79565b348015610588575f80fd5b506102fc61059736600461230b565b610e65565b3480156105a7575f80fd5b506102fc6105b636600461230b565b610edf565b3480156105c6575f80fd5b50610255600c5481565b3480156105db575f80fd5b506102556b0295be96e64066972000000081565b3480156105fa575f80fd5b50610255600b5481565b34801561060f575f80fd5b5061029c61061e366004612395565b610eec565b34801561062e575f80fd5b5061029c61063d36600461230b565b610f5e565b34801561064d575f80fd5b50610255600e5481565b348015610662575f80fd5b506102556106713660046123ac565b611589565b348015610681575f80fd5b5061025560055481565b348015610696575f80fd5b5061025561161b565b3480156106aa575f80fd5b506102556106b93660046123cc565b61167c565b3480156106c9575f80fd5b506102556106d8366004612373565b60116020525f908152604090205481565b3480156106f4575f80fd5b506102556aa56fa5b99019a5c800000081565b60606003805461071690612403565b80601f016020809104026020016040519081016040528092919081815260200182805461074290612403565b801561078d5780601f106107645761010080835404028352916020019161078d565b820191905f5260205f20905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b600954600160a01b900460ff16156107ca5760405162461bcd60e51b81526004016107c19061243b565b60405180910390fd5b5f34116108125760405162461bcd60e51b815260206004820152601660248201527553656e642045544820746f2062757920746f6b656e7360501b60448201526064016107c1565b5f6064610820600234612494565b61082a91906124ab565b90505f61083782346124ca565b90505f61084382610d79565b90505f61085083836124ab565b90505f3461085c6116a6565b036108a05750600b54819061087d906b0295be96e6406697200000006124ca565b8311156108a057600b5461089d906b0295be96e6406697200000006124ca565b92505b82600b5f8282546108b191906124dd565b90915550506001600160a01b0387165f90815260106020526040812080548692906108dd9084906124dd565b90915550505f81900361093a578583101561093a5760405162461bcd60e51b815260206004820152601b60248201527f536c69707061676520416d6f756e74205265737472696374696f6e000000000060448201526064016107c1565b5f600d5411801561095957506009546001600160a01b03888116911614155b156109cf575f6064600d548561096f9190612494565b61097991906124ab565b90505f61098682866124ca565b905081600f5461099691906124dd565b600f556001600160a01b0389165f90815260116020526040812080548392906109c09084906124dd565b909155509094506109fc915050565b6001600160a01b0387165f90815260116020526040812080548592906109f69084906124dd565b90915550505b83600a5f828254610a0d91906124dd565b90915550610a1e90503088856116dd565b6040515f9073cde357abbdf15da7cce4b51ce70a1d0f08dfb7829087908381818185875af1925050503d805f8114610a71576040519150601f19603f3d011682016040523d82523d5f602084013e610a76565b606091505b50508091505080610a995760405162461bcd60e51b81526004016107c1906124f0565b673782dace9d9000004710158015610abb5750600954600160a01b900460ff16155b15610ad057610ac8611a70565b610ad0611c0c565b5050505050505050565b5f33610ae7818585611d54565b60019150505b92915050565b5f33610b00858285611e77565b610b0b8585856116dd565b506001949350505050565b5f33610ae7818585610b28838361167c565b610b3291906124dd565b611d54565b6001600160a01b0382165f9081526011602052604081205482811115610b9f5760405162461bcd60e51b815260206004820152601f60248201527f496e73756666696369656e74207573657220746f6b656e2062616c616e63650060448201526064016107c1565b6009545f90600160a81b900460ff16610bea576001600160a01b0385165f908152601060205260409020548290610bd7908690612494565b610be191906124ab565b92505050610aed565b600a546001600160a01b0386165f908152601060205260409020541015610c69576001600160a01b0385165f90815260106020526040902054600a54610c3091906124ca565b9050610c3d6005826124ab565b6001600160a01b0386165f90815260106020526040902054909150610c6290826124dd565b9050610c6e565b50600a545b81610bd78583612494565b6009546001600160a01b03163214610cd35760405162461bcd60e51b815260206004820152601a60248201527f556e617574686f72697a656420526573657420417474656d707400000000000060448201526064016107c1565b5f600d819055600e55565b60088054610ceb90612403565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1790612403565b8015610d625780601f10610d3957610100808354040283529160200191610d62565b820191905f5260205f20905b815481529060010190602001808311610d4557829003601f168201915b505050505081565b60606004805461071690612403565b5f673782dace9d90000082600a54610d9191906124dd565b1115610ddb5760405162461bcd60e51b8152602060048201526019602482015278131a5c5d5a591a5d1e481d185c99d95d08195e18d959591959603a1b60448201526064016107c1565b5f610de4611eef565b90505f673782dace9d900000610dfb6006866124ab565b600a54610e0891906124dd565b6064610e166103e886612494565b610e2091906124ab565b610e2a9190612494565b610e3491906124ab565b610e3e90836124dd565b905080610e5385670de0b6b3a7640000612494565b610e5d91906124ab565b949350505050565b5f3381610e72828661167c565b905083811015610ed25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107c1565b610b0b8286868403611d54565b5f33610ae78185856116dd565b6009546001600160a01b03163214610f465760405162461bcd60e51b815260206004820152601a60248201527f556e617574686f72697a656420526573657420417474656d707400000000000060448201526064016107c1565b610f5881670de0b6b3a7640000612494565b60055550565b600954600160a01b900460ff1615610f885760405162461bcd60e51b81526004016107c19061243b565b5f8111610fd75760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016107c1565b5f610fe28383610b37565b90506b033b2e3c9fd0803ce800000082611010306001600160a01b03165f9081526020819052604090205490565b61101a91906124dd565b0361105557506009544790600160a81b900460ff1661104c576001600160a01b0383165f908152601060205260408120555b5f600a55611393565b600954600160a81b900460ff166110b0576001600160a01b0383165f908152601060205260408120805483929061108d9084906124ca565b9250508190555080600a5f8282546110a591906124ca565b909155506113939050565b6001600160a01b0383165f9081526010602052604090205481111561137c575f808311801561110e57506001600160a01b0384165f90815260116020526040902054606490611100906019612494565b61110a91906124ab565b8311155b1561114a576001600160a01b0384165f90815260106020526040902054606490611139906019612494565b61114391906124ab565b9050611320565b6001600160a01b0384165f90815260116020526040902054606490611170906019612494565b61117a91906124ab565b83101580156111b857506001600160a01b0384165f908152601160205260409020546064906111aa906032612494565b6111b491906124ab565b8311155b156111e3576001600160a01b0384165f90815260106020526040902054606490611139906032612494565b6001600160a01b0384165f90815260116020526040902054606490611209906032612494565b61121391906124ab565b831015801561125157506001600160a01b0384165f9081526011602052604090205460649061124390604b612494565b61124d91906124ab565b8311155b1561127c576001600160a01b0384165f9081526010602052604090205460649061113990604b612494565b6001600160a01b0384165f908152601160205260409020546064906112a290604b612494565b6112ac91906124ab565b83101580156112e957506001600160a01b0384165f908152601160205260409020546064906112db9082612494565b6112e591906124ab565b8311155b15611320576001600160a01b0384165f908152601060205260409020546064906113139082612494565b61131d91906124ab565b90505b6001600160a01b0384165f908152601060205260409020546113439082906124ca565b6001600160a01b0385165f90815260106020526040812091909155600a80548492906113709084906124ca565b90915550611393915050565b80600a5f82825461138d91906124ca565b90915550505b5f60646113a1600284612494565b6113ab91906124ab565b90505f600e541180156113cc57506009546001600160a01b03858116911614155b15611444575f6064600e54856113e29190612494565b6113ec91906124ab565b90505f6113f982866124ca565b6001600160a01b0387165f908152601160205260408120805492935087929091906114259084906124ca565b9091555050600f546114389083906124dd565b600f5593506114719050565b6001600160a01b0384165f908152601160205260408120805485929061146b9084906124ca565b90915550505b82600b5f82825461148291906124ca565b9091555061149390508430856116dd565b5f6001600160a01b0385166114a883856124ca565b6040515f81818185875af1925050503d805f81146114e1576040519150601f19603f3d011682016040523d82523d5f602084013e6114e6565b606091505b505080915050806115095760405162461bcd60e51b81526004016107c1906124f0565b60405173cde357abbdf15da7cce4b51ce70a1d0f08dfb7829083905f81818185875af1925050503d805f811461155a576040519150601f19603f3d011682016040523d82523d5f602084013e61155f565b606091505b505080915050806115825760405162461bcd60e51b81526004016107c1906124f0565b5050505050565b5f806064611598600286612494565b6115a291906124ab565b90506115ae81856124ca565b93505f6115ba85610d79565b600d54909150156115f0575f6064600d54836115d69190612494565b6115e091906124ab565b90506115ec81836124ca565b9150505b60646115fc8583612494565b61160691906124ab565b935061161284826124ca565b95945050505050565b5f47673782dace9d9000001161166f5760405162461bcd60e51b8152602060048201526019602482015278131a5c5d5a591a5d1e481d185c99d95d08195e18d959591959603a1b60448201526064016107c1565b6116776116a6565b905090565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f6116b3600260646124ca565b600a546116c890673782dace9d9000006124ca565b6116d3906064612494565b61167791906124ab565b5f8060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561172f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117539190612519565b600954909150600160a01b900460ff16156119675760075461177e906001600160a01b031682611f2f565b5f600d5411801561179c57506007546001600160a01b038681169116145b80156117b657506009546001600160a01b03858116911614155b15611805576064600d54846117cb9190612494565b6117d591906124ab565b91505f6117e283856124ca565b905082600f546117f291906124dd565b600f55925082611803863085611fc4565b505b5f600e5411801561182357506007546001600160a01b038581169116145b801561183d57506009546001600160a01b03868116911614155b1561188c576064600e54846118529190612494565b61185c91906124ab565b91505f61186983856124ca565b905082600f5461187991906124dd565b600f5592508261188a863085611fc4565b505b6009546001600160a01b038581169116148015906118b857506007546001600160a01b03858116911614155b80156118cf57506001600160a01b03841661dead14155b1561191e57600c54836118f6866001600160a01b03165f9081526020819052604090205490565b61190091906124dd565b111561191e5760405162461bcd60e51b81526004016107c190612534565b611929858585611fc4565b6007546001600160a01b0386811691161480159061195557506007546001600160a01b03858116911614155b1561196257611962612166565b611582565b6009546001600160a01b0385811691161480159061198e57506001600160a01b0384163014155b80156119a857506007546001600160a01b03858116911614155b156119f757600c54836119cf866001600160a01b03165f9081526020819052604090205490565b6119d991906124dd565b11156119f75760405162461bcd60e51b81526004016107c190612534565b611a02858585611fc4565b6007546001600160a01b0390811690851603611582576001600160a01b03851630146115825760405162461bcd60e51b815260206004820152601b60248201527f496e76616c6964204164644c6971756964747920417474656d7074000000000060448201526064016107c1565b6009805460ff60a01b1916600160a01b17905560065460405163f305d71960e01b815230600482018190526aa56fa5b99019a5c800000060248301525f60448301819052606483015260848201524260a48201526001600160a01b039091169063f305d71990479060c40160606040518083038185885af1158015611af7573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611b1c9190612581565b50506007546040516370a0823160e01b81523060048201525f92506001600160a01b03909116906370a0823190602401602060405180830381865afa158015611b67573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b8b91906125ac565b60075460405163a9059cbb60e01b815261dead6004820152602481018390529192506001600160a01b03169063a9059cbb906044016020604051808303815f875af1158015611bdc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c0091906125c3565b50611c09612166565b50565b600f545f9015611c8857600f546040516370a0823160e01b81523060048201819052906370a0823190602401602060405180830381865afa158015611c53573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c7791906125ac565b611c8191906124ca565b9050611ce9565b6040516370a0823160e01b81523060048201819052906370a0823190602401602060405180830381865afa158015611cc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ce691906125ac565b90505b60405163a9059cbb60e01b815261dead600482015260248101829052309063a9059cbb906044016020604051808303815f875af1158015611d2c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d5091906125c3565b5050565b6001600160a01b038316611db65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107c1565b6001600160a01b038216611e175760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107c1565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f611e82848461167c565b90505f198114611ee95781811015611edc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107c1565b611ee98484848403611d54565b50505050565b5f610177611f0b6103e86b0295be96e640669720000000612494565b611f1591906124ab565b6116d3673782dace9d900000670de0b6b3a7640000612494565b5f19600c5403611f3d575050565b6040516370a0823160e01b81526001600160a01b0383811660048301525f91908316906370a0823190602401602060405180830381865afa158015611f84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fa891906125ac565b90506753444835ec5800008110611fbf575f19600c555b505050565b6001600160a01b0383166120285760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107c1565b6001600160a01b03821661208a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107c1565b6001600160a01b0383165f90815260208190526040902054818110156121015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107c1565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611ee9565b600554600f54101561217457565b61217f600f54612185565b5f600f55565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106121b8576121b86125e2565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561220f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122339190612519565b81600181518110612246576122466125e2565b6001600160a01b03928316602091820292909201015260065460095460405163791ac94760e01b81529183169263791ac947926122919287925f9288929091169042906004016125f6565b5f604051808303815f87803b1580156122a8575f80fd5b505af11580156122ba573d5f803e3d5ffd5b505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611c09575f80fd5b5f806040838503121561231c575f80fd5b8235612327816122f7565b946020939093013593505050565b5f805f60608486031215612347575f80fd5b8335612352816122f7565b92506020840135612362816122f7565b929592945050506040919091013590565b5f60208284031215612383575f80fd5b813561238e816122f7565b9392505050565b5f602082840312156123a5575f80fd5b5035919050565b5f80604083850312156123bd575f80fd5b50508035926020909101359150565b5f80604083850312156123dd575f80fd5b82356123e8816122f7565b915060208301356123f8816122f7565b809150509250929050565b600181811c9082168061241757607f821691505b60208210810361243557634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526025908201527f4c697175696469747920697320616c726561647920616464656420746f20556e604082015264069737761760dc1b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610aed57610aed612480565b5f826124c557634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610aed57610aed612480565b80820180821115610aed57610aed612480565b6020808252600f908201526e151c985b9cd9995c8819985a5b1959608a1b604082015260600190565b5f60208284031215612529575f80fd5b815161238e816122f7565b6020808252602d908201527f5472616e7366657220616d6f756e74206578636565647320746865206d61782060408201526c1dd85b1b195d08185b5bdd5b9d609a1b606082015260800190565b5f805f60608486031215612593575f80fd5b5050815160208301516040909301519094929350919050565b5f602082840312156125bc575f80fd5b5051919050565b5f602082840312156125d3575f80fd5b8151801515811461238e575f80fd5b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156126465783516001600160a01b031683526020938401939092019160010161261f565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220abb371368a1b1c67f2d88909d3ef726517b4d91bea478eea0df0fbdf0078171164736f6c634300081a0033

Deployed Bytecode Sourcemap

147:16300:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;578:42;;;;;;;;;;;;619:1;578:42;;;;;160:25:7;;;148:2;133:18;578:42:6;;;;;;;;2198:110:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5634:1644:6:-;;;;;;:::i;:::-;;:::i;:::-;;752:101;;;;;;;;;;;;810:42;752:101;;;;;-1:-1:-1;;;;;1307:32:7;;;1289:51;;1277:2;1262:18;752:101:6;1127:219:7;4568:201:1;;;;;;;;;;-1:-1:-1;4568:201:1;;;;;:::i;:::-;;:::i;:::-;;;1516:14:7;;1509:22;1491:41;;1479:2;1464:18;4568:201:1;1351:187:7;1071:18:6;;;;;;;;;;-1:-1:-1;1071:18:6;;;;-1:-1:-1;;;1071:18:6;;;;;;3337:108:1;;;;;;;;;;-1:-1:-1;3425:12:1;;3337:108;;1095:17:6;;;;;;;;;;-1:-1:-1;1095:17:6;;;;-1:-1:-1;;;1095:17:6;;;;;;5349:261:1;;;;;;;;;;-1:-1:-1;5349:261:1;;;;;:::i;:::-;;:::i;1041:24:6:-;;;;;;;;;;-1:-1:-1;1041:24:6;;;;-1:-1:-1;;;;;1041:24:6;;;3179:93:1;;;;;;;;;;-1:-1:-1;3179:93:1;;3262:2;2406:36:7;;2394:2;2379:18;3179:93:1;2264:184:7;6019:238:1;;;;;;;;;;-1:-1:-1;6019:238:1;;;;;:::i;:::-;;:::i;12342:688:6:-;;;;;;;;;;-1:-1:-1;12342:688:6;;;;;:::i;:::-;;:::i;1471:48::-;;;;;;;;;;-1:-1:-1;1471:48:6;;;;;:::i;:::-;;;;;;;;;;;;;;1385:27;;;;;;;;;;;;;;;;1330:21;;;;;;;;;;;;;;;;644:53;;;;;;;;;;;;687:10;644:53;;472:59;;;;;;;;;;;;527:4;472:59;;3508:127:1;;;;;;;;;;-1:-1:-1;3508:127:1;;;;;:::i;:::-;-1:-1:-1;;;;;3609:18:1;3582:7;3609:18;;;;;;;;;;;;3508:127;1118:29:6;;;;;;;;;;;;;;;;941:37;;;;;;;;;;-1:-1:-1;941:37:6;;;;-1:-1:-1;;;;;941:37:6;;;13468:96;;;;;;;;;;;;;:::i;1014:21::-;;;;;;;;;;;;;:::i;180:58::-;;;;;;;;;;;;219:19;180:58;;2427:104:1;;;;;;;;;;;;;:::i;984:24:6:-;;;;;;;;;;-1:-1:-1;984:24:6;;;;-1:-1:-1;;;;;984:24:6;;;11599:452;;;;;;;;;;-1:-1:-1;11599:452:6;;;;;:::i;:::-;;:::i;6760:436:1:-;;;;;;;;;;-1:-1:-1;6760:436:1;;;;;:::i;:::-;;:::i;3841:193::-;;;;;;;;;;-1:-1:-1;3841:193:1;;;;;:::i;:::-;;:::i;1250:30:6:-;;;;;;;;;;;;;;;;273:61;;;;;;;;;;;;316:18;273:61;;1189:32;;;;;;;;;;;;;;;;13266:127;;;;;;;;;;-1:-1:-1;13266:127:6;;;;;:::i;:::-;;:::i;7476:2588::-;;;;;;;;;;-1:-1:-1;7476:2588:6;;;;;:::i;:::-;;:::i;1357:22::-;;;;;;;;;;;;;;;;10767:565;;;;;;;;;;-1:-1:-1;10767:565:6;;;;;:::i;:::-;;:::i;885:49::-;;;;;;;;;;;;;;;;10313:194;;;;;;;;;;;;;:::i;4097:151:1:-;;;;;;;;;;-1:-1:-1;4097:151:1;;;;;:::i;:::-;;:::i;1552:41:6:-;;;;;;;;;;-1:-1:-1;1552:41:6;;;;;:::i;:::-;;;;;;;;;;;;;;371:61;;;;;;;;;;;;414:18;371:61;;2198:110:1;2252:13;2295:5;2288:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2198:110;:::o;5634:1644:6:-;5727:6;;-1:-1:-1;;;5727:6:6;;;;5726:7;5718:57;;;;-1:-1:-1;;;5718:57:6;;;;;;;:::i;:::-;;;;;;;;;5805:1;5793:9;:13;5785:48;;;;-1:-1:-1;;;5785:48:6;;4905:2:7;5785:48:6;;;4887:21:7;4944:2;4924:18;;;4917:30;-1:-1:-1;;;4963:18:7;;;4956:52;5025:18;;5785:48:6;4703:346:7;5785:48:6;5844:11;5887:3;5858:26;619:1;5858:9;:26;:::i;:::-;:32;;;;:::i;:::-;5844:46;-1:-1:-1;5900:17:6;5920:15;5844:46;5920:9;:15;:::i;:::-;5900:35;;5946:19;5968:31;5989:9;5968:20;:31::i;:::-;5946:53;-1:-1:-1;6009:20:6;6032:21;6044:9;5946:53;6032:21;:::i;:::-;6009:44;;6064:18;6122:9;6097:21;:19;:21::i;:::-;:34;6093:248;;-1:-1:-1;6229:17:6;;6161:12;;6210:36;;316:18;6210:36;:::i;:::-;6195:11;:52;6192:139;;;6299:17;;6280:36;;316:18;6280:36;:::i;:::-;6266:50;;6192:139;6372:11;6351:17;;:32;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;6397:20:6;;;;;;:13;:20;;;;;:33;;6421:9;;6397:20;:33;;6421:9;;6397:33;:::i;:::-;;;;-1:-1:-1;;6463:1:6;6449:15;;;6446:113;;6502:14;6487:11;:29;;6479:69;;;;-1:-1:-1;;;6479:69:6;;6046:2:7;6479:69:6;;;6028:21:7;6085:2;6065:18;;;6058:30;6124:29;6104:18;;;6097:57;6171:18;;6479:69:6;5844:351:7;6479:69:6;6581:1;6572:6;;:10;:32;;;;-1:-1:-1;6595:9:6;;-1:-1:-1;;;;;6586:18:6;;;6595:9;;6586:18;;6572:32;6569:339;;;6619:11;6656:3;6647:6;;6633:11;:20;;;;:::i;:::-;:26;;;;:::i;:::-;6619:40;-1:-1:-1;6673:19:6;6695:17;6619:40;6695:11;:17;:::i;:::-;6673:39;;6756:3;6741:12;;:18;;;;:::i;:::-;6726:12;:33;-1:-1:-1;;;;;6773:13:6;;;;;;:6;:13;;;;;:28;;6790:11;;6773:13;:28;;6790:11;;6773:28;:::i;:::-;;;;-1:-1:-1;6829:11:6;;-1:-1:-1;6569:339:6;;-1:-1:-1;;6569:339:6;;-1:-1:-1;;;;;6869:13:6;;;;;;:6;:13;;;;;:28;;6886:11;;6869:13;:28;;6886:11;;6869:28;:::i;:::-;;;;-1:-1:-1;;6569:339:6;6936:9;6918:14;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;6956:44:6;;-1:-1:-1;6974:4:6;6981:5;6988:11;6956:9;:44::i;:::-;7046:36;;7010:12;;810:42;;7074:3;;7010:12;7046:36;7010:12;7046:36;7074:3;810:42;7046:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7032:50;;;;;7100:7;7092:35;;;;-1:-1:-1;;;7092:35:6;;;;;;;:::i;:::-;687:10;7142:21;:41;;:52;;;;-1:-1:-1;7188:6:6;;-1:-1:-1;;;7188:6:6;;;;7187:7;7142:52;7138:134;;;7210:15;:13;:15::i;:::-;7239:22;:20;:22::i;:::-;5708:1570;;;;;;5634:1644;;:::o;4568:201:1:-;4651:4;736:10:0;4707:32:1;736:10:0;4723:7:1;4732:6;4707:8;:32::i;:::-;4757:4;4750:11;;;4568:201;;;;;:::o;5349:261::-;5446:4;736:10:0;5504:38:1;5520:4;736:10:0;5535:6:1;5504:15;:38::i;:::-;5553:27;5563:4;5569:2;5573:6;5553:9;:27::i;:::-;-1:-1:-1;5598:4:1;;5349:261;-1:-1:-1;;;;5349:261:1:o;6019:238::-;6107:4;736:10:0;6163:64:1;736:10:0;6179:7:1;6216:10;6188:25;736:10:0;6179:7:1;6188:9;:25::i;:::-;:38;;;;:::i;:::-;6163:8;:64::i;12342:688:6:-;-1:-1:-1;;;;;12465:12:6;;12425:7;12465:12;;;:6;:12;;;;;;12495:25;;;;12487:69;;;;-1:-1:-1;;;12487:69:6;;6956:2:7;12487:69:6;;;6938:21:7;6995:2;6975:18;;;6968:30;7034:33;7014:18;;;7007:61;7085:18;;12487:69:6;6754:355:7;12487:69:6;12594:5;;12567:13;;-1:-1:-1;;;12594:5:6;;;;12590:434;;-1:-1:-1;;;;;12622:19:6;;;;;;:13;:19;;;;;;12658:10;;12622:33;;12644:11;;12622:33;:::i;:::-;:46;;;;:::i;:::-;12615:53;;;;;;12590:434;12722:14;;-1:-1:-1;;;;;12700:19:6;;;;;;:13;:19;;;;;;:36;12697:264;;;-1:-1:-1;;;;;12780:19:6;;;;;;:13;:19;;;;;;12763:14;;:36;;12780:19;12763:36;:::i;:::-;12755:44;-1:-1:-1;12825:9:6;12833:1;12755:44;12825:9;:::i;:::-;-1:-1:-1;;;;;12868:19:6;;;;;;:13;:19;;;;;;12817:17;;-1:-1:-1;12860:27:6;;12817:17;12860:27;:::i;:::-;12852:35;;12697:264;;;-1:-1:-1;12932:14:6;;12697:264;13003:10;12981:19;12989:11;12981:5;:19;:::i;13468:96::-;2992:9;;-1:-1:-1;;;;;2992:9:6;2979;:22;2971:60;;;;-1:-1:-1;;;2971:60:6;;7316:2:7;2971:60:6;;;7298:21:7;7355:2;7335:18;;;7328:30;7394:28;7374:18;;;7367:56;7440:18;;2971:60:6;7114:350:7;2971:60:6;13535:1:::1;13526:6;:10:::0;;;13546:7:::1;:11:::0;13468:96::o;1014:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2427:104:1:-;2483:13;2516:7;2509:14;;;;;:::i;11599:452:6:-;11669:7;687:10;11713:9;11696:14;;:26;;;;:::i;:::-;:46;;11688:84;;;;-1:-1:-1;;;11688:84:6;;7671:2:7;11688:84:6;;;7653:21:7;7710:2;7690:18;;;7683:30;-1:-1:-1;;;7729:18:7;;;7722:55;7794:18;;11688:84:6;7469:349:7;11688:84:6;11783:25;11811:20;:18;:20::i;:::-;11783:48;-1:-1:-1;11841:18:6;687:10;11961:13;11973:1;11961:9;:13;:::i;:::-;11943:14;;:32;;;;:::i;:::-;11935:3;11884:48;527:4;11884:17;:48;:::i;:::-;:54;;;;:::i;:::-;11883:93;;;;:::i;:::-;:112;;;;:::i;:::-;11862:134;;:17;:134;:::i;:::-;11841:155;-1:-1:-1;11841:155:6;12013:18;:9;12025:6;12013:18;:::i;:::-;:31;;;;:::i;:::-;12006:38;11599:452;-1:-1:-1;;;;11599:452:6:o;6760:436:1:-;6853:4;736:10:0;6853:4:1;6936:25;736:10:0;6953:7:1;6936:9;:25::i;:::-;6909:52;;7000:15;6980:16;:35;;6972:85;;;;-1:-1:-1;;;6972:85:1;;8025:2:7;6972:85:1;;;8007:21:7;8064:2;8044:18;;;8037:30;8103:34;8083:18;;;8076:62;-1:-1:-1;;;8154:18:7;;;8147:35;8199:19;;6972:85:1;7823:401:7;6972:85:1;7093:60;7102:5;7109:7;7137:15;7118:16;:34;7093:8;:60::i;3841:193::-;3920:4;736:10:0;3976:28:1;736:10:0;3993:2:1;3997:6;3976:9;:28::i;13266:127:6:-;2992:9;;-1:-1:-1;;;;;2992:9:6;2979;:22;2971:60;;;;-1:-1:-1;;;2971:60:6;;7316:2:7;2971:60:6;;;7298:21:7;7355:2;7335:18;;;7328:30;7394:28;7374:18;;;7367:56;7440:18;;2971:60:6;7114:350:7;2971:60:6;13367:19:::1;:8:::0;13378::::1;13367:19;:::i;:::-;13347:17;:39:::0;-1:-1:-1;13266:127:6:o;7476:2588::-;7560:6;;-1:-1:-1;;;7560:6:6;;;;7559:7;7551:57;;;;-1:-1:-1;;;7551:57:6;;;;;;;:::i;:::-;7640:1;7626:11;:15;7618:57;;;;-1:-1:-1;;;7618:57:6;;8431:2:7;7618:57:6;;;8413:21:7;8470:2;8450:18;;;8443:30;8509:31;8489:18;;;8482:59;8558:18;;7618:57:6;8229:353:7;7618:57:6;7686:17;7706:38;7725:6;7732:11;7706:18;:38::i;:::-;7686:58;;219:19;7787:11;7760:24;7778:4;-1:-1:-1;;;;;3609:18:1;3582:7;3609:18;;;;;;;;;;;;3508:127;7760:24:6;:38;;;;:::i;:::-;7759:56;7755:1547;;-1:-1:-1;7883:5:6;;7843:21;;-1:-1:-1;;;7883:5:6;;;;7879:68;;-1:-1:-1;;;;;7907:21:6;;7931:1;7907:21;;;:13;:21;;;;;:25;7879:68;7978:1;7961:14;:18;7755:1547;;;8015:5;;-1:-1:-1;;;8015:5:6;;;;8011:1280;;-1:-1:-1;;;;;8060:21:6;;;;;;:13;:21;;;;;:34;;8085:9;;8060:21;:34;;8085:9;;8060:34;:::i;:::-;;;;;;;;8134:9;8116:14;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;8011:1280:6;;-1:-1:-1;8011:1280:6;;-1:-1:-1;;;;;8183:21:6;;;;;;:13;:21;;;;;;:33;-1:-1:-1;8180:1097:6;;;8240:14;8293:1;8279:11;:15;:61;;;;-1:-1:-1;;;;;;8314:14:6;;;;;;:6;:14;;;;;;8336:3;;8314:19;;8331:2;8314:19;:::i;:::-;:25;;;;:::i;:::-;8298:11;:42;;8279:61;8276:736;;;-1:-1:-1;;;;;8379:21:6;;;;;;:13;:21;;;;;;8408:3;;8379:26;;8403:2;8379:26;:::i;:::-;:32;;;;:::i;:::-;8367:44;;8276:736;;;-1:-1:-1;;;;;8460:14:6;;;;;;:6;:14;;;;;;8482:3;;8460:19;;8477:2;8460:19;:::i;:::-;:25;;;;:::i;:::-;8444:11;:42;;:88;;;;-1:-1:-1;;;;;;8506:14:6;;;;;;:6;:14;;;;;;8528:3;;8506:19;;8523:2;8506:19;:::i;:::-;:25;;;;:::i;:::-;8490:11;:42;;8444:88;8440:572;;;-1:-1:-1;;;;;8571:21:6;;;;;;:13;:21;;;;;;8600:3;;8571:26;;8595:2;8571:26;:::i;8440:572::-;-1:-1:-1;;;;;8652:14:6;;;;;;:6;:14;;;;;;8674:3;;8652:19;;8669:2;8652:19;:::i;:::-;:25;;;;:::i;:::-;8636:11;:42;;:88;;;;-1:-1:-1;;;;;;8698:14:6;;;;;;:6;:14;;;;;;8720:3;;8698:19;;8715:2;8698:19;:::i;:::-;:25;;;;:::i;:::-;8682:11;:42;;8636:88;8632:380;;;-1:-1:-1;;;;;8763:21:6;;;;;;:13;:21;;;;;;8792:3;;8763:26;;8787:2;8763:26;:::i;8632:380::-;-1:-1:-1;;;;;8844:14:6;;;;;;:6;:14;;;;;;8866:3;;8844:19;;8861:2;8844:19;:::i;:::-;:25;;;;:::i;:::-;8828:11;:42;;:89;;;;-1:-1:-1;;;;;;8890:14:6;;;;;;:6;:14;;;;;;8913:3;;8890:20;;8913:3;8890:20;:::i;:::-;:26;;;;:::i;:::-;8874:11;:43;;8828:89;8824:188;;;-1:-1:-1;;;;;8956:21:6;;;;;;:13;:21;;;;;;8986:3;;8956:27;;8986:3;8956:27;:::i;:::-;:33;;;;:::i;:::-;8944:45;;8824:188;-1:-1:-1;;;;;9061:21:6;;;;;;:13;:21;;;;;;:33;;9085:9;;9061:33;:::i;:::-;-1:-1:-1;;;;;9037:21:6;;;;;;:13;:21;;;;;:57;;;;9120:14;:27;;9138:9;;9037:21;9120:27;;9138:9;;9120:27;:::i;:::-;;;;-1:-1:-1;8180:1097:6;;-1:-1:-1;;8180:1097:6;;9249:9;9231:14;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;8180:1097:6;9311:11;9354:3;9325:26;619:1;9325:9;:26;:::i;:::-;:32;;;;:::i;:::-;9311:46;;9380:1;9370:7;;:11;:34;;;;-1:-1:-1;9395:9:6;;-1:-1:-1;;;;;9385:19:6;;;9395:9;;9385:19;;9370:34;9367:346;;;9419:11;9457:3;9447:7;;9433:11;:21;;;;:::i;:::-;:27;;;;:::i;:::-;9419:41;-1:-1:-1;9474:20:6;9497:17;9419:41;9497:11;:17;:::i;:::-;-1:-1:-1;;;;;9528:14:6;;;;;;:6;:14;;;;;:29;;9474:40;;-1:-1:-1;9546:11:6;;9528:14;;;:29;;9546:11;;9528:29;:::i;:::-;;;;-1:-1:-1;;9586:12:6;;:18;;9601:3;;9586:18;:::i;:::-;9571:12;:33;9632:12;-1:-1:-1;9367:346:6;;-1:-1:-1;9367:346:6;;-1:-1:-1;;;;;9673:14:6;;;;;;:6;:14;;;;;:29;;9691:11;;9673:14;:29;;9691:11;;9673:29;:::i;:::-;;;;-1:-1:-1;;9367:346:6;9745:11;9724:17;;:32;;;;;;;:::i;:::-;;;;-1:-1:-1;9776:45:6;;-1:-1:-1;9786:6:6;9802:4;9809:11;9776:9;:45::i;:::-;9831:12;-1:-1:-1;;;;;9867:11:6;;9886:15;9898:3;9886:9;:15;:::i;:::-;9867:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9853:53;;;;;9924:7;9916:35;;;;-1:-1:-1;;;9916:35:6;;;;;;;:::i;:::-;9975:36;;810:42;;10003:3;;9975:36;;;;10003:3;810:42;9975:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9961:50;;;;;10029:7;10021:35;;;;-1:-1:-1;;;10021:35:6;;;;;;;:::i;:::-;7541:2523;;;7476:2588;;:::o;10767:565::-;10850:7;;10912:3;10883:26;619:1;10883:9;:26;:::i;:::-;:32;;;;:::i;:::-;10869:46;-1:-1:-1;10937:15:6;10869:46;10937:9;:15;:::i;:::-;10925:27;;10963:22;10988:31;11009:9;10988:20;:31::i;:::-;11033:6;;10963:56;;-1:-1:-1;11033:10:6;11029:135;;11059:11;11099:3;11090:6;;11073:14;:23;;;;:::i;:::-;:29;;;;:::i;:::-;11059:43;-1:-1:-1;11133:20:6;11059:43;11133:14;:20;:::i;:::-;11116:37;;11045:119;11029:135;11230:3;11193:34;11210:17;11193:14;:34;:::i;:::-;:40;;;;:::i;:::-;11173:60;-1:-1:-1;11260:34:6;11173:60;11260:14;:34;:::i;:::-;11243:51;10767:565;-1:-1:-1;;;;;10767:565:6:o;10313:194::-;10364:7;10410:21;687:10;10391:40;10383:78;;;;-1:-1:-1;;;10383:78:6;;7671:2:7;10383:78:6;;;7653:21:7;7710:2;7690:18;;;7683:30;-1:-1:-1;;;7729:18:7;;;7722:55;7794:18;;10383:78:6;7469:349:7;10383:78:6;10479:21;:19;:21::i;:::-;10472:28;;10313:194;:::o;4097:151:1:-;-1:-1:-1;;;;;4213:18:1;;;4186:7;4213:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4097:151::o;15340:158:6:-;15394:7;15470:20;619:1;15470:3;:20;:::i;:::-;15445:14;;15426:33;;687:10;15426:33;:::i;:::-;15425:41;;15463:3;15425:41;:::i;:::-;:66;;;;:::i;3352:2034::-;3454:11;3479:13;3495;;;;;;;;;-1:-1:-1;;;;;3495:13:6;-1:-1:-1;;;;;3495:18:6;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3529:6;;3479:36;;-1:-1:-1;;;;3529:6:6;;;;3525:1855;;;3572:9;;3550:38;;-1:-1:-1;;;;;3572:9:6;3582:5;3550:21;:38::i;:::-;3650:1;3641:6;;:10;:33;;;;-1:-1:-1;3665:9:6;;-1:-1:-1;;;;;3655:19:6;;;3665:9;;3655:19;3641:33;:59;;;;-1:-1:-1;3691:9:6;;-1:-1:-1;;;;;3678:22:6;;;3691:9;;3678:22;;3641:59;3637:346;;;3747:3;3738:6;;3729;:15;;;;:::i;:::-;:21;;;;:::i;:::-;3723:27;-1:-1:-1;3772:19:6;3794:12;3723:27;3794:6;:12;:::i;:::-;3772:34;;3858:3;3843:12;;:18;;;;:::i;:::-;3828:12;:33;3892:11;-1:-1:-1;3892:11:6;3925:43;3941:6;3957:4;3964:3;3925:15;:43::i;:::-;3701:282;3637:346;4034:1;4024:7;;:11;:37;;;;-1:-1:-1;4052:9:6;;-1:-1:-1;;;;;4039:22:6;;;4052:9;;4039:22;4024:37;:59;;;;-1:-1:-1;4074:9:6;;-1:-1:-1;;;;;4065:18:6;;;4074:9;;4065:18;;4024:59;4020:347;;;4131:3;4121:7;;4112:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;4106:28;-1:-1:-1;4156:19:6;4178:12;4106:28;4178:6;:12;:::i;:::-;4156:34;;4242:3;4227:12;;:18;;;;:::i;:::-;4212:12;:33;4276:11;-1:-1:-1;4276:11:6;4309:43;4325:6;4341:4;4348:3;4309:15;:43::i;:::-;4084:283;4020:347;4398:9;;-1:-1:-1;;;;;4385:22:6;;;4398:9;;4385:22;;;;:48;;-1:-1:-1;4424:9:6;;-1:-1:-1;;;;;4411:22:6;;;4424:9;;4411:22;;4385:48;:116;;;;-1:-1:-1;;;;;;4437:64:6;;4458:42;4437:64;;4385:116;4381:270;;;4571:15;;4561:6;4529:29;4547:9;-1:-1:-1;;;;;3609:18:1;3582:7;3609:18;;;;;;;;;;;;3508:127;4529:29:6;:38;;;;:::i;:::-;:57;;4521:115;;;;-1:-1:-1;;;4521:115:6;;;;;;;:::i;:::-;4666:42;4682:6;4690:9;4701:6;4666:15;:42::i;:::-;4735:9;;-1:-1:-1;;;;;4725:19:6;;;4735:9;;4725:19;;;;:45;;-1:-1:-1;4761:9:6;;-1:-1:-1;;;;;4748:22:6;;;4761:9;;4748:22;;4725:45;4722:99;;;4789:17;:15;:17::i;:::-;3525:1855;;;4892:9;;-1:-1:-1;;;;;4879:22:6;;;4892:9;;4879:22;;;;:52;;-1:-1:-1;;;;;;4905:26:6;;4926:4;4905:26;;4879:52;:78;;;;-1:-1:-1;4948:9:6;;-1:-1:-1;;;;;4935:22:6;;;4948:9;;4935:22;;4879:78;4875:249;;;5044:15;;5034:6;5002:29;5020:9;-1:-1:-1;;;;;3609:18:1;3582:7;3609:18;;;;;;;;;;;;3508:127;5002:29:6;:38;;;;:::i;:::-;:57;;4994:115;;;;-1:-1:-1;;;4994:115:6;;;;;;;:::i;:::-;5138:42;5154:6;5162:9;5173:6;5138:15;:42::i;:::-;5265:9;;-1:-1:-1;;;;;5265:9:6;;;5252:22;;;;5249:121;;-1:-1:-1;;;;;5301:23:6;;5319:4;5301:23;5293:62;;;;-1:-1:-1;;;5293:62:6;;9459:2:7;5293:62:6;;;9441:21:7;9498:2;9478:18;;;9471:30;9537:29;9517:18;;;9510:57;9584:18;;5293:62:6;9257:351:7;13659:502:6;13704:6;:13;;-1:-1:-1;;;;13704:13:6;-1:-1:-1;;;13704:13:6;;;13727;;:214;;-1:-1:-1;;;13727:214:6;;13810:4;13727:214;;;9916:51:7;;;414:18:6;9983::7;;;9976:34;-1:-1:-1;10026:18:7;;;10019:34;;;10069:18;;;10062:34;10112:19;;;10105:61;13916:15:6;10182:19:7;;;10175:35;-1:-1:-1;;;;;13727:13:6;;;;:29;;13765:21;;9888:19:7;;13727:214:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;13976:9:6;;13969:42;;-1:-1:-1;;;13969:42:6;;14005:4;13969:42;;;1289:51:7;13952:14:6;;-1:-1:-1;;;;;;13976:9:6;;;;13969:27;;1262:18:7;;13969:42:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14047:9;;14040:86;;-1:-1:-1;;;14040:86:6;;14075:42;14040:86;;;11091:51:7;11158:18;;;11151:34;;;13952:59:6;;-1:-1:-1;;;;;;14047:9:6;;14040:26;;11064:18:7;;14040:86:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14137:17;:15;:17::i;:::-;13693:468;13659:502::o;14265:423::-;14353:12;;14326:14;;14353:16;14350:199;;14442:12;;14393:46;;-1:-1:-1;;;14393:46:6;;14408:4;14393:46;;;1289:51:7;;;14408:4:6;14393:31;;1262:18:7;;14393:46:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:61;;;;:::i;:::-;14384:70;;14350:199;;;14492:46;;-1:-1:-1;;;14492:46:6;;14507:4;14492:46;;;1289:51:7;;;14507:4:6;14492:31;;1262:18:7;;14492:46:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14483:55;;14350:199;14591:90;;-1:-1:-1;;;14591:90:6;;14630:42;14591:90;;;11091:51:7;11158:18;;;11151:34;;;14606:4:6;;14591:30;;11064:18:7;;14591:90:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14307:381;14265:423::o;10753:346:1:-;-1:-1:-1;;;;;10855:19:1;;10847:68;;;;-1:-1:-1;;;10847:68:1;;11680:2:7;10847:68:1;;;11662:21:7;11719:2;11699:18;;;11692:30;11758:34;11738:18;;;11731:62;-1:-1:-1;;;11809:18:7;;;11802:34;11853:19;;10847:68:1;11478:400:7;10847:68:1;-1:-1:-1;;;;;10934:21:1;;10926:68;;;;-1:-1:-1;;;10926:68:1;;12085:2:7;10926:68:1;;;12067:21:7;12124:2;12104:18;;;12097:30;12163:34;12143:18;;;12136:62;-1:-1:-1;;;12214:18:7;;;12207:32;12256:19;;10926:68:1;11883:398:7;10926:68:1;-1:-1:-1;;;;;11007:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11059:32;;160:25:7;;;11059:32:1;;133:18:7;11059:32:1;;;;;;;10753:346;;;:::o;11390:419::-;11491:24;11518:25;11528:5;11535:7;11518:9;:25::i;:::-;11491:52;;-1:-1:-1;;11558:16:1;:37;11554:248;;11640:6;11620:16;:26;;11612:68;;;;-1:-1:-1;;;11612:68:1;;12488:2:7;11612:68:1;;;12470:21:7;12527:2;12507:18;;;12500:30;12566:31;12546:18;;;12539:59;12615:18;;11612:68:1;12286:353:7;11612:68:1;11724:51;11733:5;11740:7;11768:6;11749:16;:25;11724:8;:51::i;:::-;11480:329;11390:419;;;:::o;15555:178:6:-;15608:7;15716:3;15665:47;527:4;316:18;15665:47;:::i;:::-;15664:55;;;;:::i;:::-;15635:25;687:10;15654:6;15635:25;:::i;14788:299::-;-1:-1:-1;;14873:15:6;;:36;14870:48;;14788:299;;:::o;14870:48::-;14945:42;;-1:-1:-1;;;14945:42:6;;-1:-1:-1;;;;;1307:32:7;;;14945:42:6;;;1289:51:7;14928:14:6;;14945:23;;;;;;1262:18:7;;14945:42:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;14928:59;;15012:7;15002:6;:17;14998:83;;-1:-1:-1;;15035:15:6;:35;14998:83;14860:227;14788:299;;:::o;7666:806:1:-;-1:-1:-1;;;;;7763:18:1;;7755:68;;;;-1:-1:-1;;;7755:68:1;;12846:2:7;7755:68:1;;;12828:21:7;12885:2;12865:18;;;12858:30;12924:34;12904:18;;;12897:62;-1:-1:-1;;;12975:18:7;;;12968:35;13020:19;;7755:68:1;12644:401:7;7755:68:1;-1:-1:-1;;;;;7842:16:1;;7834:64;;;;-1:-1:-1;;;7834:64:1;;13252:2:7;7834:64:1;;;13234:21:7;13291:2;13271:18;;;13264:30;13330:34;13310:18;;;13303:62;-1:-1:-1;;;13381:18:7;;;13374:33;13424:19;;7834:64:1;13050:399:7;7834:64:1;-1:-1:-1;;;;;7984:15:1;;7962:19;7984:15;;;;;;;;;;;8018:21;;;;8010:72;;;;-1:-1:-1;;;8010:72:1;;13656:2:7;8010:72:1;;;13638:21:7;13695:2;13675:18;;;13668:30;13734:34;13714:18;;;13707:62;-1:-1:-1;;;13785:18:7;;;13778:36;13831:19;;8010:72:1;13454:402:7;8010:72:1;-1:-1:-1;;;;;8118:15:1;;;:9;:15;;;;;;;;;;;8136:20;;;8118:38;;8336:13;;;;;;;;;;:23;;;;;;8388:26;;160:25:7;;;8336:13:1;;8388:26;;133:18:7;8388:26:1;;;;;;;8427:37;14788:299:6;15805:172;15869:17;;15854:12;;:32;15851:44;;;15805:172::o;15851:44::-;15904:31;15922:12;;15904:17;:31::i;:::-;15960:1;15945:12;:16;15805:172::o;16062:383::-;16153:16;;;16167:1;16153:16;;;;;;;;16129:21;;16153:16;;;;;;;;;;-1:-1:-1;16153:16:6;16129:40;;16197:4;16179;16184:1;16179:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;16179:23:6;;;:7;;;;;;;;;;:23;;;;16222:13;;:20;;;-1:-1:-1;;;16222:20:6;;;;:13;;;;;:18;;:20;;;;;16179:7;;16222:20;;;;;:13;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16212:4;16217:1;16212:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;16212:30:6;;;:7;;;;;;;;;:30;16252:13;;16388:9;;16252:186;;-1:-1:-1;;;16252:186:6;;:13;;;;:64;;:186;;16330:11;;16252:13;;16370:4;;16388:9;;;;16412:15;;16252:186;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16119:326;16062:383;:::o;196:418:7:-;345:2;334:9;327:21;308:4;377:6;371:13;420:6;415:2;404:9;400:18;393:34;479:6;474:2;466:6;462:15;457:2;446:9;442:18;436:50;535:1;530:2;521:6;510:9;506:22;502:31;495:42;605:2;598;594:7;589:2;581:6;577:15;573:29;562:9;558:45;554:54;546:62;;;196:418;;;;:::o;619:131::-;-1:-1:-1;;;;;694:31:7;;684:42;;674:70;;740:1;737;730:12;755:367;823:6;831;884:2;872:9;863:7;859:23;855:32;852:52;;;900:1;897;890:12;852:52;939:9;926:23;958:31;983:5;958:31;:::i;:::-;1008:5;1086:2;1071:18;;;;1058:32;;-1:-1:-1;;;755:367:7:o;1543:508::-;1620:6;1628;1636;1689:2;1677:9;1668:7;1664:23;1660:32;1657:52;;;1705:1;1702;1695:12;1657:52;1744:9;1731:23;1763:31;1788:5;1763:31;:::i;:::-;1813:5;-1:-1:-1;1870:2:7;1855:18;;1842:32;1883:33;1842:32;1883:33;:::i;:::-;1543:508;;1935:7;;-1:-1:-1;;;2015:2:7;2000:18;;;;1987:32;;1543:508::o;2453:247::-;2512:6;2565:2;2553:9;2544:7;2540:23;2536:32;2533:52;;;2581:1;2578;2571:12;2533:52;2620:9;2607:23;2639:31;2664:5;2639:31;:::i;:::-;2689:5;2453:247;-1:-1:-1;;;2453:247:7:o;2937:226::-;2996:6;3049:2;3037:9;3028:7;3024:23;3020:32;3017:52;;;3065:1;3062;3055:12;3017:52;-1:-1:-1;3110:23:7;;2937:226;-1:-1:-1;2937:226:7:o;3168:346::-;3236:6;3244;3297:2;3285:9;3276:7;3272:23;3268:32;3265:52;;;3313:1;3310;3303:12;3265:52;-1:-1:-1;;3358:23:7;;;3478:2;3463:18;;;3450:32;;-1:-1:-1;3168:346:7:o;3519:388::-;3587:6;3595;3648:2;3636:9;3627:7;3623:23;3619:32;3616:52;;;3664:1;3661;3654:12;3616:52;3703:9;3690:23;3722:31;3747:5;3722:31;:::i;:::-;3772:5;-1:-1:-1;3829:2:7;3814:18;;3801:32;3842:33;3801:32;3842:33;:::i;:::-;3894:7;3884:17;;;3519:388;;;;;:::o;3912:380::-;3991:1;3987:12;;;;4034;;;4055:61;;4109:4;4101:6;4097:17;4087:27;;4055:61;4162:2;4154:6;4151:14;4131:18;4128:38;4125:161;;4208:10;4203:3;4199:20;4196:1;4189:31;4243:4;4240:1;4233:15;4271:4;4268:1;4261:15;4125:161;;3912:380;;;:::o;4297:401::-;4499:2;4481:21;;;4538:2;4518:18;;;4511:30;4577:34;4572:2;4557:18;;4550:62;-1:-1:-1;;;4643:2:7;4628:18;;4621:35;4688:3;4673:19;;4297:401::o;5054:127::-;5115:10;5110:3;5106:20;5103:1;5096:31;5146:4;5143:1;5136:15;5170:4;5167:1;5160:15;5186:168;5259:9;;;5290;;5307:15;;;5301:22;;5287:37;5277:71;;5328:18;;:::i;5359:217::-;5399:1;5425;5415:132;;5469:10;5464:3;5460:20;5457:1;5450:31;5504:4;5501:1;5494:15;5532:4;5529:1;5522:15;5415:132;-1:-1:-1;5561:9:7;;5359:217::o;5581:128::-;5648:9;;;5669:11;;;5666:37;;;5683:18;;:::i;5714:125::-;5779:9;;;5800:10;;;5797:36;;;5813:18;;:::i;6410:339::-;6612:2;6594:21;;;6651:2;6631:18;;;6624:30;-1:-1:-1;;;6685:2:7;6670:18;;6663:45;6740:2;6725:18;;6410:339::o;8587:251::-;8657:6;8710:2;8698:9;8689:7;8685:23;8681:32;8678:52;;;8726:1;8723;8716:12;8678:52;8758:9;8752:16;8777:31;8802:5;8777:31;:::i;8843:409::-;9045:2;9027:21;;;9084:2;9064:18;;;9057:30;9123:34;9118:2;9103:18;;9096:62;-1:-1:-1;;;9189:2:7;9174:18;;9167:43;9242:3;9227:19;;8843:409::o;10221:456::-;10309:6;10317;10325;10378:2;10366:9;10357:7;10353:23;10349:32;10346:52;;;10394:1;10391;10384:12;10346:52;-1:-1:-1;;10439:16:7;;10545:2;10530:18;;10524:25;10641:2;10626:18;;;10620:25;10439:16;;10524:25;;-1:-1:-1;10620:25:7;10221:456;-1:-1:-1;10221:456:7:o;10682:230::-;10752:6;10805:2;10793:9;10784:7;10780:23;10776:32;10773:52;;;10821:1;10818;10811:12;10773:52;-1:-1:-1;10866:16:7;;10682:230;-1:-1:-1;10682:230:7:o;11196:277::-;11263:6;11316:2;11304:9;11295:7;11291:23;11287:32;11284:52;;;11332:1;11329;11322:12;11284:52;11364:9;11358:16;11417:5;11410:13;11403:21;11396:5;11393:32;11383:60;;11439:1;11436;11429:12;13993:127;14054:10;14049:3;14045:20;14042:1;14035:31;14085:4;14082:1;14075:15;14109:4;14106:1;14099:15;14125:959;14387:4;14435:3;14424:9;14420:19;14466:6;14455:9;14448:25;14509:6;14504:2;14493:9;14489:18;14482:34;14552:3;14547:2;14536:9;14532:18;14525:31;14576:6;14611;14605:13;14642:6;14634;14627:22;14680:3;14669:9;14665:19;14658:26;;14719:2;14711:6;14707:15;14693:29;;14740:1;14750:195;14764:6;14761:1;14758:13;14750:195;;;14829:13;;-1:-1:-1;;;;;14825:39:7;14813:52;;14894:2;14920:15;;;;14885:12;;;;14861:1;14779:9;14750:195;;;-1:-1:-1;;;;;;;15001:32:7;;;;14996:2;14981:18;;14974:60;-1:-1:-1;;15065:3:7;15050:19;15043:35;14962:3;14125:959;-1:-1:-1;;;14125:959:7:o

Swarm Source

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