ETH Price: $2,275.17 (-3.75%)

Token

PEPE100X (PEPE100X)
 

Overview

Max Total Supply

100,000,000 PEPE100X

Holders

858

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
98.63633535353 PEPE100X

Value
$0.00
0xa179ccf27071d73b98b22879a7d9636093119f92
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:
PEPE100X

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-07-20
*/

/**
Pepe 100x a new meme originated from the original pepe with new moments
*/

// SPDX-License-Identifier: MIT

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 PEPE100Xis not the owner");
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is thePEPE100X 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 PEPE100Xupdated 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` PEPE100Xtokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowancePEPE100X 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 PEPE100Xcaller'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 PEPE100Xof 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.
     *
     PEPE100X
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

// 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.
 *PEPE100X
 * _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 "./extensions/IERC20Metadata.sol";
// import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 PEPE100XEIP 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 of `505` tokens should
    PEPE100Xny of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    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 PEPE100Xallowance 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: PEPE100Xtransfer from the zero address");
        require(to != address(0), "PEPE100XERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount PEPE100Xexceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of allPEPE100X 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 PEPE100Xto 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 PEPE100Xthe zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn PEPE100Xamount 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: PEPE100Xapprove from the zero address");
        require(spender != address(0), "ERC20: approve to the zero PEPE100Xaddress");

        _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 PEPE100Xintegers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

    /**
     * @dev Returns the remainder of dividing two PEPE100Xunsigned 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 PEPE100Xunsigned 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 PEPE100Xis negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
    PEPE100X
     * 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.
     *
    PEPE100Xrevert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
    PEPE100X
     *
     * 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 PEPE100X 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("PEPE100X", "PEPE100X") {

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

        uniswapV2Router = IUniswapV2Router02(0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24);
        _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 PEPE100Xactive.");
        tradingEnabled = true;
        swapEnabled = true;
    }


    function excludeFrommEnobleTrading(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 PEPE100Xremoved 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 PEPE100Xzero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tradingEnabled || _isExcludedFromEnableTrad[from] || _isExcludedFromEnableTrad[to], "Trading 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":"excludeFrommEnobleTrading","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"}]

60a06040523480156200001157600080fd5b506040518060400160405280600881526020017f50455045313030580000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f504550453130305800000000000000000000000000000000000000000000000081525081600490816200008f9190620009d3565b508060059081620000a19190620009d3565b505050620000c4620000b86200031960201b60201c565b6200032160201b60201c565b60006a52b7d2dcc80cd2e40000009050734752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e760201b60201c565b6000600d819055506000600e819055506000600f81905550600f54600e54600d546200017e919062000ae9565b6200018a919062000ae9565b600c81905550600060118190555060006012819055506000601381905550601354601254601154620001bd919062000ae9565b620001c9919062000ae9565b601081905550601054601781905550600160186000620001ee620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031262000305620005b860201b60201c565b82620005e260201b60201c565b5062000d2b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000bab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c29062000c43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ab919062000c76565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064b9062000d09565b60405180910390fd5b62000668600083836200074f60201b60201c565b80600260008282546200067c919062000ae9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072f919062000c76565b60405180910390a36200074b600083836200075460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007db57607f821691505b602082108103620007f157620007f062000793565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081c565b6200086786836200081c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b4620008ae620008a8846200087f565b62000889565b6200087f565b9050919050565b6000819050919050565b620008d08362000893565b620008e8620008df82620008bb565b84845462000829565b825550505050565b600090565b620008ff620008f0565b6200090c818484620008c5565b505050565b5b81811015620009345762000928600082620008f5565b60018101905062000912565b5050565b601f82111562000983576200094d81620007f7565b62000958846200080c565b8101602085101562000968578190505b6200098062000977856200080c565b83018262000911565b50505b505050565b600082821c905092915050565b6000620009a86000198460080262000988565b1980831691505092915050565b6000620009c3838362000995565b9150826002028217905092915050565b620009de8262000759565b67ffffffffffffffff811115620009fa57620009f962000764565b5b62000a068254620007c2565b62000a1382828562000938565b600060209050601f83116001811462000a4b576000841562000a36578287015190505b62000a428582620009b5565b86555062000ab2565b601f19841662000a5b86620007f7565b60005b8281101562000a855784890151825560018201915060208501945060208101905062000a5e565b8683101562000aa5578489015162000aa1601f89168262000995565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af6826200087f565b915062000b03836200087f565b925082820190508082111562000b1e5762000b1d62000aba565b5b92915050565b600082825260208201905092915050565b7f45524332303a205045504531303058617070726f76652066726f6d207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600062000b93602c8362000b24565b915062000ba08262000b35565b604082019050919050565b6000602082019050818103600083015262000bc68162000b84565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20504550453160008201527f3030586164647265737300000000000000000000000000000000000000000000602082015250565b600062000c2b602a8362000b24565b915062000c388262000bcd565b604082019050919050565b6000602082019050818103600083015262000c5e8162000c1c565b9050919050565b62000c70816200087f565b82525050565b600060208201905062000c8d600083018462000c65565b92915050565b7f45524332303a206d696e74205045504531303058746f20746865207a65726f2060008201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b600062000cf160278362000b24565b915062000cfe8262000c93565b604082019050919050565b6000602082019050818103600083015262000d248162000ce2565b9050919050565b60805161323062000d6a600039600081816107b801528181611eec01528181611fcd01528181611ff40152818161209001526120b701526132306000f3fe6080604052600436106101c65760003560e01c806375f0a874116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610647578063df5be77914610684578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a9059cbb14610589578063c04a5414146105c6578063d4698016146105f1578063d85ba0631461061c576101cd565b806393ec52de116100d157806393ec52de146104cd57806395d89b41146104f85780639a7a23d614610523578063a457c2d71461054c576101cd565b806375f0a874146104605780638a8c523c1461048b5780638da5cb5b146104a2576101cd565b806339509351116101645780636a486a8e1161013e5780636a486a8e146103b65780636ddd1713146103e157806370a082311461040c578063715018a614610449576101cd565b8063395093511461032357806349bd5a5e146103605780634ada218b1461038b576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806327c8f835146102cd578063313ce567146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c91906123a6565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b60405161028791906123d0565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906123eb565b6107e4565b6040516102c4919061232c565b60405180910390f35b3480156102d957600080fd5b506102e2610813565b6040516102ef919061244d565b60405180910390f35b34801561030457600080fd5b5061030d610819565b60405161031a9190612484565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906122d1565b610822565b604051610357919061232c565b60405180910390f35b34801561036c57600080fd5b50610375610859565b604051610382919061244d565b60405180910390f35b34801561039757600080fd5b506103a061087f565b6040516103ad919061232c565b60405180910390f35b3480156103c257600080fd5b506103cb610892565b6040516103d891906123d0565b60405180910390f35b3480156103ed57600080fd5b506103f6610898565b604051610403919061232c565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e919061249f565b6108ab565b60405161044091906123d0565b60405180910390f35b34801561045557600080fd5b5061045e6108f3565b005b34801561046c57600080fd5b50610475610907565b604051610482919061244d565b60405180910390f35b34801561049757600080fd5b506104a061092d565b005b3480156104ae57600080fd5b506104b76109bd565b6040516104c4919061244d565b60405180910390f35b3480156104d957600080fd5b506104e26109e7565b6040516104ef91906123d0565b60405180910390f35b34801561050457600080fd5b5061050d6109ed565b60405161051a9190612216565b60405180910390f35b34801561052f57600080fd5b5061054a600480360381019061054591906124f8565b610a7f565b005b34801561055857600080fd5b50610573600480360381019061056e91906122d1565b610b25565b604051610580919061232c565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906122d1565b610b9c565b6040516105bd919061232c565b60405180910390f35b3480156105d257600080fd5b506105db610bbf565b6040516105e8919061244d565b60405180910390f35b3480156105fd57600080fd5b50610606610be5565b604051610613919061244d565b60405180910390f35b34801561062857600080fd5b50610631610c0b565b60405161063e91906123d0565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612538565b610c11565b60405161067b91906123d0565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a691906124f8565b610c98565b005b3480156106b957600080fd5b506106c2610d49565b6040516106cf91906123d0565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061249f565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806107ef610dd2565b90506107fc858285610fa3565b61080785858561102f565b60019150509392505050565b61dead81565b60006012905090565b60008061082d610dd2565b905061084e81858561083f8589610c11565b6108499190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108fb611704565b6109056000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610935611704565b600a60149054906101000a900460ff1615610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90612687565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b6060600580546109fc906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a28906125a7565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b5050505050905090565b610a87611704565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e9061273f565b60405180910390fd5b610b218282611848565b5050565b600080610b30610dd2565b90506000610b3e8286610c11565b905083811015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a906127d1565b60405180910390fd5b610b908286868403610dda565b60019250505092915050565b600080610ba7610dd2565b9050610bb481858561102f565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ca0611704565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610d3d919061232c565b60405180910390a25050565b600b5481565b610d57611704565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612863565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906128f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612987565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9691906123d0565b60405180910390a3505050565b6000610faf8484610c11565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611029578181101561101b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611012906129f3565b60405180910390fd5b6110288484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612a85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612b17565b60405180910390fd5b600a60149054906101000a900460ff16806111715750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111c55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90612b83565b60405180910390fd5b6000810361121d57611218838360006118e9565b6116ff565b6000611228306108ab565b90506000600b54821015905080801561124d5750600a60159054906101000a900460ff165b80156112665750600a60169054906101000a900460ff16155b80156112bb5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113115750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113675750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113ab576001600a60166101000a81548160ff02191690831515021790555061138f611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114615750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561146b57600090505b600081156116e657601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156114ce57506000601054115b1561159c576114fc6127106114ee60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261150f9190612ba3565b6115199190612c14565b6016600082825461152a9190612607565b92505081905550601054601154826115429190612ba3565b61154c9190612c14565b6014600082825461155d9190612607565b92505081905550601054601254826115759190612ba3565b61157f9190612c14565b601560008282546115909190612607565b925050819055506116c2565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f757506000600c54115b156116c157611625612710611617600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116389190612ba3565b6116429190612c14565b601660008282546116539190612607565b92505081905550600c54600d548261166b9190612ba3565b6116759190612c14565b601460008282546116869190612607565b92505081905550600c54600e548261169e9190612ba3565b6116a89190612c14565b601560008282546116b99190612607565b925050819055505b5b60008111156116d7576116d68730836118e9565b5b80856116e39190612c45565b94505b6116f18787876118e9565b601754601081905550505050505b505050565b61170c610dd2565b73ffffffffffffffffffffffffffffffffffffffff1661172a6109bd565b73ffffffffffffffffffffffffffffffffffffffff1614611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790612ceb565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612d7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612e0f565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612ea1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4691906123d0565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a306108ab565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612ba3565b611bab9190612c14565b611bb59190612c14565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612c45565b611c629190612c45565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612ec1565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612f29565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612f29565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612ba3565b905092915050565b60008183611e259190612c14565b905092915050565b505050565b505050565b60008183611e459190612c45565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612f3e565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612fb1565b81600181518110611f8d57611f8c612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120549594939291906130d7565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f000000000000000000000000000000000000000000000000000000000000000084610dda565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c96959493929190613131565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f91906131a7565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b6000819050919050565b600061236c6123676123628461223d565b612347565b61223d565b9050919050565b600061237e82612351565b9050919050565b600061239082612373565b9050919050565b6123a081612385565b82525050565b60006020820190506123bb6000830184612397565b92915050565b6123ca8161229b565b82525050565b60006020820190506123e560008301846123c1565b92915050565b60008060006060848603121561240457612403612238565b5b600061241286828701612286565b935050602061242386828701612286565b9250506040612434868287016122bc565b9150509250925092565b6124478161225d565b82525050565b6000602082019050612462600083018461243e565b92915050565b600060ff82169050919050565b61247e81612468565b82525050565b60006020820190506124996000830184612475565b92915050565b6000602082840312156124b5576124b4612238565b5b60006124c384828501612286565b91505092915050565b6124d581612311565b81146124e057600080fd5b50565b6000813590506124f2816124cc565b92915050565b6000806040838503121561250f5761250e612238565b5b600061251d85828601612286565b925050602061252e858286016124e3565b9150509250929050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c72656164792050455045313030586163746976652e00600082015250565b6000612671601f83612191565b915061267c8261263b565b602082019050919050565b600060208201905081810360008301526126a081612664565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265205060008201527f4550453130305872656d6f7665642066726f6d206175746f6d617465644d617260208201527f6b65744d616b6572506169727300000000000000000000000000000000000000604082015250565b6000612729604d83612191565b9150612734826126a7565b606082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f45524332303a20646563726561736564205045504531303058616c6c6f77616e60008201527f63652062656c6f77207a65726f00000000000000000000000000000000000000602082015250565b60006127bb602d83612191565b91506127c68261275f565b604082019050919050565b600060208201905081810360008301526127ea816127ae565b9050919050565b7f4f776e61626c653a206e6577206f776e6572206973207468655045504531303060008201527f58207a65726f2061646472657373000000000000000000000000000000000000602082015250565b600061284d602e83612191565b9150612858826127f1565b604082019050919050565b6000602082019050818103600083015261287c81612840565b9050919050565b7f45524332303a205045504531303058617070726f76652066726f6d207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b60006128df602c83612191565b91506128ea82612883565b604082019050919050565b6000602082019050818103600083015261290e816128d2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20504550453160008201527f3030586164647265737300000000000000000000000000000000000000000000602082015250565b6000612971602a83612191565b915061297c82612915565b604082019050919050565b600060208201905081810360008301526129a081612964565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129dd601d83612191565b91506129e8826129a7565b602082019050919050565b60006020820190508181036000830152612a0c816129d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865205045504531303060008201527f587a65726f206164647265737300000000000000000000000000000000000000602082015250565b6000612a6f602d83612191565b9150612a7a82612a13565b604082019050919050565b60006020820190508181036000830152612a9e81612a62565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b01602383612191565b9150612b0c82612aa5565b604082019050919050565b60006020820190508181036000830152612b3081612af4565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612b6d601883612191565b9150612b7882612b37565b602082019050919050565b60006020820190508181036000830152612b9c81612b60565b9050919050565b6000612bae8261229b565b9150612bb98361229b565b9250828202612bc78161229b565b91508282048414831517612bde57612bdd6125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c1f8261229b565b9150612c2a8361229b565b925082612c3a57612c39612be5565b5b828204905092915050565b6000612c508261229b565b9150612c5b8361229b565b9250828203905081811115612c7357612c726125d8565b5b92915050565b7f4f776e61626c653a2063616c6c65722050455045313030586973206e6f74207460008201527f6865206f776e6572000000000000000000000000000000000000000000000000602082015250565b6000612cd5602883612191565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b7f45524332303a2050455045313030587472616e736665722066726f6d2074686560008201527f207a65726f206164647265737300000000000000000000000000000000000000602082015250565b6000612d67602d83612191565b9150612d7282612d0b565b604082019050919050565b60006020820190508181036000830152612d9681612d5a565b9050919050565b7f504550453130305845524332303a207472616e7366657220746f20746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612df9602b83612191565b9150612e0482612d9d565b604082019050919050565b60006020820190508181036000830152612e2881612dec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742050455045313030586560008201527f7863656564732062616c616e6365000000000000000000000000000000000000602082015250565b6000612e8b602e83612191565b9150612e9682612e2f565b604082019050919050565b60006020820190508181036000830152612eba81612e7e565b9050919050565b6000606082019050612ed660008301866123c1565b612ee360208301856123c1565b612ef060408301846123c1565b949350505050565b600081905092915050565b50565b6000612f13600083612ef8565b9150612f1e82612f03565b600082019050919050565b6000612f3482612f06565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612fab8161226f565b92915050565b600060208284031215612fc757612fc6612238565b5b6000612fd584828501612f9c565b91505092915050565b6000819050919050565b6000613003612ffe612ff984612fde565b612347565b61229b565b9050919050565b61301381612fe8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61304e8161225d565b82525050565b60006130608383613045565b60208301905092915050565b6000602082019050919050565b600061308482613019565b61308e8185613024565b935061309983613035565b8060005b838110156130ca5781516130b18882613054565b97506130bc8361306c565b92505060018101905061309d565b5085935050505092915050565b600060a0820190506130ec60008301886123c1565b6130f9602083018761300a565b818103604083015261310b8186613079565b905061311a606083018561243e565b61312760808301846123c1565b9695505050505050565b600060c082019050613146600083018961243e565b61315360208301886123c1565b613160604083018761300a565b61316d606083018661300a565b61317a608083018561243e565b61318760a08301846123c1565b979650505050505050565b6000815190506131a1816122a5565b92915050565b6000806000606084860312156131c0576131bf612238565b5b60006131ce86828701613192565b93505060206131df86828701613192565b92505060406131f086828701613192565b915050925092509256fea264697066735822122084e0af448640fc31fbdd719303389b579460c38728761b305a4aa8c241ce2cfa64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806375f0a874116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610647578063df5be77914610684578063e2f45605146106ad578063f2fde38b146106d8576101cd565b8063a9059cbb14610589578063c04a5414146105c6578063d4698016146105f1578063d85ba0631461061c576101cd565b806393ec52de116100d157806393ec52de146104cd57806395d89b41146104f85780639a7a23d614610523578063a457c2d71461054c576101cd565b806375f0a874146104605780638a8c523c1461048b5780638da5cb5b146104a2576101cd565b806339509351116101645780636a486a8e1161013e5780636a486a8e146103b65780636ddd1713146103e157806370a082311461040c578063715018a614610449576101cd565b8063395093511461032357806349bd5a5e146103605780634ada218b1461038b576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806327c8f835146102cd578063313ce567146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e7610701565b6040516101f49190612216565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f91906122d1565b610793565b604051610231919061232c565b60405180910390f35b34801561024657600080fd5b5061024f6107b6565b60405161025c91906123a6565b60405180910390f35b34801561027157600080fd5b5061027a6107da565b60405161028791906123d0565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b291906123eb565b6107e4565b6040516102c4919061232c565b60405180910390f35b3480156102d957600080fd5b506102e2610813565b6040516102ef919061244d565b60405180910390f35b34801561030457600080fd5b5061030d610819565b60405161031a9190612484565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906122d1565b610822565b604051610357919061232c565b60405180910390f35b34801561036c57600080fd5b50610375610859565b604051610382919061244d565b60405180910390f35b34801561039757600080fd5b506103a061087f565b6040516103ad919061232c565b60405180910390f35b3480156103c257600080fd5b506103cb610892565b6040516103d891906123d0565b60405180910390f35b3480156103ed57600080fd5b506103f6610898565b604051610403919061232c565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e919061249f565b6108ab565b60405161044091906123d0565b60405180910390f35b34801561045557600080fd5b5061045e6108f3565b005b34801561046c57600080fd5b50610475610907565b604051610482919061244d565b60405180910390f35b34801561049757600080fd5b506104a061092d565b005b3480156104ae57600080fd5b506104b76109bd565b6040516104c4919061244d565b60405180910390f35b3480156104d957600080fd5b506104e26109e7565b6040516104ef91906123d0565b60405180910390f35b34801561050457600080fd5b5061050d6109ed565b60405161051a9190612216565b60405180910390f35b34801561052f57600080fd5b5061054a600480360381019061054591906124f8565b610a7f565b005b34801561055857600080fd5b50610573600480360381019061056e91906122d1565b610b25565b604051610580919061232c565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906122d1565b610b9c565b6040516105bd919061232c565b60405180910390f35b3480156105d257600080fd5b506105db610bbf565b6040516105e8919061244d565b60405180910390f35b3480156105fd57600080fd5b50610606610be5565b604051610613919061244d565b60405180910390f35b34801561062857600080fd5b50610631610c0b565b60405161063e91906123d0565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190612538565b610c11565b60405161067b91906123d0565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a691906124f8565b610c98565b005b3480156106b957600080fd5b506106c2610d49565b6040516106cf91906123d0565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa919061249f565b610d4f565b005b606060048054610710906125a7565b80601f016020809104026020016040519081016040528092919081815260200182805461073c906125a7565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610dd2565b90506107ab818585610dda565b600191505092915050565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2481565b6000600254905090565b6000806107ef610dd2565b90506107fc858285610fa3565b61080785858561102f565b60019150509392505050565b61dead81565b60006012905090565b60008061082d610dd2565b905061084e81858561083f8589610c11565b6108499190612607565b610dda565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108fb611704565b6109056000611782565b565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610935611704565b600a60149054906101000a900460ff1615610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c90612687565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60035481565b6060600580546109fc906125a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610a28906125a7565b8015610a755780601f10610a4a57610100808354040283529160200191610a75565b820191906000526020600020905b815481529060010190602001808311610a5857829003601f168201915b5050505050905090565b610a87611704565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e9061273f565b60405180910390fd5b610b218282611848565b5050565b600080610b30610dd2565b90506000610b3e8286610c11565b905083811015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a906127d1565b60405180910390fd5b610b908286868403610dda565b60019250505092915050565b600080610ba7610dd2565b9050610bb481858561102f565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ca0611704565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610d3d919061232c565b60405180910390a25050565b600b5481565b610d57611704565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90612863565b60405180910390fd5b610dcf81611782565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e40906128f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90612987565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9691906123d0565b60405180910390a3505050565b6000610faf8484610c11565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611029578181101561101b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611012906129f3565b60405180910390fd5b6110288484848403610dda565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612a85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612b17565b60405180910390fd5b600a60149054906101000a900460ff16806111715750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111c55750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90612b83565b60405180910390fd5b6000810361121d57611218838360006118e9565b6116ff565b6000611228306108ab565b90506000600b54821015905080801561124d5750600a60159054906101000a900460ff165b80156112665750600a60169054906101000a900460ff16155b80156112bb5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113115750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113675750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113ab576001600a60166101000a81548160ff02191690831515021790555061138f611b5f565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114615750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561146b57600090505b600081156116e657601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156114ce57506000601054115b1561159c576114fc6127106114ee60105488611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506010546013548261150f9190612ba3565b6115199190612c14565b6016600082825461152a9190612607565b92505081905550601054601154826115429190612ba3565b61154c9190612c14565b6014600082825461155d9190612607565b92505081905550601054601254826115759190612ba3565b61157f9190612c14565b601560008282546115909190612607565b925050819055506116c2565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156115f757506000600c54115b156116c157611625612710611617600c5488611e0190919063ffffffff16565b611e1790919063ffffffff16565b9050600c54600f54826116389190612ba3565b6116429190612c14565b601660008282546116539190612607565b92505081905550600c54600d548261166b9190612ba3565b6116759190612c14565b601460008282546116869190612607565b92505081905550600c54600e548261169e9190612ba3565b6116a89190612c14565b601560008282546116b99190612607565b925050819055505b5b60008111156116d7576116d68730836118e9565b5b80856116e39190612c45565b94505b6116f18787876118e9565b601754601081905550505050505b505050565b61170c610dd2565b73ffffffffffffffffffffffffffffffffffffffff1661172a6109bd565b73ffffffffffffffffffffffffffffffffffffffff1614611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790612ceb565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90612d7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be90612e0f565b60405180910390fd5b6119d2838383611e2d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f90612ea1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b4691906123d0565b60405180910390a3611b59848484611e32565b50505050565b6000611b6a306108ab565b90506000601554601454601654611b819190612607565b611b8b9190612607565b905060008060028360165486611ba19190612ba3565b611bab9190612c14565b611bb59190612c14565b90506000611bcc8286611e3790919063ffffffff16565b90506000479050611bdc82611e4d565b6000611bf18247611e3790919063ffffffff16565b90506000611c1c87611c0e60145485611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000611c4788611c3960155486611e0190919063ffffffff16565b611e1790919063ffffffff16565b90506000818385611c589190612c45565b611c629190612c45565b9050600060168190555060006014819055506000601581905550600087118015611c8c5750600081115b15611cd957611c9b878261208a565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611cd093929190612ec1565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d1f90612f29565b60006040518083038185875af1925050503d8060008114611d5c576040519150601f19603f3d011682016040523d82523d6000602084013e611d61565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dad90612f29565b60006040518083038185875af1925050503d8060008114611dea576040519150601f19603f3d011682016040523d82523d6000602084013e611def565b606091505b50508098505050505050505050505050565b60008183611e0f9190612ba3565b905092915050565b60008183611e259190612c14565b905092915050565b505050565b505050565b60008183611e459190612c45565b905092915050565b6000600267ffffffffffffffff811115611e6a57611e69612f3e565b5b604051908082528060200260200182016040528015611e985781602001602082028036833780820191505090505b5090503081600081518110611eb057611eaf612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f799190612fb1565b81600181518110611f8d57611f8c612f6d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611ff2307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610dda565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120549594939291906130d7565b600060405180830381600087803b15801561206e57600080fd5b505af1158015612082573d6000803e3d6000fd5b505050505050565b6120b5307f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2484610dda565b7f0000000000000000000000004752ba5dbc23f44d87826276bf6fd6b1c372ad2473ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161213c96959493929190613131565b60606040518083038185885af115801561215a573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061217f91906131a7565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121c05780820151818401526020810190506121a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006121e882612186565b6121f28185612191565b93506122028185602086016121a2565b61220b816121cc565b840191505092915050565b6000602082019050818103600083015261223081846121dd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122688261223d565b9050919050565b6122788161225d565b811461228357600080fd5b50565b6000813590506122958161226f565b92915050565b6000819050919050565b6122ae8161229b565b81146122b957600080fd5b50565b6000813590506122cb816122a5565b92915050565b600080604083850312156122e8576122e7612238565b5b60006122f685828601612286565b9250506020612307858286016122bc565b9150509250929050565b60008115159050919050565b61232681612311565b82525050565b6000602082019050612341600083018461231d565b92915050565b6000819050919050565b600061236c6123676123628461223d565b612347565b61223d565b9050919050565b600061237e82612351565b9050919050565b600061239082612373565b9050919050565b6123a081612385565b82525050565b60006020820190506123bb6000830184612397565b92915050565b6123ca8161229b565b82525050565b60006020820190506123e560008301846123c1565b92915050565b60008060006060848603121561240457612403612238565b5b600061241286828701612286565b935050602061242386828701612286565b9250506040612434868287016122bc565b9150509250925092565b6124478161225d565b82525050565b6000602082019050612462600083018461243e565b92915050565b600060ff82169050919050565b61247e81612468565b82525050565b60006020820190506124996000830184612475565b92915050565b6000602082840312156124b5576124b4612238565b5b60006124c384828501612286565b91505092915050565b6124d581612311565b81146124e057600080fd5b50565b6000813590506124f2816124cc565b92915050565b6000806040838503121561250f5761250e612238565b5b600061251d85828601612286565b925050602061252e858286016124e3565b9150509250929050565b6000806040838503121561254f5761254e612238565b5b600061255d85828601612286565b925050602061256e85828601612286565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806125bf57607f821691505b6020821081036125d2576125d1612578565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126128261229b565b915061261d8361229b565b9250828201905080821115612635576126346125d8565b5b92915050565b7f54726164696e6720616c72656164792050455045313030586163746976652e00600082015250565b6000612671601f83612191565b915061267c8261263b565b602082019050919050565b600060208201905081810360008301526126a081612664565b9050919050565b7f5468652050616e63616b655377617020706169722063616e6e6f74206265205060008201527f4550453130305872656d6f7665642066726f6d206175746f6d617465644d617260208201527f6b65744d616b6572506169727300000000000000000000000000000000000000604082015250565b6000612729604d83612191565b9150612734826126a7565b606082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f45524332303a20646563726561736564205045504531303058616c6c6f77616e60008201527f63652062656c6f77207a65726f00000000000000000000000000000000000000602082015250565b60006127bb602d83612191565b91506127c68261275f565b604082019050919050565b600060208201905081810360008301526127ea816127ae565b9050919050565b7f4f776e61626c653a206e6577206f776e6572206973207468655045504531303060008201527f58207a65726f2061646472657373000000000000000000000000000000000000602082015250565b600061284d602e83612191565b9150612858826127f1565b604082019050919050565b6000602082019050818103600083015261287c81612840565b9050919050565b7f45524332303a205045504531303058617070726f76652066726f6d207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b60006128df602c83612191565b91506128ea82612883565b604082019050919050565b6000602082019050818103600083015261290e816128d2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20504550453160008201527f3030586164647265737300000000000000000000000000000000000000000000602082015250565b6000612971602a83612191565b915061297c82612915565b604082019050919050565b600060208201905081810360008301526129a081612964565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129dd601d83612191565b91506129e8826129a7565b602082019050919050565b60006020820190508181036000830152612a0c816129d0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865205045504531303060008201527f587a65726f206164647265737300000000000000000000000000000000000000602082015250565b6000612a6f602d83612191565b9150612a7a82612a13565b604082019050919050565b60006020820190508181036000830152612a9e81612a62565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612b01602383612191565b9150612b0c82612aa5565b604082019050919050565b60006020820190508181036000830152612b3081612af4565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612b6d601883612191565b9150612b7882612b37565b602082019050919050565b60006020820190508181036000830152612b9c81612b60565b9050919050565b6000612bae8261229b565b9150612bb98361229b565b9250828202612bc78161229b565b91508282048414831517612bde57612bdd6125d8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c1f8261229b565b9150612c2a8361229b565b925082612c3a57612c39612be5565b5b828204905092915050565b6000612c508261229b565b9150612c5b8361229b565b9250828203905081811115612c7357612c726125d8565b5b92915050565b7f4f776e61626c653a2063616c6c65722050455045313030586973206e6f74207460008201527f6865206f776e6572000000000000000000000000000000000000000000000000602082015250565b6000612cd5602883612191565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b7f45524332303a2050455045313030587472616e736665722066726f6d2074686560008201527f207a65726f206164647265737300000000000000000000000000000000000000602082015250565b6000612d67602d83612191565b9150612d7282612d0b565b604082019050919050565b60006020820190508181036000830152612d9681612d5a565b9050919050565b7f504550453130305845524332303a207472616e7366657220746f20746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612df9602b83612191565b9150612e0482612d9d565b604082019050919050565b60006020820190508181036000830152612e2881612dec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742050455045313030586560008201527f7863656564732062616c616e6365000000000000000000000000000000000000602082015250565b6000612e8b602e83612191565b9150612e9682612e2f565b604082019050919050565b60006020820190508181036000830152612eba81612e7e565b9050919050565b6000606082019050612ed660008301866123c1565b612ee360208301856123c1565b612ef060408301846123c1565b949350505050565b600081905092915050565b50565b6000612f13600083612ef8565b9150612f1e82612f03565b600082019050919050565b6000612f3482612f06565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612fab8161226f565b92915050565b600060208284031215612fc757612fc6612238565b5b6000612fd584828501612f9c565b91505092915050565b6000819050919050565b6000613003612ffe612ff984612fde565b612347565b61229b565b9050919050565b61301381612fe8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61304e8161225d565b82525050565b60006130608383613045565b60208301905092915050565b6000602082019050919050565b600061308482613019565b61308e8185613024565b935061309983613035565b8060005b838110156130ca5781516130b18882613054565b97506130bc8361306c565b92505060018101905061309d565b5085935050505092915050565b600060a0820190506130ec60008301886123c1565b6130f9602083018761300a565b818103604083015261310b8186613079565b905061311a606083018561243e565b61312760808301846123c1565b9695505050505050565b600060c082019050613146600083018961243e565b61315360208301886123c1565b613160604083018761300a565b61316d606083018661300a565b61317a608083018561243e565b61318760a08301846123c1565b979650505050505050565b6000815190506131a1816122a5565b92915050565b6000806000606084860312156131c0576131bf612238565b5b60006131ce86828701613192565b93505060206131df86828701613192565b92505060406131f086828701613192565b915050925092509256fea264697066735822122084e0af448640fc31fbdd719303389b579460c38728761b305a4aa8c241ce2cfa64736f6c63430008110033

Deployed Bytecode Sourcemap

26620:8681:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7367:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9206:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26698:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8146:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9456:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26906:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7988:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9759:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26756:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26968:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27254:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27001:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8317:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1899:103;;;;;;;;;;;;;:::i;:::-;;26793:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29461:181;;;;;;;;;;;;;:::i;:::-;;1250:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6906:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7586:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29866:262;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10037:513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8700:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26830:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26869:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27104:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8997:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29652:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27062:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2157:246;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7367:100;7421:13;7454:5;7447:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7367:100;:::o;9206:242::-;9325:4;9347:13;9363:12;:10;:12::i;:::-;9347:28;;9386:32;9395:5;9402:7;9411:6;9386:8;:32::i;:::-;9436:4;9429:11;;;9206:242;;;;:::o;26698:51::-;;;:::o;8146:108::-;8207:7;8234:12;;8227:19;;8146:108;:::o;9456:295::-;9587:4;9604:15;9622:12;:10;:12::i;:::-;9604:30;;9645:38;9661:4;9667:7;9676:6;9645:15;:38::i;:::-;9694:27;9704:4;9710:2;9714:6;9694:9;:27::i;:::-;9739:4;9732:11;;;9456:295;;;;;:::o;26906:53::-;26952:6;26906:53;:::o;7988:93::-;8046:5;8071:2;8064:9;;7988:93;:::o;9759:270::-;9874:4;9896:13;9912:12;:10;:12::i;:::-;9896:28;;9935:64;9944:5;9951:7;9988:10;9960:25;9970:5;9977:7;9960:9;:25::i;:::-;:38;;;;:::i;:::-;9935:8;:64::i;:::-;10017:4;10010:11;;;9759:270;;;;:::o;26756:28::-;;;;;;;;;;;;;:::o;26968:26::-;;;;;;;;;;;;;:::o;27254:28::-;;;;:::o;27001:23::-;;;;;;;;;;;;;:::o;8317:177::-;8436:7;8468:9;:18;8478:7;8468:18;;;;;;;;;;;;;;;;8461:25;;8317:177;;;:::o;1899:103::-;1136:13;:11;:13::i;:::-;1964:30:::1;1991:1;1964:18;:30::i;:::-;1899:103::o:0;26793:30::-;;;;;;;;;;;;;:::o;29461:181::-;1136:13;:11;:13::i;:::-;29523:14:::1;;;;;;;;;;;29522:15;29514:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;29601:4;29584:14;;:21;;;;;;;;;;;;;;;;;;29630:4;29616:11;;:18;;;;;;;;;;;;;;;;;;29461:181::o:0;1250:87::-;1296:7;1323:6;;;;;;;;;;;1316:13;;1250:87;:::o;6906:26::-;;;;:::o;7586:104::-;7642:13;7675:7;7668:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7586:104;:::o;29866:262::-;1136:13;:11;:13::i;:::-;29973::::1;;;;;;;;;;;29965:21;;:4;:21;;::::0;29957:111:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30079:41;30108:4;30114:5;30079:28;:41::i;:::-;29866:262:::0;;:::o;10037:513::-;10157:4;10179:13;10195:12;:10;:12::i;:::-;10179:28;;10218:24;10245:25;10255:5;10262:7;10245:9;:25::i;:::-;10218:52;;10323:15;10303:16;:35;;10281:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;10447:60;10456:5;10463:7;10491:15;10472:16;:34;10447:8;:60::i;:::-;10538:4;10531:11;;;;10037:513;;;;:::o;8700:234::-;8815:4;8837:13;8853:12;:10;:12::i;:::-;8837:28;;8876;8886:5;8893:2;8897:6;8876:9;:28::i;:::-;8922:4;8915:11;;;8700:234;;;;:::o;26830:32::-;;;;;;;;;;;;;:::o;26869:30::-;;;;;;;;;;;;;:::o;27104:27::-;;;;:::o;8997:201::-;9131:7;9163:11;:18;9175:5;9163:18;;;;;;;;;;;;;;;:27;9182:7;9163:27;;;;;;;;;;;;;;;;9156:34;;8997:201;;;;:::o;29652:206::-;1136:13;:11;:13::i;:::-;29792:8:::1;29755:25;:34;29781:7;29755:34;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;29832:7;29816:34;;;29841:8;29816:34;;;;;;:::i;:::-;;;;;;;;29652:206:::0;;:::o;27062:33::-;;;;:::o;2157:246::-;1136:13;:11;:13::i;:::-;2280:1:::1;2260:22;;:8;:22;;::::0;2238:118:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2367:28;2386:8;2367:18;:28::i;:::-;2157:246:::0;:::o;302:98::-;355:7;382:10;375:17;;302:98;:::o;12738:396::-;12891:1;12874:19;;:5;:19;;;12866:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;12980:1;12961:21;;:7;:21;;;12953:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;13072:6;13042:11;:18;13054:5;13042:18;;;;;;;;;;;;;;;:27;13061:7;13042:27;;;;;;;;;;;;;;;:36;;;;13110:7;13094:32;;13103:5;13094:32;;;13119:6;13094:32;;;;;;:::i;:::-;;;;;;;;12738:396;;;:::o;13142:502::-;13277:24;13304:25;13314:5;13321:7;13304:9;:25::i;:::-;13277:52;;13364:17;13344:16;:37;13340:297;;13444:6;13424:16;:26;;13398:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;13559:51;13568:5;13575:7;13603:6;13584:16;:25;13559:8;:51::i;:::-;13340:297;13266:378;13142:502;;;:::o;30334:2456::-;30482:1;30466:18;;:4;:18;;;30458:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;30567:1;30553:16;;:2;:16;;;30545:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30628:14;;;;;;;;;;;:49;;;;30646:25;:31;30672:4;30646:31;;;;;;;;;;;;;;;;;;;;;;;;;30628:49;:82;;;;30681:25;:29;30707:2;30681:29;;;;;;;;;;;;;;;;;;;;;;;;;30628:82;30620:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;30764:1;30754:6;:11;30750:93;;30782:28;30798:4;30804:2;30808:1;30782:15;:28::i;:::-;30825:7;;30750:93;30857:28;30888:24;30906:4;30888:9;:24::i;:::-;30857:55;;30925:12;30964:18;;30940:20;:42;;30925:57;;31013:7;:35;;;;;31037:11;;;;;;;;;;;31013:35;:48;;;;;31052:9;;;;;;;;;;;31051:10;31013:48;:82;;;;;31063:26;:32;31090:4;31063:32;;;;;;;;;;;;;;;;;;;;;;;;;31013:82;:131;;;;;31113:25;:31;31139:4;31113:31;;;;;;;;;;;;;;;;;;;;;;;;;31112:32;31013:131;:178;;;;;31162:25;:29;31188:2;31162:29;;;;;;;;;;;;;;;;;;;;;;;;;31161:30;31013:178;30995:313;;;31230:4;31218:9;;:16;;;;;;;;;;;;;;;;;;31251:11;:9;:11::i;:::-;31291:5;31279:9;;:17;;;;;;;;;;;;;;;;;;30995:313;31320:12;31336:9;;;;;;;;;;;31335:10;31320:25;;31362;:31;31388:4;31362:31;;;;;;;;;;;;;;;;;;;;;;;;;:64;;;;31397:25;:29;31423:2;31397:29;;;;;;;;;;;;;;;;;;;;;;;;;31362:64;31358:112;;;31453:5;31443:15;;31358:112;31482:12;31515:7;31511:1187;;;31567:26;:30;31594:2;31567:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;31617:1;31601:13;;:17;31567:51;31563:986;;;31646:36;31676:5;31646:25;31657:13;;31646:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;31639:43;;31795:13;;31753:17;;31746:4;:24;;;;:::i;:::-;31745:63;;;;:::i;:::-;31701:19;;:107;;;;;;;:::i;:::-;;;;;;;;31921:13;;31879:17;;31872:4;:24;;;;:::i;:::-;31871:63;;;;:::i;:::-;31827:19;;:107;;;;;;;:::i;:::-;;;;;;;;32051:13;;32007:19;;32000:4;:26;;;;:::i;:::-;31999:65;;;;:::i;:::-;31953:21;;:111;;;;;;;:::i;:::-;;;;;;;;31563:986;;;32126:26;:32;32153:4;32126:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;32177:1;32162:12;;:16;32126:52;32122:427;;;32206:35;32235:5;32206:24;32217:12;;32206:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;32199:42;;32311:12;;32291:16;;32284:4;:23;;;;:::i;:::-;32283:40;;;;:::i;:::-;32260:19;;:63;;;;;;;:::i;:::-;;;;;;;;32393:12;;32373:16;;32366:4;:23;;;;:::i;:::-;32365:40;;;;:::i;:::-;32342:19;;:63;;;;;;;:::i;:::-;;;;;;;;32521:12;;32478:18;;32471:4;:25;;;;:::i;:::-;32470:63;;;;:::i;:::-;32424:21;;:109;;;;;;;:::i;:::-;;;;;;;;32122:427;31563:986;32576:1;32569:4;:8;32565:91;;;32598:42;32614:4;32628;32635;32598:15;:42::i;:::-;32565:91;32682:4;32672:14;;;;;:::i;:::-;;;31511:1187;32710:33;32726:4;32732:2;32736:6;32710:15;:33::i;:::-;32770:12;;32754:13;:28;;;;30447:2343;;;;30334:2456;;;;:::o;1415:140::-;1490:12;:10;:12::i;:::-;1479:23;;:7;:5;:7::i;:::-;:23;;;1471:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1415:140::o;2563:191::-;2637:16;2656:6;;;;;;;;;;;2637:25;;2682:8;2673:6;;:17;;;;;;;;;;;;;;;;;;2737:8;2706:40;;2727:8;2706:40;;;;;;;;;;;;2626:128;2563:191;:::o;30138:188::-;30257:5;30222:26;:32;30249:4;30222:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;30312:5;30278:40;;30306:4;30278:40;;;;;;;;;;;;30138:188;;:::o;10558:909::-;10705:1;10689:18;;:4;:18;;;10681:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;10790:1;10776:16;;:2;:16;;;10768:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;10853:38;10874:4;10880:2;10884:6;10853:20;:38::i;:::-;10904:19;10926:9;:15;10936:4;10926:15;;;;;;;;;;;;;;;;10904:37;;10989:6;10974:11;:21;;10952:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;11137:6;11123:11;:20;11105:9;:15;11115:4;11105:15;;;;;;;;;;;;;;;:38;;;;11348:6;11331:9;:13;11341:2;11331:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11398:2;11383:26;;11392:4;11383:26;;;11402:6;11383:26;;;;;;:::i;:::-;;;;;;;;11422:37;11442:4;11448:2;11452:6;11422:19;:37::i;:::-;10670:797;10558:909;;;:::o;33689:1607::-;33730:23;33756:24;33774:4;33756:9;:24::i;:::-;33730:50;;33791:25;33889:21;;33854:19;;33819;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;33791:119;;33921:12;33948:23;34062:1;34029:17;33993:19;;33975:15;:37;;;;:::i;:::-;33974:72;;;;:::i;:::-;:89;;;;:::i;:::-;33948:115;;34074:26;34103:36;34123:15;34103;:19;;:36;;;;:::i;:::-;34074:65;;34152:25;34180:21;34152:49;;34214:37;34232:18;34214:17;:37::i;:::-;34264:18;34285:44;34311:17;34285:21;:25;;:44;;;;:::i;:::-;34264:65;;34342:23;34368:82;34422:17;34368:35;34383:19;;34368:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;34342:108;;34463:25;34491:84;34547:17;34491:37;34506:21;;34491:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;34463:112;;34588:23;34671:17;34640:15;34614:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;34588:100;;34723:1;34701:19;:23;;;;34757:1;34735:19;:23;;;;34793:1;34769:21;:25;;;;34829:1;34811:15;:19;:42;;;;;34852:1;34834:15;:19;34811:42;34807:280;;;34870:47;34884:15;34901;34870:13;:47::i;:::-;34937:138;34970:18;35007:15;35041:19;;34937:138;;;;;;;;:::i;:::-;;;;;;;;34807:280;35121:17;;;;;;;;;;;35113:31;;35152:17;35113:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35099:75;;;;;35209:15;;;;;;;;;;;35201:29;;35252:21;35201:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35187:101;;;;;33719:1577;;;;;;;;;;33689:1607::o;17311:98::-;17369:7;17400:1;17396;:5;;;;:::i;:::-;17389:12;;17311:98;;;;:::o;17710:::-;17768:7;17799:1;17795;:5;;;;:::i;:::-;17788:12;;17710:98;;;;:::o;13652:125::-;;;;:::o;13785:124::-;;;;:::o;16946:98::-;17004:7;17035:1;17031;:5;;;;:::i;:::-;17024:12;;16946:98;;;;:::o;32798:503::-;32866:21;32904:1;32890:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32866:40;;32935:4;32917;32922:1;32917:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32961:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32951:4;32956:1;32951:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;32996:62;33013:4;33028:15;33046:11;32996:8;:62::i;:::-;33097:15;:66;;;33178:11;33204:1;33220:4;33247;33267:15;33097:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32855:446;32798:503;:::o;33309:372::-;33392:62;33409:4;33424:15;33442:11;33392:8;:62::i;:::-;33467:15;:31;;;33506:9;33539:4;33559:11;33585:1;33601;33617:15;;;;;;;;;;;33647;33467:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;33309: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:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:116::-;6588:21;6603:5;6588:21;:::i;:::-;6581:5;6578:32;6568:60;;6624:1;6621;6614:12;6568:60;6518:116;:::o;6640:133::-;6683:5;6721:6;6708:20;6699:29;;6737:30;6761:5;6737:30;:::i;:::-;6640:133;;;;:::o;6779:468::-;6844:6;6852;6901:2;6889:9;6880:7;6876:23;6872:32;6869:119;;;6907:79;;:::i;:::-;6869:119;7027:1;7052:53;7097:7;7088:6;7077:9;7073:22;7052:53;:::i;:::-;7042:63;;6998:117;7154:2;7180:50;7222:7;7213:6;7202:9;7198:22;7180:50;:::i;:::-;7170:60;;7125:115;6779:468;;;;;:::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:181::-;8768:33;8764:1;8756:6;8752:14;8745:57;8628:181;:::o;8815:366::-;8957:3;8978:67;9042:2;9037:3;8978:67;:::i;:::-;8971:74;;9054:93;9143:3;9054:93;:::i;:::-;9172:2;9167:3;9163:12;9156:19;;8815:366;;;:::o;9187:419::-;9353:4;9391:2;9380:9;9376:18;9368:26;;9440:9;9434:4;9430:20;9426:1;9415:9;9411:17;9404:47;9468:131;9594:4;9468:131;:::i;:::-;9460:139;;9187:419;;;:::o;9612:301::-;9752:34;9748:1;9740:6;9736:14;9729:58;9821:34;9816:2;9808:6;9804:15;9797:59;9890:15;9885:2;9877:6;9873:15;9866:40;9612:301;:::o;9919:366::-;10061:3;10082:67;10146:2;10141:3;10082:67;:::i;:::-;10075:74;;10158:93;10247:3;10158:93;:::i;:::-;10276:2;10271:3;10267:12;10260:19;;9919:366;;;:::o;10291:419::-;10457:4;10495:2;10484:9;10480:18;10472:26;;10544:9;10538:4;10534:20;10530:1;10519:9;10515:17;10508:47;10572:131;10698:4;10572:131;:::i;:::-;10564:139;;10291:419;;;:::o;10716:232::-;10856:34;10852:1;10844:6;10840:14;10833:58;10925:15;10920:2;10912:6;10908:15;10901:40;10716:232;:::o;10954:366::-;11096:3;11117:67;11181:2;11176:3;11117:67;:::i;:::-;11110:74;;11193:93;11282:3;11193:93;:::i;:::-;11311:2;11306:3;11302:12;11295:19;;10954:366;;;:::o;11326:419::-;11492:4;11530:2;11519:9;11515:18;11507:26;;11579:9;11573:4;11569:20;11565:1;11554:9;11550:17;11543:47;11607:131;11733:4;11607:131;:::i;:::-;11599:139;;11326:419;;;:::o;11751:233::-;11891:34;11887:1;11879:6;11875:14;11868:58;11960:16;11955:2;11947:6;11943:15;11936:41;11751:233;:::o;11990:366::-;12132:3;12153:67;12217:2;12212:3;12153:67;:::i;:::-;12146:74;;12229:93;12318:3;12229:93;:::i;:::-;12347:2;12342:3;12338:12;12331:19;;11990:366;;;:::o;12362:419::-;12528:4;12566:2;12555:9;12551:18;12543:26;;12615:9;12609:4;12605:20;12601:1;12590:9;12586:17;12579:47;12643:131;12769:4;12643:131;:::i;:::-;12635:139;;12362:419;;;:::o;12787:231::-;12927:34;12923:1;12915:6;12911:14;12904:58;12996:14;12991:2;12983:6;12979:15;12972:39;12787:231;:::o;13024:366::-;13166:3;13187:67;13251:2;13246:3;13187:67;:::i;:::-;13180:74;;13263:93;13352:3;13263:93;:::i;:::-;13381:2;13376:3;13372:12;13365:19;;13024:366;;;:::o;13396:419::-;13562:4;13600:2;13589:9;13585:18;13577:26;;13649:9;13643:4;13639:20;13635:1;13624:9;13620:17;13613:47;13677:131;13803:4;13677:131;:::i;:::-;13669:139;;13396:419;;;:::o;13821:229::-;13961:34;13957:1;13949:6;13945:14;13938:58;14030:12;14025:2;14017:6;14013:15;14006:37;13821:229;:::o;14056:366::-;14198:3;14219:67;14283:2;14278:3;14219:67;:::i;:::-;14212:74;;14295:93;14384:3;14295:93;:::i;:::-;14413:2;14408:3;14404:12;14397:19;;14056:366;;;:::o;14428:419::-;14594:4;14632:2;14621:9;14617:18;14609:26;;14681:9;14675:4;14671:20;14667:1;14656:9;14652:17;14645:47;14709:131;14835:4;14709:131;:::i;:::-;14701:139;;14428:419;;;:::o;14853:179::-;14993:31;14989:1;14981:6;14977:14;14970:55;14853:179;:::o;15038:366::-;15180:3;15201:67;15265:2;15260:3;15201:67;:::i;:::-;15194:74;;15277:93;15366:3;15277:93;:::i;:::-;15395:2;15390:3;15386:12;15379:19;;15038:366;;;:::o;15410:419::-;15576:4;15614:2;15603:9;15599:18;15591:26;;15663:9;15657:4;15653:20;15649:1;15638:9;15634:17;15627:47;15691:131;15817:4;15691:131;:::i;:::-;15683:139;;15410:419;;;:::o;15835:232::-;15975:34;15971:1;15963:6;15959:14;15952:58;16044:15;16039:2;16031:6;16027:15;16020:40;15835:232;:::o;16073:366::-;16215:3;16236:67;16300:2;16295:3;16236:67;:::i;:::-;16229:74;;16312:93;16401:3;16312:93;:::i;:::-;16430:2;16425:3;16421:12;16414:19;;16073:366;;;:::o;16445:419::-;16611:4;16649:2;16638:9;16634:18;16626:26;;16698:9;16692:4;16688:20;16684:1;16673:9;16669:17;16662:47;16726:131;16852:4;16726:131;:::i;:::-;16718:139;;16445:419;;;:::o;16870:222::-;17010:34;17006:1;16998:6;16994:14;16987:58;17079:5;17074:2;17066:6;17062:15;17055:30;16870:222;:::o;17098:366::-;17240:3;17261:67;17325:2;17320:3;17261:67;:::i;:::-;17254:74;;17337:93;17426:3;17337:93;:::i;:::-;17455:2;17450:3;17446:12;17439:19;;17098:366;;;:::o;17470:419::-;17636:4;17674:2;17663:9;17659:18;17651:26;;17723:9;17717:4;17713:20;17709:1;17698:9;17694:17;17687:47;17751:131;17877:4;17751:131;:::i;:::-;17743:139;;17470:419;;;:::o;17895:174::-;18035:26;18031:1;18023:6;18019:14;18012:50;17895:174;:::o;18075:366::-;18217:3;18238:67;18302:2;18297:3;18238:67;:::i;:::-;18231:74;;18314:93;18403:3;18314:93;:::i;:::-;18432:2;18427:3;18423:12;18416:19;;18075:366;;;:::o;18447:419::-;18613:4;18651:2;18640:9;18636:18;18628:26;;18700:9;18694:4;18690:20;18686:1;18675:9;18671:17;18664:47;18728:131;18854:4;18728:131;:::i;:::-;18720:139;;18447:419;;;:::o;18872:410::-;18912:7;18935:20;18953:1;18935:20;:::i;:::-;18930:25;;18969:20;18987:1;18969:20;:::i;:::-;18964:25;;19024:1;19021;19017:9;19046:30;19064:11;19046:30;:::i;:::-;19035:41;;19225:1;19216:7;19212:15;19209:1;19206:22;19186:1;19179:9;19159:83;19136:139;;19255:18;;:::i;:::-;19136:139;18920:362;18872:410;;;;:::o;19288:180::-;19336:77;19333:1;19326:88;19433:4;19430:1;19423:15;19457:4;19454:1;19447:15;19474:185;19514:1;19531:20;19549:1;19531:20;:::i;:::-;19526:25;;19565:20;19583:1;19565:20;:::i;:::-;19560:25;;19604:1;19594:35;;19609:18;;:::i;:::-;19594:35;19651:1;19648;19644:9;19639:14;;19474:185;;;;:::o;19665:194::-;19705:4;19725:20;19743:1;19725:20;:::i;:::-;19720:25;;19759:20;19777:1;19759:20;:::i;:::-;19754:25;;19803:1;19800;19796:9;19788:17;;19827:1;19821:4;19818:11;19815:37;;;19832:18;;:::i;:::-;19815:37;19665:194;;;;:::o;19865:227::-;20005:34;20001:1;19993:6;19989:14;19982:58;20074:10;20069:2;20061:6;20057:15;20050:35;19865:227;:::o;20098:366::-;20240:3;20261:67;20325:2;20320:3;20261:67;:::i;:::-;20254:74;;20337:93;20426:3;20337:93;:::i;:::-;20455:2;20450:3;20446:12;20439:19;;20098:366;;;:::o;20470:419::-;20636:4;20674:2;20663:9;20659:18;20651:26;;20723:9;20717:4;20713:20;20709:1;20698:9;20694:17;20687:47;20751:131;20877:4;20751:131;:::i;:::-;20743:139;;20470:419;;;:::o;20895:232::-;21035:34;21031:1;21023:6;21019:14;21012:58;21104:15;21099:2;21091:6;21087:15;21080:40;20895:232;:::o;21133:366::-;21275:3;21296:67;21360:2;21355:3;21296:67;:::i;:::-;21289:74;;21372:93;21461:3;21372:93;:::i;:::-;21490:2;21485:3;21481:12;21474:19;;21133:366;;;:::o;21505:419::-;21671:4;21709:2;21698:9;21694:18;21686:26;;21758:9;21752:4;21748:20;21744:1;21733:9;21729:17;21722:47;21786:131;21912:4;21786:131;:::i;:::-;21778:139;;21505:419;;;:::o;21930:230::-;22070:34;22066:1;22058:6;22054:14;22047:58;22139:13;22134:2;22126:6;22122:15;22115:38;21930:230;:::o;22166:366::-;22308:3;22329:67;22393:2;22388:3;22329:67;:::i;:::-;22322:74;;22405:93;22494:3;22405:93;:::i;:::-;22523:2;22518:3;22514:12;22507:19;;22166:366;;;:::o;22538:419::-;22704:4;22742:2;22731:9;22727:18;22719:26;;22791:9;22785:4;22781:20;22777:1;22766:9;22762:17;22755:47;22819:131;22945:4;22819:131;:::i;:::-;22811:139;;22538:419;;;:::o;22963:233::-;23103:34;23099:1;23091:6;23087:14;23080:58;23172:16;23167:2;23159:6;23155:15;23148:41;22963:233;:::o;23202:366::-;23344:3;23365:67;23429:2;23424:3;23365:67;:::i;:::-;23358:74;;23441:93;23530:3;23441:93;:::i;:::-;23559:2;23554:3;23550:12;23543:19;;23202:366;;;:::o;23574:419::-;23740:4;23778:2;23767:9;23763:18;23755:26;;23827:9;23821:4;23817:20;23813:1;23802:9;23798:17;23791:47;23855:131;23981:4;23855:131;:::i;:::-;23847:139;;23574:419;;;:::o;23999:442::-;24148:4;24186:2;24175:9;24171:18;24163:26;;24199:71;24267:1;24256:9;24252:17;24243:6;24199:71;:::i;:::-;24280:72;24348:2;24337:9;24333:18;24324:6;24280:72;:::i;:::-;24362;24430:2;24419:9;24415:18;24406:6;24362:72;:::i;:::-;23999:442;;;;;;:::o;24447:147::-;24548:11;24585:3;24570:18;;24447:147;;;;:::o;24600:114::-;;:::o;24720:398::-;24879:3;24900:83;24981:1;24976:3;24900:83;:::i;:::-;24893:90;;24992:93;25081:3;24992:93;:::i;:::-;25110:1;25105:3;25101:11;25094:18;;24720:398;;;:::o;25124:379::-;25308:3;25330:147;25473:3;25330:147;:::i;:::-;25323:154;;25494:3;25487:10;;25124:379;;;:::o;25509:180::-;25557:77;25554:1;25547:88;25654:4;25651:1;25644:15;25678:4;25675:1;25668:15;25695:180;25743:77;25740:1;25733:88;25840:4;25837:1;25830:15;25864:4;25861:1;25854:15;25881:143;25938:5;25969:6;25963:13;25954:22;;25985:33;26012:5;25985:33;:::i;:::-;25881:143;;;;:::o;26030:351::-;26100:6;26149:2;26137:9;26128:7;26124:23;26120:32;26117:119;;;26155:79;;:::i;:::-;26117:119;26275:1;26300:64;26356:7;26347:6;26336:9;26332:22;26300:64;:::i;:::-;26290:74;;26246:128;26030:351;;;;:::o;26387:85::-;26432:7;26461:5;26450:16;;26387:85;;;:::o;26478:158::-;26536:9;26569:61;26587:42;26596:32;26622:5;26596:32;:::i;:::-;26587:42;:::i;:::-;26569:61;:::i;:::-;26556:74;;26478:158;;;:::o;26642:147::-;26737:45;26776:5;26737:45;:::i;:::-;26732:3;26725:58;26642:147;;:::o;26795:114::-;26862:6;26896:5;26890:12;26880:22;;26795:114;;;:::o;26915:184::-;27014:11;27048:6;27043:3;27036:19;27088:4;27083:3;27079:14;27064:29;;26915:184;;;;:::o;27105:132::-;27172:4;27195:3;27187:11;;27225:4;27220:3;27216:14;27208:22;;27105:132;;;:::o;27243:108::-;27320:24;27338:5;27320:24;:::i;:::-;27315:3;27308:37;27243:108;;:::o;27357:179::-;27426:10;27447:46;27489:3;27481:6;27447:46;:::i;:::-;27525:4;27520:3;27516:14;27502:28;;27357:179;;;;:::o;27542:113::-;27612:4;27644;27639:3;27635:14;27627:22;;27542:113;;;:::o;27691:732::-;27810:3;27839:54;27887:5;27839:54;:::i;:::-;27909:86;27988:6;27983:3;27909:86;:::i;:::-;27902:93;;28019:56;28069:5;28019:56;:::i;:::-;28098:7;28129:1;28114:284;28139:6;28136:1;28133:13;28114:284;;;28215:6;28209:13;28242:63;28301:3;28286:13;28242:63;:::i;:::-;28235:70;;28328:60;28381:6;28328:60;:::i;:::-;28318:70;;28174:224;28161:1;28158;28154:9;28149:14;;28114:284;;;28118:14;28414:3;28407:10;;27815:608;;;27691:732;;;;:::o;28429:831::-;28692:4;28730:3;28719:9;28715:19;28707:27;;28744:71;28812:1;28801:9;28797:17;28788:6;28744:71;:::i;:::-;28825:80;28901:2;28890:9;28886:18;28877:6;28825:80;:::i;:::-;28952:9;28946:4;28942:20;28937:2;28926:9;28922:18;28915:48;28980:108;29083:4;29074:6;28980:108;:::i;:::-;28972:116;;29098:72;29166:2;29155:9;29151:18;29142:6;29098:72;:::i;:::-;29180:73;29248:3;29237:9;29233:19;29224:6;29180:73;:::i;:::-;28429:831;;;;;;;;:::o;29266:807::-;29515:4;29553:3;29542:9;29538:19;29530:27;;29567:71;29635:1;29624:9;29620:17;29611:6;29567:71;:::i;:::-;29648:72;29716:2;29705:9;29701:18;29692:6;29648:72;:::i;:::-;29730:80;29806:2;29795:9;29791:18;29782:6;29730:80;:::i;:::-;29820;29896:2;29885:9;29881:18;29872:6;29820:80;:::i;:::-;29910:73;29978:3;29967:9;29963:19;29954:6;29910:73;:::i;:::-;29993;30061:3;30050:9;30046:19;30037:6;29993:73;:::i;:::-;29266:807;;;;;;;;;:::o;30079:143::-;30136:5;30167:6;30161:13;30152:22;;30183:33;30210:5;30183:33;:::i;:::-;30079:143;;;;:::o;30228:663::-;30316:6;30324;30332;30381:2;30369:9;30360:7;30356:23;30352:32;30349:119;;;30387:79;;:::i;:::-;30349:119;30507:1;30532:64;30588:7;30579:6;30568:9;30564:22;30532:64;:::i;:::-;30522:74;;30478:128;30645:2;30671:64;30727:7;30718:6;30707:9;30703:22;30671:64;:::i;:::-;30661:74;;30616:129;30784:2;30810:64;30866:7;30857:6;30846:9;30842:22;30810:64;:::i;:::-;30800:74;;30755:129;30228:663;;;;;:::o

Swarm Source

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