ETH Price: $2,419.85 (-0.02%)

Token

SoloPanda (SoloPanda)
 

Overview

Max Total Supply

100,000,000 SoloPanda

Holders

332

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
101 SoloPanda

Value
$0.00
0xFcE952c2374d2F6da3f76716D5A2d936eC8D6a9c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SoloPanda

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-08-26
*/

/**
 *Submitted for verification at BscScan.com on 2024-08-26
*/

pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// pragma solidity ^0.8.0;


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

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

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

// pragma solidity ^0.8.0;

// import "../utils/Context.sol";

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

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

// pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one XPEPE 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.
    
     *
     * 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);
}

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

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

// pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens XPEPE 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
lly, 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;

    uint256 public _maxlSupply;

    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 XPEPE of `505` tokens should

     * 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:
 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];
    }

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

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

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased XPEPE allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

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

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

    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 XPEPE zero address");

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

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// pragma solidity ^0.8.0;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.

     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *

     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *

     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,     uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,  uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,   uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,   address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,   address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut, address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,  uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token, uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,  uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,  bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

contract SoloPanda is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled;   bool public swapEnabled;
    bool private _swapping;

    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees;
    uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;   uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;
    uint256 private _previousFee;

    mapping (address => bool) private _isExcludedFromEnableTrad;
    mapping(address => bool) private _automatedMarketMakerPairs;
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event developmentWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event liquidityWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event TokensAirdropped(uint256 totalWallets, uint256 totalTokens);

    constructor() ERC20("SoloPanda", "SoloPanda") {

        uint256 totalSupply = 100_000_000 * (10 ** 18);

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);


        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        sellTotalFees = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;
        _previousFee = sellTotalFees;

        
        _isExcludedFromEnableTrad[owner()] = true;
        _isExcludedFromEnableTrad[address(this)] = true;
        _isExcludedFromEnableTrad[deadAddress] = true;

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function enableTrading() public onlyOwner {
        require(!tradingEnabled, "Trading already active.");
        tradingEnabled = true;
        swapEnabled = true;
    }


    function excludeFromEnobleTrading(address account,
      bool excluded) external onlyOwner{
        _isExcludedFromEnableTrad[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        require(pair != uniswapV2Pair, "The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
    }


    function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        _automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tradingEnabled || _isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to], "Trading XPEPE not yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&!_swapping&&_automatedMarketMakerPairs[from] &&
            !_isExcludedFromEnableTrad[from] &&
            !_isExcludedFromEnableTrad[to]
        ) {
            _swapping = true;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    sellTotalFees;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    sellTotalFees;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    sellTotalFees;
            }
            // on buy
            else if (_automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees;
                _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees;
                _tokensForDevelopment +=
                    (fees * _buyDevelopmentFee) /
                    buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = _previousFee;
    }

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

    function _swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


        uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForETH(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}("");

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"_maxlSupply","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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromEnobleTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b506040518060400160405280600981526020017f536f6c6f50616e646100000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f536f6c6f50616e6461000000000000000000000000000000000000000000000081525081600490816200008f9190620009d3565b508060059081620000a19190620009d3565b505050620000c4620000b86200031960201b60201c565b6200032160201b60201c565b60006a52b7d2dcc80cd2e40000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e760201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017e919062000ae9565b6200018a919062000ae9565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001bd919062000ae9565b620001c9919062000ae9565b601081905550601054601781905550600160186000620001ee620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031262000305620005b860201b60201c565b82620005e260201b60201c565b5062000d05565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000bab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c29062000c43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ab919062000c76565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064b9062000ce3565b60405180910390fd5b62000668600083836200074f60201b60201c565b80600260008282546200067c919062000ae9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072f919062000c76565b60405180910390a36200074b600083836200075460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007db57607f821691505b602082108103620007f157620007f062000793565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081c565b6200086786836200081c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b4620008ae620008a8846200087f565b62000889565b6200087f565b9050919050565b6000819050919050565b620008d08362000893565b620008e8620008df82620008bb565b84845462000829565b825550505050565b600090565b620008ff620008f0565b6200090c818484620008c5565b505050565b5b81811015620009345762000928600082620008f5565b60018101905062000912565b5050565b601f82111562000983576200094d81620007f7565b62000958846200080c565b8101602085101562000968578190505b6200098062000977856200080c565b83018262000911565b50505b505050565b600082821c905092915050565b6000620009a86000198460080262000988565b1980831691505092915050565b6000620009c3838362000995565b9150826002028217905092915050565b620009de8262000759565b67ffffffffffffffff811115620009fa57620009f962000764565b5b62000a068254620007c2565b62000a1382828562000938565b600060209050601f83116001811462000a4b576000841562000a36578287015190505b62000a428582620009b5565b86555062000ab2565b601f19841662000a5b86620007f7565b60005b8281101562000a855784890151825560018201915060208501945060208101905062000a5e565b8683101562000aa5578489015162000aa1601f89168262000995565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af6826200087f565b915062000b03836200087f565b925082820190508082111562000b1e5762000b1d62000aba565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000b9360248362000b24565b915062000ba08262000b35565b604082019050919050565b6000602082019050818103600083015262000bc68162000b84565b9050919050565b7f45524332303a20617070726f766520746f20746865205850455045207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b600062000c2b60288362000b24565b915062000c388262000bcd565b604082019050919050565b6000602082019050818103600083015262000c5e8162000c1c565b9050919050565b62000c70816200087f565b82525050565b600060208201905062000c8d600083018462000c65565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ccb601f8362000b24565b915062000cd88262000c93565b602082019050919050565b6000602082019050818103600083015262000cfe8162000cbc565b9050919050565b6080516130e662000d44600039600081816107b801528181611eec01528181611fcd01528181611ff40152818161209001526120b701526130e66000f3fe6080604052600436106101c65760003560e01c8063715018a6116100f7578063a457c2d711610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a457c2d714610575578063a9059cbb146105b2578063c04a5414146105ef578063d46980161461061a576101cd565b80638da5cb5b116100d15780638da5cb5b146104cb57806393ec52de146104f657806395d89b41146105215780639a7a23d61461054c576101cd565b8063715018a61461047257806375f0a874146104895780638a8c523c146104b4576101cd565b8063313ce567116101645780634ada218b1161013e5780634ada218b146103b45780636a486a8e146103df5780636ddd17131461040a57806370a0823114610435576101cd565b8063313ce56714610321578063395093511461034c57806349bd5a5e14610389576101cd565b806318160ddd116101a057806318160ddd14610265578063182073a41461029057806323b872dd146102b957806327c8f835146102f6576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c91906123a6565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b60405161028791906123d0565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b29190612417565b6107e4565b005b3480156102c557600080fd5b506102e060048036038101906102db9190612457565b610895565b6040516102ed919061232c565b60405180910390f35b34801561030257600080fd5b5061030b6108c4565b60405161031891906124b9565b60405180910390f35b34801561032d57600080fd5b506103366108ca565b60405161034391906124f0565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906122d1565b6108d3565b604051610380919061232c565b60405180910390f35b34801561039557600080fd5b5061039e61090a565b6040516103ab91906124b9565b60405180910390f35b3480156103c057600080fd5b506103c9610930565b6040516103d6919061232c565b60405180910390f35b3480156103eb57600080fd5b506103f4610943565b60405161040191906123d0565b60405180910390f35b34801561041657600080fd5b5061041f610949565b60405161042c919061232c565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061250b565b61095c565b60405161046991906123d0565b60405180910390f35b34801561047e57600080fd5b506104876109a4565b005b34801561049557600080fd5b5061049e6109b8565b6040516104ab91906124b9565b60405180910390f35b3480156104c057600080fd5b506104c96109de565b005b3480156104d757600080fd5b506104e0610a6e565b6040516104ed91906124b9565b60405180910390f35b34801561050257600080fd5b5061050b610a98565b60405161051891906123d0565b60405180910390f35b34801561052d57600080fd5b50610536610a9e565b6040516105439190612216565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612417565b610b30565b005b34801561058157600080fd5b5061059c600480360381019061059791906122d1565b610bd6565b6040516105a9919061232c565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d491906122d1565b610c4d565b6040516105e6919061232c565b60405180910390f35b3480156105fb57600080fd5b50610604610c70565b60405161061191906124b9565b60405180910390f35b34801561062657600080fd5b5061062f610c96565b60405161063c91906124b9565b60405180910390f35b34801561065157600080fd5b5061065a610cbc565b60405161066791906123d0565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612538565b610cc2565b6040516106a491906123d0565b60405180910390f35b3480156106b957600080fd5b506106c2610d49565b6040516106cf91906123d0565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061250b565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6107ec610fa3565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610889919061232c565b60405180910390a25050565b6000806108a0610dd2565b90506108ad858285611021565b6108b88585856110ad565b60019150509392505050565b61dead81565b60006012905090565b6000806108de610dd2565b90506108ff8185856108f08589610cc2565b6108fa9190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ac610fa3565b6109b66000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109e6610fa3565b600a60149054906101000a900460ff1615610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90612687565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610aad906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad9906125a7565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b5050505050905090565b610b38610fa3565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf9061273f565b60405180910390fd5b610bd28282611848565b5050565b600080610be1610dd2565b90506000610bef8286610cc2565b905083811015610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906127d1565b60405180910390fd5b610c418286868403610dda565b60019250505092915050565b600080610c58610dd2565b9050610c658185856110ad565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610d57610fa3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612863565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906128f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612987565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9691906123d0565b60405180910390a3505050565b610fab610dd2565b73ffffffffffffffffffffffffffffffffffffffff16610fc9610a6e565b73ffffffffffffffffffffffffffffffffffffffff161461101f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611016906129f3565b60405180910390fd5b565b600061102d8484610cc2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110a75781811015611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090612a5f565b60405180910390fd5b6110a68484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390612af1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290612b83565b60405180910390fd5b600a60149054906101000a900460ff16806111ef5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112435750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127990612bef565b60405180910390fd5b6000810361129b57611296838360006118e9565b61177d565b60006112a63061095c565b90506000600b5482101590508080156112cb5750600a60159054906101000a900460ff165b80156112e45750600a60169054906101000a900460ff16155b80156113395750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561138f5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113e55750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611429576001600a60166101000a81548160ff02191690831515021790555061140d611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114df5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156114e957600090505b6000811561176457601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561154c57506000601054115b1561161a5761157a61271061156c60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261158d9190612c0f565b6115979190612c80565b601660008282546115a89190612607565b92505081905550601054601154826115c09190612c0f565b6115ca9190612c80565b601460008282546115db9190612607565b92505081905550601054601254826115f39190612c0f565b6115fd9190612c80565b6015600082825461160e9190612607565b92505081905550611740565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561167557506000600c54115b1561173f576116a3612710611695600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116b69190612c0f565b6116c09190612c80565b601660008282546116d19190612607565b92505081905550600c54600d54826116e99190612c0f565b6116f39190612c80565b601460008282546117049190612607565b92505081905550600c54600e548261171c9190612c0f565b6117269190612c80565b601560008282546117379190612607565b925050819055505b5b6000811115611755576117548730836118e9565b5b80856117619190612cb1565b94505b61176f8787876118e9565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612af1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612b83565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612d57565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4691906123d0565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a3061095c565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612c0f565b611bab9190612c80565b611bb59190612c80565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612cb1565b611c629190612cb1565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612d77565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612ddf565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612ddf565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612c0f565b905092915050565b60008183611e259190612c80565b905092915050565b505050565b505050565b60008183611e459190612cb1565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612df4565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612e23565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612e67565b81600181518110611f8d57611f8c612e23565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612054959493929190612f8d565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c96959493929190612fe7565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f919061305d565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b6000819050919050565b600061236c6123676123628461223d565b612347565b61223d565b9050919050565b600061237e82612351565b9050919050565b600061239082612373565b9050919050565b6123a081612385565b82525050565b60006020820190506123bb6000830184612397565b92915050565b6123ca8161229b565b82525050565b60006020820190506123e560008301846123c1565b92915050565b6123f481612311565b81146123ff57600080fd5b50565b600081359050612411816123eb565b92915050565b6000806040838503121561242e5761242d612238565b5b600061243c85828601612286565b925050602061244d85828601612402565b9150509250929050565b6000806000606084860312156124705761246f612238565b5b600061247e86828701612286565b935050602061248f86828701612286565b92505060406124a0868287016122bc565b9150509250925092565b6124b38161225d565b82525050565b60006020820190506124ce60008301846124aa565b92915050565b600060ff82169050919050565b6124ea816124d4565b82525050565b600060208201905061250560008301846124e1565b92915050565b60006020828403121561252157612520612238565b5b600061252f84828501612286565b91505092915050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000612671601783612191565b915061267c8261263b565b602082019050919050565b600060208201905081810360008301526126a081612664565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265207260008201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b657260208201527f5061697273000000000000000000000000000000000000000000000000000000604082015250565b6000612729604583612191565b9150612734826126a7565b606082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f45524332303a2064656372656173656420585045504520616c6c6f77616e636560008201527f2062656c6f77207a65726f000000000000000000000000000000000000000000602082015250565b60006127bb602b83612191565b91506127c68261275f565b604082019050919050565b600060208201905081810360008301526127ea816127ae565b9050919050565b7f4f776e61626c653a206e6577205850455045206f776e6572206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600061284d602c83612191565b9150612858826127f1565b604082019050919050565b6000602082019050818103600083015261287c81612840565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006128df602483612191565b91506128ea82612883565b604082019050919050565b6000602082019050818103600083015261290e816128d2565b9050919050565b7f45524332303a20617070726f766520746f20746865205850455045207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000612971602883612191565b915061297c82612915565b604082019050919050565b600060208201905081810360008301526129a081612964565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129dd602083612191565b91506129e8826129a7565b602082019050919050565b60006020820190508181036000830152612a0c816129d0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a49601d83612191565b9150612a5482612a13565b602082019050919050565b60006020820190508181036000830152612a7881612a3c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612adb602583612191565b9150612ae682612a7f565b604082019050919050565b60006020820190508181036000830152612b0a81612ace565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b6d602383612191565b9150612b7882612b11565b604082019050919050565b60006020820190508181036000830152612b9c81612b60565b9050919050565b7f54726164696e67205850455045206e6f742079657420656e61626c6564210000600082015250565b6000612bd9601e83612191565b9150612be482612ba3565b602082019050919050565b60006020820190508181036000830152612c0881612bcc565b9050919050565b6000612c1a8261229b565b9150612c258361229b565b9250828202612c338161229b565b91508282048414831517612c4a57612c496125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c8b8261229b565b9150612c968361229b565b925082612ca657612ca5612c51565b5b828204905092915050565b6000612cbc8261229b565b9150612cc78361229b565b9250828203905081811115612cdf57612cde6125d8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612d41602683612191565b9150612d4c82612ce5565b604082019050919050565b60006020820190508181036000830152612d7081612d34565b9050919050565b6000606082019050612d8c60008301866123c1565b612d9960208301856123c1565b612da660408301846123c1565b949350505050565b600081905092915050565b50565b6000612dc9600083612dae565b9150612dd482612db9565b600082019050919050565b6000612dea82612dbc565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612e618161226f565b92915050565b600060208284031215612e7d57612e7c612238565b5b6000612e8b84828501612e52565b91505092915050565b6000819050919050565b6000612eb9612eb4612eaf84612e94565b612347565b61229b565b9050919050565b612ec981612e9e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f048161225d565b82525050565b6000612f168383612efb565b60208301905092915050565b6000602082019050919050565b6000612f3a82612ecf565b612f448185612eda565b9350612f4f83612eeb565b8060005b83811015612f80578151612f678882612f0a565b9750612f7283612f22565b925050600181019050612f53565b5085935050505092915050565b600060a082019050612fa260008301886123c1565b612faf6020830187612ec0565b8181036040830152612fc18186612f2f565b9050612fd060608301856124aa565b612fdd60808301846123c1565b9695505050505050565b600060c082019050612ffc60008301896124aa565b61300960208301886123c1565b6130166040830187612ec0565b6130236060830186612ec0565b61303060808301856124aa565b61303d60a08301846123c1565b979650505050505050565b600081519050613057816122a5565b92915050565b60008060006060848603121561307657613075612238565b5b600061308486828701613048565b935050602061309586828701613048565b92505060406130a686828701613048565b915050925092509256fea2646970667358221220550edaa5f831f45a10938c16d467a93594f4a59649abf6cd4288af23db059d0164736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c8063715018a6116100f7578063a457c2d711610095578063d85ba06311610064578063d85ba06314610645578063dd62ed3e14610670578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a457c2d714610575578063a9059cbb146105b2578063c04a5414146105ef578063d46980161461061a576101cd565b80638da5cb5b116100d15780638da5cb5b146104cb57806393ec52de146104f657806395d89b41146105215780639a7a23d61461054c576101cd565b8063715018a61461047257806375f0a874146104895780638a8c523c146104b4576101cd565b8063313ce567116101645780634ada218b1161013e5780634ada218b146103b45780636a486a8e146103df5780636ddd17131461040a57806370a0823114610435576101cd565b8063313ce56714610321578063395093511461034c57806349bd5a5e14610389576101cd565b806318160ddd116101a057806318160ddd14610265578063182073a41461029057806323b872dd146102b957806327c8f835146102f6576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c91906123a6565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b60405161028791906123d0565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b29190612417565b6107e4565b005b3480156102c557600080fd5b506102e060048036038101906102db9190612457565b610895565b6040516102ed919061232c565b60405180910390f35b34801561030257600080fd5b5061030b6108c4565b60405161031891906124b9565b60405180910390f35b34801561032d57600080fd5b506103366108ca565b60405161034391906124f0565b60405180910390f35b34801561035857600080fd5b50610373600480360381019061036e91906122d1565b6108d3565b604051610380919061232c565b60405180910390f35b34801561039557600080fd5b5061039e61090a565b6040516103ab91906124b9565b60405180910390f35b3480156103c057600080fd5b506103c9610930565b6040516103d6919061232c565b60405180910390f35b3480156103eb57600080fd5b506103f4610943565b60405161040191906123d0565b60405180910390f35b34801561041657600080fd5b5061041f610949565b60405161042c919061232c565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061250b565b61095c565b60405161046991906123d0565b60405180910390f35b34801561047e57600080fd5b506104876109a4565b005b34801561049557600080fd5b5061049e6109b8565b6040516104ab91906124b9565b60405180910390f35b3480156104c057600080fd5b506104c96109de565b005b3480156104d757600080fd5b506104e0610a6e565b6040516104ed91906124b9565b60405180910390f35b34801561050257600080fd5b5061050b610a98565b60405161051891906123d0565b60405180910390f35b34801561052d57600080fd5b50610536610a9e565b6040516105439190612216565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612417565b610b30565b005b34801561058157600080fd5b5061059c600480360381019061059791906122d1565b610bd6565b6040516105a9919061232c565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d491906122d1565b610c4d565b6040516105e6919061232c565b60405180910390f35b3480156105fb57600080fd5b50610604610c70565b60405161061191906124b9565b60405180910390f35b34801561062657600080fd5b5061062f610c96565b60405161063c91906124b9565b60405180910390f35b34801561065157600080fd5b5061065a610cbc565b60405161066791906123d0565b60405180910390f35b34801561067c57600080fd5b5061069760048036038101906106929190612538565b610cc2565b6040516106a491906123d0565b60405180910390f35b3480156106b957600080fd5b506106c2610d49565b6040516106cf91906123d0565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061250b565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6107ec610fa3565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610889919061232c565b60405180910390a25050565b6000806108a0610dd2565b90506108ad858285611021565b6108b88585856110ad565b60019150509392505050565b61dead81565b60006012905090565b6000806108de610dd2565b90506108ff8185856108f08589610cc2565b6108fa9190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ac610fa3565b6109b66000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109e6610fa3565b600a60149054906101000a900460ff1615610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90612687565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b606060058054610aad906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad9906125a7565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b5050505050905090565b610b38610fa3565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf9061273f565b60405180910390fd5b610bd28282611848565b5050565b600080610be1610dd2565b90506000610bef8286610cc2565b905083811015610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b906127d1565b60405180910390fd5b610c418286868403610dda565b60019250505092915050565b600080610c58610dd2565b9050610c658185856110ad565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610d57610fa3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612863565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906128f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612987565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9691906123d0565b60405180910390a3505050565b610fab610dd2565b73ffffffffffffffffffffffffffffffffffffffff16610fc9610a6e565b73ffffffffffffffffffffffffffffffffffffffff161461101f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611016906129f3565b60405180910390fd5b565b600061102d8484610cc2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110a75781811015611099576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109090612a5f565b60405180910390fd5b6110a68484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361111c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111390612af1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290612b83565b60405180910390fd5b600a60149054906101000a900460ff16806111ef5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806112435750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127990612bef565b60405180910390fd5b6000810361129b57611296838360006118e9565b61177d565b60006112a63061095c565b90506000600b5482101590508080156112cb5750600a60159054906101000a900460ff165b80156112e45750600a60169054906101000a900460ff16155b80156113395750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561138f5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113e55750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611429576001600a60166101000a81548160ff02191690831515021790555061140d611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114df5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156114e957600090505b6000811561176457601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561154c57506000601054115b1561161a5761157a61271061156c60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261158d9190612c0f565b6115979190612c80565b601660008282546115a89190612607565b92505081905550601054601154826115c09190612c0f565b6115ca9190612c80565b601460008282546115db9190612607565b92505081905550601054601254826115f39190612c0f565b6115fd9190612c80565b6015600082825461160e9190612607565b92505081905550611740565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561167557506000600c54115b1561173f576116a3612710611695600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116b69190612c0f565b6116c09190612c80565b601660008282546116d19190612607565b92505081905550600c54600d54826116e99190612c0f565b6116f39190612c80565b601460008282546117049190612607565b92505081905550600c54600e548261171c9190612c0f565b6117269190612c80565b601560008282546117379190612607565b925050819055505b5b6000811115611755576117548730836118e9565b5b80856117619190612cb1565b94505b61176f8787876118e9565b601754601081905550505050505b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612af1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612b83565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612d57565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4691906123d0565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a3061095c565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612c0f565b611bab9190612c80565b611bb59190612c80565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612cb1565b611c629190612cb1565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612d77565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612ddf565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612ddf565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612c0f565b905092915050565b60008183611e259190612c80565b905092915050565b505050565b505050565b60008183611e459190612cb1565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612df4565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612e23565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612e67565b81600181518110611f8d57611f8c612e23565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dda565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612054959493929190612f8d565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610dda565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c96959493929190612fe7565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f919061305d565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b6000819050919050565b600061236c6123676123628461223d565b612347565b61223d565b9050919050565b600061237e82612351565b9050919050565b600061239082612373565b9050919050565b6123a081612385565b82525050565b60006020820190506123bb6000830184612397565b92915050565b6123ca8161229b565b82525050565b60006020820190506123e560008301846123c1565b92915050565b6123f481612311565b81146123ff57600080fd5b50565b600081359050612411816123eb565b92915050565b6000806040838503121561242e5761242d612238565b5b600061243c85828601612286565b925050602061244d85828601612402565b9150509250929050565b6000806000606084860312156124705761246f612238565b5b600061247e86828701612286565b935050602061248f86828701612286565b92505060406124a0868287016122bc565b9150509250925092565b6124b38161225d565b82525050565b60006020820190506124ce60008301846124aa565b92915050565b600060ff82169050919050565b6124ea816124d4565b82525050565b600060208201905061250560008301846124e1565b92915050565b60006020828403121561252157612520612238565b5b600061252f84828501612286565b91505092915050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000612671601783612191565b915061267c8261263b565b602082019050919050565b600060208201905081810360008301526126a081612664565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265207260008201527f656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b657260208201527f5061697273000000000000000000000000000000000000000000000000000000604082015250565b6000612729604583612191565b9150612734826126a7565b606082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f45524332303a2064656372656173656420585045504520616c6c6f77616e636560008201527f2062656c6f77207a65726f000000000000000000000000000000000000000000602082015250565b60006127bb602b83612191565b91506127c68261275f565b604082019050919050565b600060208201905081810360008301526127ea816127ae565b9050919050565b7f4f776e61626c653a206e6577205850455045206f776e6572206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600061284d602c83612191565b9150612858826127f1565b604082019050919050565b6000602082019050818103600083015261287c81612840565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006128df602483612191565b91506128ea82612883565b604082019050919050565b6000602082019050818103600083015261290e816128d2565b9050919050565b7f45524332303a20617070726f766520746f20746865205850455045207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000612971602883612191565b915061297c82612915565b604082019050919050565b600060208201905081810360008301526129a081612964565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129dd602083612191565b91506129e8826129a7565b602082019050919050565b60006020820190508181036000830152612a0c816129d0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612a49601d83612191565b9150612a5482612a13565b602082019050919050565b60006020820190508181036000830152612a7881612a3c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612adb602583612191565b9150612ae682612a7f565b604082019050919050565b60006020820190508181036000830152612b0a81612ace565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b6d602383612191565b9150612b7882612b11565b604082019050919050565b60006020820190508181036000830152612b9c81612b60565b9050919050565b7f54726164696e67205850455045206e6f742079657420656e61626c6564210000600082015250565b6000612bd9601e83612191565b9150612be482612ba3565b602082019050919050565b60006020820190508181036000830152612c0881612bcc565b9050919050565b6000612c1a8261229b565b9150612c258361229b565b9250828202612c338161229b565b91508282048414831517612c4a57612c496125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c8b8261229b565b9150612c968361229b565b925082612ca657612ca5612c51565b5b828204905092915050565b6000612cbc8261229b565b9150612cc78361229b565b9250828203905081811115612cdf57612cde6125d8565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612d41602683612191565b9150612d4c82612ce5565b604082019050919050565b60006020820190508181036000830152612d7081612d34565b9050919050565b6000606082019050612d8c60008301866123c1565b612d9960208301856123c1565b612da660408301846123c1565b949350505050565b600081905092915050565b50565b6000612dc9600083612dae565b9150612dd482612db9565b600082019050919050565b6000612dea82612dbc565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612e618161226f565b92915050565b600060208284031215612e7d57612e7c612238565b5b6000612e8b84828501612e52565b91505092915050565b6000819050919050565b6000612eb9612eb4612eaf84612e94565b612347565b61229b565b9050919050565b612ec981612e9e565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f048161225d565b82525050565b6000612f168383612efb565b60208301905092915050565b6000602082019050919050565b6000612f3a82612ecf565b612f448185612eda565b9350612f4f83612eeb565b8060005b83811015612f80578151612f678882612f0a565b9750612f7283612f22565b925050600181019050612f53565b5085935050505092915050565b600060a082019050612fa260008301886123c1565b612faf6020830187612ec0565b8181036040830152612fc18186612f2f565b9050612fd060608301856124aa565b612fdd60808301846123c1565b9695505050505050565b600060c082019050612ffc60008301896124aa565b61300960208301886123c1565b6130166040830187612ec0565b6130236060830186612ec0565b61303060808301856124aa565b61303d60a08301846123c1565b979650505050505050565b600081519050613057816122a5565b92915050565b60008060006060848603121561307657613075612238565b5b600061308486828701613048565b935050602061309586828701613048565b92505060406130a686828701613048565b915050925092509256fea2646970667358221220550edaa5f831f45a10938c16d467a93594f4a59649abf6cd4288af23db059d0164736f6c63430008110033

Deployed Bytecode Sourcemap

26698:8664:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7616:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9527:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26777:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8488:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29724:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9777:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26985:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8330:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10080:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26835:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27047:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27335:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27077:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8659:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1849:103;;;;;;;;;;;;;:::i;:::-;;26872:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29541:173;;;;;;;;;;;;;:::i;:::-;;1202:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7155:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7835:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29937:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10358:511;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9021:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26909:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26948:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27180:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9318:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27138:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2107:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7616:100;7670:13;7703:5;7696:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7616:100;:::o;9527:242::-;9646:4;9668:13;9684:12;:10;:12::i;:::-;9668:28;;9707:32;9716:5;9723:7;9732:6;9707:8;:32::i;:::-;9757:4;9750:11;;;9527:242;;;;:::o;26777:51::-;;;:::o;8488:108::-;8549:7;8576:12;;8569:19;;8488:108;:::o;29724:205::-;1088:13;:11;:13::i;:::-;29863:8:::1;29826:25;:34;29852:7;29826:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;29903:7;29887:34;;;29912:8;29887:34;;;;;;:::i;:::-;;;;;;;;29724:205:::0;;:::o;9777:295::-;9908:4;9925:15;9943:12;:10;:12::i;:::-;9925:30;;9966:38;9982:4;9988:7;9997:6;9966:15;:38::i;:::-;10015:27;10025:4;10031:2;10035:6;10015:9;:27::i;:::-;10060:4;10053:11;;;9777:295;;;;;:::o;26985:53::-;27031:6;26985:53;:::o;8330:93::-;8388:5;8413:2;8406:9;;8330:93;:::o;10080:270::-;10195:4;10217:13;10233:12;:10;:12::i;:::-;10217:28;;10256:64;10265:5;10272:7;10309:10;10281:25;10291:5;10298:7;10281:9;:25::i;:::-;:38;;;;:::i;:::-;10256:8;:64::i;:::-;10338:4;10331:11;;;10080:270;;;;:::o;26835:28::-;;;;;;;;;;;;;:::o;27047:26::-;;;;;;;;;;;;;:::o;27335:28::-;;;;:::o;27077:23::-;;;;;;;;;;;;;:::o;8659:177::-;8778:7;8810:9;:18;8820:7;8810:18;;;;;;;;;;;;;;;;8803:25;;8659:177;;;:::o;1849:103::-;1088:13;:11;:13::i;:::-;1914:30:::1;1941:1;1914:18;:30::i;:::-;1849:103::o:0;26872:30::-;;;;;;;;;;;;;:::o;29541:173::-;1088:13;:11;:13::i;:::-;29603:14:::1;;;;;;;;;;;29602:15;29594:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;29673:4;29656:14;;:21;;;;;;;;;;;;;;;;;;29702:4;29688:11;;:18;;;;;;;;;;;;;;;;;;29541:173::o:0;1202:87::-;1248:7;1275:6;;;;;;;;;;;1268:13;;1202:87;:::o;7155:26::-;;;;:::o;7835:104::-;7891:13;7924:7;7917:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7835:104;:::o;29937:254::-;1088:13;:11;:13::i;:::-;30044::::1;;;;;;;;;;;30036:21;;:4;:21;;::::0;30028:103:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30142:41;30171:4;30177:5;30142:28;:41::i;:::-;29937:254:::0;;:::o;10358:511::-;10478:4;10500:13;10516:12;:10;:12::i;:::-;10500:28;;10539:24;10566:25;10576:5;10583:7;10566:9;:25::i;:::-;10539:52;;10644:15;10624:16;:35;;10602:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;10766:60;10775:5;10782:7;10810:15;10791:16;:34;10766:8;:60::i;:::-;10857:4;10850:11;;;;10358:511;;;;:::o;9021:234::-;9136:4;9158:13;9174:12;:10;:12::i;:::-;9158:28;;9197;9207:5;9214:2;9218:6;9197:9;:28::i;:::-;9243:4;9236:11;;;9021:234;;;;:::o;26909:32::-;;;;;;;;;;;;;:::o;26948:30::-;;;;;;;;;;;;;:::o;27180:27::-;;;;:::o;9318:201::-;9452:7;9484:11;:18;9496:5;9484:18;;;;;;;;;;;;;;;:27;9503:7;9484:27;;;;;;;;;;;;;;;;9477:34;;9318:201;;;;:::o;27138:33::-;;;;:::o;2107:244::-;1088:13;:11;:13::i;:::-;2230:1:::1;2210:22;;:8;:22;;::::0;2188:116:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2315:28;2334:8;2315:18;:28::i;:::-;2107:244:::0;:::o;253:98::-;306:7;333:10;326:17;;253:98;:::o;13001:386::-;13154:1;13137:19;;:5;:19;;;13129:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13235:1;13216:21;;:7;:21;;;13208:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13325:6;13295:11;:18;13307:5;13295:18;;;;;;;;;;;;;;;:27;13314:7;13295:27;;;;;;;;;;;;;;;:36;;;;13363:7;13347:32;;13356:5;13347:32;;;13372:6;13347:32;;;;;;:::i;:::-;;;;;;;;13001:386;;;:::o;1367:132::-;1442:12;:10;:12::i;:::-;1431:23;;:7;:5;:7::i;:::-;:23;;;1423:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1367:132::o;13395:502::-;13530:24;13557:25;13567:5;13574:7;13557:9;:25::i;:::-;13530:52;;13617:17;13597:16;:37;13593:297;;13697:6;13677:16;:26;;13651:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;13812:51;13821:5;13828:7;13856:6;13837:16;:25;13812:8;:51::i;:::-;13593:297;13519:378;13395:502;;;:::o;30397:2454::-;30545:1;30529:18;;:4;:18;;;30521:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30622:1;30608:16;;:2;:16;;;30600:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30683:14;;;;;;;;;;;:49;;;;30701:25;:31;30727:4;30701:31;;;;;;;;;;;;;;;;;;;;;;;;;30683:49;:82;;;;30736:25;:29;30762:2;30736:29;;;;;;;;;;;;;;;;;;;;;;;;;30683:82;30675:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;30825:1;30815:6;:11;30811:93;;30843:28;30859:4;30865:2;30869:1;30843:15;:28::i;:::-;30886:7;;30811:93;30918:28;30949:24;30967:4;30949:9;:24::i;:::-;30918:55;;30986:12;31025:18;;31001:20;:42;;30986:57;;31074:7;:35;;;;;31098:11;;;;;;;;;;;31074:35;:48;;;;;31113:9;;;;;;;;;;;31112:10;31074:48;:82;;;;;31124:26;:32;31151:4;31124:32;;;;;;;;;;;;;;;;;;;;;;;;;31074:82;:131;;;;;31174:25;:31;31200:4;31174:31;;;;;;;;;;;;;;;;;;;;;;;;;31173:32;31074:131;:178;;;;;31223:25;:29;31249:2;31223:29;;;;;;;;;;;;;;;;;;;;;;;;;31222:30;31074:178;31056:313;;;31291:4;31279:9;;:16;;;;;;;;;;;;;;;;;;31312:11;:9;:11::i;:::-;31352:5;31340:9;;:17;;;;;;;;;;;;;;;;;;31056:313;31381:12;31397:9;;;;;;;;;;;31396:10;31381:25;;31423;:31;31449:4;31423:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;31458:25;:29;31484:2;31458:29;;;;;;;;;;;;;;;;;;;;;;;;;31423:64;31419:112;;;31514:5;31504:15;;31419:112;31543:12;31576:7;31572:1187;;;31628:26;:30;31655:2;31628:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;31678:1;31662:13;;:17;31628:51;31624:986;;;31707:36;31737:5;31707:25;31718:13;;31707:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;31700:43;;31856:13;;31814:17;;31807:4;:24;;;;:::i;:::-;31806:63;;;;:::i;:::-;31762:19;;:107;;;;;;;:::i;:::-;;;;;;;;31982:13;;31940:17;;31933:4;:24;;;;:::i;:::-;31932:63;;;;:::i;:::-;31888:19;;:107;;;;;;;:::i;:::-;;;;;;;;32112:13;;32068:19;;32061:4;:26;;;;:::i;:::-;32060:65;;;;:::i;:::-;32014:21;;:111;;;;;;;:::i;:::-;;;;;;;;31624:986;;;32187:26;:32;32214:4;32187:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;32238:1;32223:12;;:16;32187:52;32183:427;;;32267:35;32296:5;32267:24;32278:12;;32267:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;32260:42;;32372:12;;32352:16;;32345:4;:23;;;;:::i;:::-;32344:40;;;;:::i;:::-;32321:19;;:63;;;;;;;:::i;:::-;;;;;;;;32454:12;;32434:16;;32427:4;:23;;;;:::i;:::-;32426:40;;;;:::i;:::-;32403:19;;:63;;;;;;;:::i;:::-;;;;;;;;32582:12;;32539:18;;32532:4;:25;;;;:::i;:::-;32531:63;;;;:::i;:::-;32485:21;;:109;;;;;;;:::i;:::-;;;;;;;;32183:427;31624:986;32637:1;32630:4;:8;32626:91;;;32659:42;32675:4;32689;32696;32659:15;:42::i;:::-;32626:91;32743:4;32733:14;;;;;:::i;:::-;;;31572:1187;32771:33;32787:4;32793:2;32797:6;32771:15;:33::i;:::-;32831:12;;32815:13;:28;;;;30510:2341;;;;30397:2454;;;;:::o;2511:191::-;2585:16;2604:6;;;;;;;;;;;2585:25;;2630:8;2621:6;;:17;;;;;;;;;;;;;;;;;;2685:8;2654:40;;2675:8;2654:40;;;;;;;;;;;;2574:128;2511:191;:::o;30201:188::-;30320:5;30285:26;:32;30312:4;30285:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;30375:5;30341:40;;30369:4;30341:40;;;;;;;;;;;;30201:188;;:::o;10877:877::-;11024:1;11008:18;;:4;:18;;;11000:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11101:1;11087:16;;:2;:16;;;11079:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11156:38;11177:4;11183:2;11187:6;11156:20;:38::i;:::-;11207:19;11229:9;:15;11239:4;11229:15;;;;;;;;;;;;;;;;11207:37;;11292:6;11277:11;:21;;11255:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;11432:6;11418:11;:20;11400:9;:15;11410:4;11400:15;;;;;;;;;;;;;;;:38;;;;11635:6;11618:9;:13;11628:2;11618:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11685:2;11670:26;;11679:4;11670:26;;;11689:6;11670:26;;;;;;:::i;:::-;;;;;;;;11709:37;11729:4;11735:2;11739:6;11709:19;:37::i;:::-;10989:765;10877:877;;;:::o;33750:1607::-;33791:23;33817:24;33835:4;33817:9;:24::i;:::-;33791:50;;33852:25;33950:21;;33915:19;;33880;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;33852:119;;33982:12;34009:23;34123:1;34090:17;34054:19;;34036:15;:37;;;;:::i;:::-;34035:72;;;;:::i;:::-;:89;;;;:::i;:::-;34009:115;;34135:26;34164:36;34184:15;34164;:19;;:36;;;;:::i;:::-;34135:65;;34213:25;34241:21;34213:49;;34275:37;34293:18;34275:17;:37::i;:::-;34325:18;34346:44;34372:17;34346:21;:25;;:44;;;;:::i;:::-;34325:65;;34403:23;34429:82;34483:17;34429:35;34444:19;;34429:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;34403:108;;34524:25;34552:84;34608:17;34552:37;34567:21;;34552:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;34524:112;;34649:23;34732:17;34701:15;34675:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;34649:100;;34784:1;34762:19;:23;;;;34818:1;34796:19;:23;;;;34854:1;34830:21;:25;;;;34890:1;34872:15;:19;:42;;;;;34913:1;34895:15;:19;34872:42;34868:280;;;34931:47;34945:15;34962;34931:13;:47::i;:::-;34998:138;35031:18;35068:15;35102:19;;34998:138;;;;;;;;:::i;:::-;;;;;;;;34868:280;35182:17;;;;;;;;;;;35174:31;;35213:17;35174:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35160:75;;;;;35270:15;;;;;;;;;;;35262:29;;35313:21;35262:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35248:101;;;;;33780:1577;;;;;;;;;;33750:1607::o;17494:98::-;17552:7;17583:1;17579;:5;;;;:::i;:::-;17572:12;;17494:98;;;;:::o;17817:::-;17875:7;17906:1;17902;:5;;;;:::i;:::-;17895:12;;17817:98;;;;:::o;13905:125::-;;;;:::o;14038:124::-;;;;:::o;17137:98::-;17195:7;17226:1;17222;:5;;;;:::i;:::-;17215:12;;17137:98;;;;:::o;32859:503::-;32927:21;32965:1;32951:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32927:40;;32996:4;32978;32983:1;32978:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;33022:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33012:4;33017:1;33012:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;33057:62;33074:4;33089:15;33107:11;33057:8;:62::i;:::-;33158:15;:66;;;33239:11;33265:1;33281:4;33308;33328:15;33158:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32916:446;32859:503;:::o;33370:372::-;33453:62;33470:4;33485:15;33503:11;33453:8;:62::i;:::-;33528:15;:31;;;33567:9;33600:4;33620:11;33646:1;33662;33678:15;;;;;;;;;;;33708;33528:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33370:372;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:116::-;4846:21;4861:5;4846:21;:::i;:::-;4839:5;4836:32;4826:60;;4882:1;4879;4872:12;4826:60;4776:116;:::o;4898:133::-;4941:5;4979:6;4966:20;4957:29;;4995:30;5019:5;4995:30;:::i;:::-;4898:133;;;;:::o;5037:468::-;5102:6;5110;5159:2;5147:9;5138:7;5134:23;5130:32;5127:119;;;5165:79;;:::i;:::-;5127:119;5285:1;5310:53;5355:7;5346:6;5335:9;5331:22;5310:53;:::i;:::-;5300:63;;5256:117;5412:2;5438:50;5480:7;5471:6;5460:9;5456:22;5438:50;:::i;:::-;5428:60;;5383:115;5037:468;;;;;:::o;5511:619::-;5588:6;5596;5604;5653:2;5641:9;5632:7;5628:23;5624:32;5621:119;;;5659:79;;:::i;:::-;5621:119;5779:1;5804:53;5849:7;5840:6;5829:9;5825:22;5804:53;:::i;:::-;5794:63;;5750:117;5906:2;5932:53;5977:7;5968:6;5957:9;5953:22;5932:53;:::i;:::-;5922:63;;5877:118;6034:2;6060:53;6105:7;6096:6;6085:9;6081:22;6060:53;:::i;:::-;6050:63;;6005:118;5511:619;;;;;:::o;6136:118::-;6223:24;6241:5;6223:24;:::i;:::-;6218:3;6211:37;6136:118;;:::o;6260:222::-;6353:4;6391:2;6380:9;6376:18;6368:26;;6404:71;6472:1;6461:9;6457:17;6448:6;6404:71;:::i;:::-;6260:222;;;;:::o;6488:86::-;6523:7;6563:4;6556:5;6552:16;6541:27;;6488:86;;;:::o;6580:112::-;6663:22;6679:5;6663:22;:::i;:::-;6658:3;6651:35;6580:112;;:::o;6698:214::-;6787:4;6825:2;6814:9;6810:18;6802:26;;6838:67;6902:1;6891:9;6887:17;6878:6;6838:67;:::i;:::-;6698:214;;;;:::o;6918:329::-;6977:6;7026:2;7014:9;7005:7;7001:23;6997:32;6994:119;;;7032:79;;:::i;:::-;6994:119;7152:1;7177:53;7222:7;7213:6;7202:9;7198:22;7177:53;:::i;:::-;7167:63;;7123:117;6918:329;;;;:::o;7253:474::-;7321:6;7329;7378:2;7366:9;7357:7;7353:23;7349:32;7346:119;;;7384:79;;:::i;:::-;7346:119;7504:1;7529:53;7574:7;7565:6;7554:9;7550:22;7529:53;:::i;:::-;7519:63;;7475:117;7631:2;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7602:118;7253:474;;;;;:::o;7733:180::-;7781:77;7778:1;7771:88;7878:4;7875:1;7868:15;7902:4;7899:1;7892:15;7919:320;7963:6;8000:1;7994:4;7990:12;7980:22;;8047:1;8041:4;8037:12;8068:18;8058:81;;8124:4;8116:6;8112:17;8102:27;;8058:81;8186:2;8178:6;8175:14;8155:18;8152:38;8149:84;;8205:18;;:::i;:::-;8149:84;7970:269;7919:320;;;:::o;8245:180::-;8293:77;8290:1;8283:88;8390:4;8387:1;8380:15;8414:4;8411:1;8404:15;8431:191;8471:3;8490:20;8508:1;8490:20;:::i;:::-;8485:25;;8524:20;8542:1;8524:20;:::i;:::-;8519:25;;8567:1;8564;8560:9;8553:16;;8588:3;8585:1;8582:10;8579:36;;;8595:18;;:::i;:::-;8579:36;8431:191;;;;:::o;8628:173::-;8768:25;8764:1;8756:6;8752:14;8745:49;8628:173;:::o;8807:366::-;8949:3;8970:67;9034:2;9029:3;8970:67;:::i;:::-;8963:74;;9046:93;9135:3;9046:93;:::i;:::-;9164:2;9159:3;9155:12;9148:19;;8807:366;;;:::o;9179:419::-;9345:4;9383:2;9372:9;9368:18;9360:26;;9432:9;9426:4;9422:20;9418:1;9407:9;9403:17;9396:47;9460:131;9586:4;9460:131;:::i;:::-;9452:139;;9179:419;;;:::o;9604:293::-;9744:34;9740:1;9732:6;9728:14;9721:58;9813:34;9808:2;9800:6;9796:15;9789:59;9882:7;9877:2;9869:6;9865:15;9858:32;9604:293;:::o;9903:366::-;10045:3;10066:67;10130:2;10125:3;10066:67;:::i;:::-;10059:74;;10142:93;10231:3;10142:93;:::i;:::-;10260:2;10255:3;10251:12;10244:19;;9903:366;;;:::o;10275:419::-;10441:4;10479:2;10468:9;10464:18;10456:26;;10528:9;10522:4;10518:20;10514:1;10503:9;10499:17;10492:47;10556:131;10682:4;10556:131;:::i;:::-;10548:139;;10275:419;;;:::o;10700:230::-;10840:34;10836:1;10828:6;10824:14;10817:58;10909:13;10904:2;10896:6;10892:15;10885:38;10700:230;:::o;10936:366::-;11078:3;11099:67;11163:2;11158:3;11099:67;:::i;:::-;11092:74;;11175:93;11264:3;11175:93;:::i;:::-;11293:2;11288:3;11284:12;11277:19;;10936:366;;;:::o;11308:419::-;11474:4;11512:2;11501:9;11497:18;11489:26;;11561:9;11555:4;11551:20;11547:1;11536:9;11532:17;11525:47;11589:131;11715:4;11589:131;:::i;:::-;11581:139;;11308:419;;;:::o;11733:231::-;11873:34;11869:1;11861:6;11857:14;11850:58;11942:14;11937:2;11929:6;11925:15;11918:39;11733:231;:::o;11970:366::-;12112:3;12133:67;12197:2;12192:3;12133:67;:::i;:::-;12126:74;;12209:93;12298:3;12209:93;:::i;:::-;12327:2;12322:3;12318:12;12311:19;;11970:366;;;:::o;12342:419::-;12508:4;12546:2;12535:9;12531:18;12523:26;;12595:9;12589:4;12585:20;12581:1;12570:9;12566:17;12559:47;12623:131;12749:4;12623:131;:::i;:::-;12615:139;;12342:419;;;:::o;12767:223::-;12907:34;12903:1;12895:6;12891:14;12884:58;12976:6;12971:2;12963:6;12959:15;12952:31;12767:223;:::o;12996:366::-;13138:3;13159:67;13223:2;13218:3;13159:67;:::i;:::-;13152:74;;13235:93;13324:3;13235:93;:::i;:::-;13353:2;13348:3;13344:12;13337:19;;12996:366;;;:::o;13368:419::-;13534:4;13572:2;13561:9;13557:18;13549:26;;13621:9;13615:4;13611:20;13607:1;13596:9;13592:17;13585:47;13649:131;13775:4;13649:131;:::i;:::-;13641:139;;13368:419;;;:::o;13793:227::-;13933:34;13929:1;13921:6;13917:14;13910:58;14002:10;13997:2;13989:6;13985:15;13978:35;13793:227;:::o;14026:366::-;14168:3;14189:67;14253:2;14248:3;14189:67;:::i;:::-;14182:74;;14265:93;14354:3;14265:93;:::i;:::-;14383:2;14378:3;14374:12;14367:19;;14026:366;;;:::o;14398:419::-;14564:4;14602:2;14591:9;14587:18;14579:26;;14651:9;14645:4;14641:20;14637:1;14626:9;14622:17;14615:47;14679:131;14805:4;14679:131;:::i;:::-;14671:139;;14398:419;;;:::o;14823:182::-;14963:34;14959:1;14951:6;14947:14;14940:58;14823:182;:::o;15011:366::-;15153:3;15174:67;15238:2;15233:3;15174:67;:::i;:::-;15167:74;;15250:93;15339:3;15250:93;:::i;:::-;15368:2;15363:3;15359:12;15352:19;;15011:366;;;:::o;15383:419::-;15549:4;15587:2;15576:9;15572:18;15564:26;;15636:9;15630:4;15626:20;15622:1;15611:9;15607:17;15600:47;15664:131;15790:4;15664:131;:::i;:::-;15656:139;;15383:419;;;:::o;15808:179::-;15948:31;15944:1;15936:6;15932:14;15925:55;15808:179;:::o;15993:366::-;16135:3;16156:67;16220:2;16215:3;16156:67;:::i;:::-;16149:74;;16232:93;16321:3;16232:93;:::i;:::-;16350:2;16345:3;16341:12;16334:19;;15993:366;;;:::o;16365:419::-;16531:4;16569:2;16558:9;16554:18;16546:26;;16618:9;16612:4;16608:20;16604:1;16593:9;16589:17;16582:47;16646:131;16772:4;16646:131;:::i;:::-;16638:139;;16365:419;;;:::o;16790:224::-;16930:34;16926:1;16918:6;16914:14;16907:58;16999:7;16994:2;16986:6;16982:15;16975:32;16790:224;:::o;17020:366::-;17162:3;17183:67;17247:2;17242:3;17183:67;:::i;:::-;17176:74;;17259:93;17348:3;17259:93;:::i;:::-;17377:2;17372:3;17368:12;17361:19;;17020:366;;;:::o;17392:419::-;17558:4;17596:2;17585:9;17581:18;17573:26;;17645:9;17639:4;17635:20;17631:1;17620:9;17616:17;17609:47;17673:131;17799:4;17673:131;:::i;:::-;17665:139;;17392:419;;;:::o;17817:222::-;17957:34;17953:1;17945:6;17941:14;17934:58;18026:5;18021:2;18013:6;18009:15;18002:30;17817:222;:::o;18045:366::-;18187:3;18208:67;18272:2;18267:3;18208:67;:::i;:::-;18201:74;;18284:93;18373:3;18284:93;:::i;:::-;18402:2;18397:3;18393:12;18386:19;;18045:366;;;:::o;18417:419::-;18583:4;18621:2;18610:9;18606:18;18598:26;;18670:9;18664:4;18660:20;18656:1;18645:9;18641:17;18634:47;18698:131;18824:4;18698:131;:::i;:::-;18690:139;;18417:419;;;:::o;18842:180::-;18982:32;18978:1;18970:6;18966:14;18959:56;18842:180;:::o;19028:366::-;19170:3;19191:67;19255:2;19250:3;19191:67;:::i;:::-;19184:74;;19267:93;19356:3;19267:93;:::i;:::-;19385:2;19380:3;19376:12;19369:19;;19028:366;;;:::o;19400:419::-;19566:4;19604:2;19593:9;19589:18;19581:26;;19653:9;19647:4;19643:20;19639:1;19628:9;19624:17;19617:47;19681:131;19807:4;19681:131;:::i;:::-;19673:139;;19400:419;;;:::o;19825:410::-;19865:7;19888:20;19906:1;19888:20;:::i;:::-;19883:25;;19922:20;19940:1;19922:20;:::i;:::-;19917:25;;19977:1;19974;19970:9;19999:30;20017:11;19999:30;:::i;:::-;19988:41;;20178:1;20169:7;20165:15;20162:1;20159:22;20139:1;20132:9;20112:83;20089:139;;20208:18;;:::i;:::-;20089:139;19873:362;19825:410;;;;:::o;20241:180::-;20289:77;20286:1;20279:88;20386:4;20383:1;20376:15;20410:4;20407:1;20400:15;20427:185;20467:1;20484:20;20502:1;20484:20;:::i;:::-;20479:25;;20518:20;20536:1;20518:20;:::i;:::-;20513:25;;20557:1;20547:35;;20562:18;;:::i;:::-;20547:35;20604:1;20601;20597:9;20592:14;;20427:185;;;;:::o;20618:194::-;20658:4;20678:20;20696:1;20678:20;:::i;:::-;20673:25;;20712:20;20730:1;20712:20;:::i;:::-;20707:25;;20756:1;20753;20749:9;20741:17;;20780:1;20774:4;20771:11;20768:37;;;20785:18;;:::i;:::-;20768:37;20618:194;;;;:::o;20818:225::-;20958:34;20954:1;20946:6;20942:14;20935:58;21027:8;21022:2;21014:6;21010:15;21003:33;20818:225;:::o;21049:366::-;21191:3;21212:67;21276:2;21271:3;21212:67;:::i;:::-;21205:74;;21288:93;21377:3;21288:93;:::i;:::-;21406:2;21401:3;21397:12;21390:19;;21049:366;;;:::o;21421:419::-;21587:4;21625:2;21614:9;21610:18;21602:26;;21674:9;21668:4;21664:20;21660:1;21649:9;21645:17;21638:47;21702:131;21828:4;21702:131;:::i;:::-;21694:139;;21421:419;;;:::o;21846:442::-;21995:4;22033:2;22022:9;22018:18;22010:26;;22046:71;22114:1;22103:9;22099:17;22090:6;22046:71;:::i;:::-;22127:72;22195:2;22184:9;22180:18;22171:6;22127:72;:::i;:::-;22209;22277:2;22266:9;22262:18;22253:6;22209:72;:::i;:::-;21846:442;;;;;;:::o;22294:147::-;22395:11;22432:3;22417:18;;22294:147;;;;:::o;22447:114::-;;:::o;22567:398::-;22726:3;22747:83;22828:1;22823:3;22747:83;:::i;:::-;22740:90;;22839:93;22928:3;22839:93;:::i;:::-;22957:1;22952:3;22948:11;22941:18;;22567:398;;;:::o;22971:379::-;23155:3;23177:147;23320:3;23177:147;:::i;:::-;23170:154;;23341:3;23334:10;;22971:379;;;:::o;23356:180::-;23404:77;23401:1;23394:88;23501:4;23498:1;23491:15;23525:4;23522:1;23515:15;23542:180;23590:77;23587:1;23580:88;23687:4;23684:1;23677:15;23711:4;23708:1;23701:15;23728:143;23785:5;23816:6;23810:13;23801:22;;23832:33;23859:5;23832:33;:::i;:::-;23728:143;;;;:::o;23877:351::-;23947:6;23996:2;23984:9;23975:7;23971:23;23967:32;23964:119;;;24002:79;;:::i;:::-;23964:119;24122:1;24147:64;24203:7;24194:6;24183:9;24179:22;24147:64;:::i;:::-;24137:74;;24093:128;23877:351;;;;:::o;24234:85::-;24279:7;24308:5;24297:16;;24234:85;;;:::o;24325:158::-;24383:9;24416:61;24434:42;24443:32;24469:5;24443:32;:::i;:::-;24434:42;:::i;:::-;24416:61;:::i;:::-;24403:74;;24325:158;;;:::o;24489:147::-;24584:45;24623:5;24584:45;:::i;:::-;24579:3;24572:58;24489:147;;:::o;24642:114::-;24709:6;24743:5;24737:12;24727:22;;24642:114;;;:::o;24762:184::-;24861:11;24895:6;24890:3;24883:19;24935:4;24930:3;24926:14;24911:29;;24762:184;;;;:::o;24952:132::-;25019:4;25042:3;25034:11;;25072:4;25067:3;25063:14;25055:22;;24952:132;;;:::o;25090:108::-;25167:24;25185:5;25167:24;:::i;:::-;25162:3;25155:37;25090:108;;:::o;25204:179::-;25273:10;25294:46;25336:3;25328:6;25294:46;:::i;:::-;25372:4;25367:3;25363:14;25349:28;;25204:179;;;;:::o;25389:113::-;25459:4;25491;25486:3;25482:14;25474:22;;25389:113;;;:::o;25538:732::-;25657:3;25686:54;25734:5;25686:54;:::i;:::-;25756:86;25835:6;25830:3;25756:86;:::i;:::-;25749:93;;25866:56;25916:5;25866:56;:::i;:::-;25945:7;25976:1;25961:284;25986:6;25983:1;25980:13;25961:284;;;26062:6;26056:13;26089:63;26148:3;26133:13;26089:63;:::i;:::-;26082:70;;26175:60;26228:6;26175:60;:::i;:::-;26165:70;;26021:224;26008:1;26005;26001:9;25996:14;;25961:284;;;25965:14;26261:3;26254:10;;25662:608;;;25538:732;;;;:::o;26276:831::-;26539:4;26577:3;26566:9;26562:19;26554:27;;26591:71;26659:1;26648:9;26644:17;26635:6;26591:71;:::i;:::-;26672:80;26748:2;26737:9;26733:18;26724:6;26672:80;:::i;:::-;26799:9;26793:4;26789:20;26784:2;26773:9;26769:18;26762:48;26827:108;26930:4;26921:6;26827:108;:::i;:::-;26819:116;;26945:72;27013:2;27002:9;26998:18;26989:6;26945:72;:::i;:::-;27027:73;27095:3;27084:9;27080:19;27071:6;27027:73;:::i;:::-;26276:831;;;;;;;;:::o;27113:807::-;27362:4;27400:3;27389:9;27385:19;27377:27;;27414:71;27482:1;27471:9;27467:17;27458:6;27414:71;:::i;:::-;27495:72;27563:2;27552:9;27548:18;27539:6;27495:72;:::i;:::-;27577:80;27653:2;27642:9;27638:18;27629:6;27577:80;:::i;:::-;27667;27743:2;27732:9;27728:18;27719:6;27667:80;:::i;:::-;27757:73;27825:3;27814:9;27810:19;27801:6;27757:73;:::i;:::-;27840;27908:3;27897:9;27893:19;27884:6;27840:73;:::i;:::-;27113:807;;;;;;;;;:::o;27926:143::-;27983:5;28014:6;28008:13;27999:22;;28030:33;28057:5;28030:33;:::i;:::-;27926:143;;;;:::o;28075:663::-;28163:6;28171;28179;28228:2;28216:9;28207:7;28203:23;28199:32;28196:119;;;28234:79;;:::i;:::-;28196:119;28354:1;28379:64;28435:7;28426:6;28415:9;28411:22;28379:64;:::i;:::-;28369:74;;28325:128;28492:2;28518:64;28574:7;28565:6;28554:9;28550:22;28518:64;:::i;:::-;28508:74;;28463:129;28631:2;28657:64;28713:7;28704:6;28693:9;28689:22;28657:64;:::i;:::-;28647:74;;28602:129;28075:663;;;;;:::o

Swarm Source

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