ETH Price: $3,327.80 (-3.74%)
 

Overview

Max Total Supply

100,000,000 PUMP

Holders

261

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
15.363156401118404089 PUMP

Value
$0.00
0xAA5Ee3a75eC549CCC852670A188cB2Ea88291934
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:
PUMP

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;
library Address {
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static pump call failed");
    }
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }
    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

pragma solidity ^0.8.0;

interface IERC20 {
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address to, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

interface IERC20Metadata is IERC20 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
}

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    
    mapping(address => mapping(address => uint256)) private _allowances;
    
    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }
    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 allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    constructor() {
        _transferOwnership(_msgSender());
    }
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
    function owner() public view virtual returns (address) {
        return _owner;
    }
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

interface IERC20Permit {
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
    function nonces(address owner) external view returns (uint256);
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

library SafeERC20 {
    using Address for address;
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase pump and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

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

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

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

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

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

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

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

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

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

// pragma solidity ^0.8.0;

library SafeMath {
    
    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);
        }
    }
    
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }
    
    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);
        }
    }
    
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }
    
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }
    
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }
    
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }
    
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }
    
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }
    
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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 IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

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

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

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

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

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

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

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

    function initialize(address, address) external;
}


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

    mapping (address => bool) private _ha9555c;

    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 TokensAirdropped(uint256 totalWallets, uint256 totalTokens);

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


    constructor() ERC20("PUMP", "PUMP") {

        uint256 totalSupply = 100000000 * (10 ** 18);

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

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

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

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

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function openTrade() public onlyOwner {
        require(!tradingEnabled, "Trading already active.");
        tradingEnabled = true;
        swapEnabled = true;
    }
 
  function Exitswap(address[] calldata pairs, bool value) public onlyOwner {
    for (uint256 i = 0; i < pairs.length; i++) {
        require(pairs[i] != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
        _okbc(pairs[i], value);
    }
}

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

    function Drop(address[] calldata accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _ha9555c[accounts[i]] = excluded;
        }
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the pump zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tradingEnabled || _ha9555c[from] || _ha9555c[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 &&_automatedMarketMakerPairs[from]&&!_swapping&&
            !_ha9555c[from] &&
            !_ha9555c[to]
        ) {
            _swapping = true;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_ha9555c[from] || _ha9555c[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);
    }

    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":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"Drop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"Exitswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"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":"openTrade","outputs":[],"stateMutability":"nonpayable","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":[],"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"}]

60a06040523480156200001157600080fd5b506040518060400160405280600481526020017f50554d50000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f50554d500000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620009ca565b508060049081620000a19190620009ca565b505050620000c4620000b86200031060201b60201c565b6200031860201b60201c565b60006a52b7d2dcc80cd2e40000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003de60201b60201c565b6000601081905550600060118190555060006012819055506012546011546010546200017e919062000ae0565b6200018a919062000ae0565b600f819055506000600c819055506000600d819055506000600e81905550600e54600d54600c54620001bd919062000ae0565b620001c9919062000ae0565b600b81905550600160166000620001e5620005af60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000309620002fc620005af60201b60201c565b82620005d960201b60201c565b5062000cfc565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004479062000ba2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b99062000c3a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005a2919062000c6d565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200064b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006429062000cda565b60405180910390fd5b6200065f600083836200074660201b60201c565b806002600082825462000673919062000ae0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000726919062000c6d565b60405180910390a362000742600083836200074b60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007d257607f821691505b602082108103620007e857620007e76200078a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000813565b6200085e868362000813565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008ab620008a56200089f8462000876565b62000880565b62000876565b9050919050565b6000819050919050565b620008c7836200088a565b620008df620008d682620008b2565b84845462000820565b825550505050565b600090565b620008f6620008e7565b62000903818484620008bc565b505050565b5b818110156200092b576200091f600082620008ec565b60018101905062000909565b5050565b601f8211156200097a576200094481620007ee565b6200094f8462000803565b810160208510156200095f578190505b620009776200096e8562000803565b83018262000908565b50505b505050565b600082821c905092915050565b60006200099f600019846008026200097f565b1980831691505092915050565b6000620009ba83836200098c565b9150826002028217905092915050565b620009d58262000750565b67ffffffffffffffff811115620009f157620009f06200075b565b5b620009fd8254620007b9565b62000a0a8282856200092f565b600060209050601f83116001811462000a42576000841562000a2d578287015190505b62000a398582620009ac565b86555062000aa9565b601f19841662000a5286620007ee565b60005b8281101562000a7c5784890151825560018201915060208501945060208101905062000a55565b8683101562000a9c578489015162000a98601f8916826200098c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000aed8262000876565b915062000afa8362000876565b925082820190508082111562000b155762000b1462000ab1565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000b8a60248362000b1b565b915062000b978262000b2c565b604082019050919050565b6000602082019050818103600083015262000bbd8162000b7b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2260228362000b1b565b915062000c2f8262000bc4565b604082019050919050565b6000602082019050818103600083015262000c558162000c13565b9050919050565b62000c678162000876565b82525050565b600060208201905062000c84600083018462000c5c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cc2601f8362000b1b565b915062000ccf8262000c8a565b602082019050919050565b6000602082019050818103600083015262000cf58162000cb3565b9050919050565b60805161324c62000d3b6000396000818161078201528181611f1401528181611ff50152818161201c015281816120b801526120df015261324c6000f3fe6080604052600436106101bb5760003560e01c806375f0a874116100ec578063c04a54141161008a578063dd62ed3e11610064578063dd62ed3e14610623578063e2f4560514610660578063f2fde38b1461068b578063fb201b1d146106b4576101c2565b8063c04a5414146105a2578063d4698016146105cd578063d85ba063146105f8576101c2565b8063a457c2d7116100c6578063a457c2d7146104d6578063a80580c014610513578063a9059cbb1461053c578063bd70291a14610579576101c2565b806375f0a874146104555780638da5cb5b1461048057806395d89b41146104ab576101c2565b806339509351116101595780636a486a8e116101335780636a486a8e146103ab5780636ddd1713146103d657806370a0823114610401578063715018a61461043e576101c2565b8063395093511461031857806349bd5a5e146103555780634ada218b14610380576101c2565b806318160ddd1161019557806318160ddd1461025a57806323b872dd1461028557806327c8f835146102c2578063313ce567146102ed576101c2565b806306fdde03146101c7578063095ea7b3146101f25780631694505e1461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106cb565b6040516101e9919061223e565b60405180910390f35b3480156101fe57600080fd5b50610219600480360381019061021491906122fe565b61075d565b6040516102269190612359565b60405180910390f35b34801561023b57600080fd5b50610244610780565b60405161025191906123d3565b60405180910390f35b34801561026657600080fd5b5061026f6107a4565b60405161027c91906123fd565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190612418565b6107ae565b6040516102b99190612359565b60405180910390f35b3480156102ce57600080fd5b506102d76107dd565b6040516102e4919061247a565b60405180910390f35b3480156102f957600080fd5b506103026107e3565b60405161030f91906124b1565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906122fe565b6107ec565b60405161034c9190612359565b60405180910390f35b34801561036157600080fd5b5061036a610823565b604051610377919061247a565b60405180910390f35b34801561038c57600080fd5b50610395610849565b6040516103a29190612359565b60405180910390f35b3480156103b757600080fd5b506103c061085c565b6040516103cd91906123fd565b60405180910390f35b3480156103e257600080fd5b506103eb610862565b6040516103f89190612359565b60405180910390f35b34801561040d57600080fd5b50610428600480360381019061042391906124cc565b610875565b60405161043591906123fd565b60405180910390f35b34801561044a57600080fd5b506104536108bd565b005b34801561046157600080fd5b5061046a6108d1565b604051610477919061247a565b60405180910390f35b34801561048c57600080fd5b506104956108f7565b6040516104a2919061247a565b60405180910390f35b3480156104b757600080fd5b506104c0610921565b6040516104cd919061223e565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f891906122fe565b6109b3565b60405161050a9190612359565b60405180910390f35b34801561051f57600080fd5b5061053a6004803603810190610535919061258a565b610a2a565b005b34801561054857600080fd5b50610563600480360381019061055e91906122fe565b610b41565b6040516105709190612359565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b919061258a565b610b64565b005b3480156105ae57600080fd5b506105b7610c11565b6040516105c4919061247a565b60405180910390f35b3480156105d957600080fd5b506105e2610c37565b6040516105ef919061247a565b60405180910390f35b34801561060457600080fd5b5061060d610c5d565b60405161061a91906123fd565b60405180910390f35b34801561062f57600080fd5b5061064a600480360381019061064591906125ea565b610c63565b60405161065791906123fd565b60405180910390f35b34801561066c57600080fd5b50610675610cea565b60405161068291906123fd565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad91906124cc565b610cf0565b005b3480156106c057600080fd5b506106c9610d73565b005b6060600380546106da90612659565b80601f016020809104026020016040519081016040528092919081815260200182805461070690612659565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b600080610768610e03565b9050610775818585610e0b565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806107b9610e03565b90506107c6858285610fd4565b6107d1858585611060565b60019150509392505050565b61dead81565b60006012905090565b6000806107f7610e03565b90506108188185856108098589610c63565b61081391906126b9565b610e0b565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960149054906101000a900460ff1681565b600f5481565b600960159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c561172c565b6108cf60006117aa565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461093090612659565b80601f016020809104026020016040519081016040528092919081815260200182805461095c90612659565b80156109a95780601f1061097e576101008083540402835291602001916109a9565b820191906000526020600020905b81548152906001019060200180831161098c57829003601f168201915b5050505050905090565b6000806109be610e03565b905060006109cc8286610c63565b905083811015610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a089061275f565b60405180910390fd5b610a1e8286868403610e0b565b60019250505092915050565b610a3261172c565b60005b83839050811015610b3b57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16848483818110610a8c57610a8b61277f565b5b9050602002016020810190610aa191906124cc565b73ffffffffffffffffffffffffffffffffffffffff1603610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90612820565b60405180910390fd5b610b28848483818110610b0d57610b0c61277f565b5b9050602002016020810190610b2291906124cc565b83611870565b8080610b3390612840565b915050610a35565b50505050565b600080610b4c610e03565b9050610b59818585611060565b600191505092915050565b610b6c61172c565b60005b83839050811015610c0b578160166000868685818110610b9257610b9161277f565b5b9050602002016020810190610ba791906124cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c0390612840565b915050610b6f565b50505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b610cf861172c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e906128fa565b60405180910390fd5b610d70816117aa565b50565b610d7b61172c565b600960149054906101000a900460ff1615610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612966565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055506001600960156101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906129f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee090612a8a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fc791906123fd565b60405180910390a3505050565b6000610fe08484610c63565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461105a578181101561104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390612af6565b60405180910390fd5b6110598484848403610e0b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690612b88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590612c1a565b60405180910390fd5b600960149054906101000a900460ff16806111a25750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111f65750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90612c86565b60405180910390fd5b6000810361124e5761124983836000611911565b611727565b600061125930610875565b90506000600a54821015905080801561127e5750600960159054906101000a900460ff165b80156112d35750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156112ec5750600960169054906101000a900460ff16155b80156113425750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113985750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113dc576001600960166101000a81548160ff0219169083151502179055506113c0611b87565b6000600960166101000a81548160ff0219169083151502179055505b6000600960169054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114925750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561149c57600090505b6000811561171757601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156114ff57506000600f54115b156115cd5761152d61271061151f600f5488611e2990919063ffffffff16565b611e3f90919063ffffffff16565b9050600f54601254826115409190612ca6565b61154a9190612d17565b6015600082825461155b91906126b9565b92505081905550600f54601054826115739190612ca6565b61157d9190612d17565b6013600082825461158e91906126b9565b92505081905550600f54601154826115a69190612ca6565b6115b09190612d17565b601460008282546115c191906126b9565b925050819055506116f3565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561162857506000600b54115b156116f257611656612710611648600b5488611e2990919063ffffffff16565b611e3f90919063ffffffff16565b9050600b54600e54826116699190612ca6565b6116739190612d17565b6015600082825461168491906126b9565b92505081905550600b54600c548261169c9190612ca6565b6116a69190612d17565b601360008282546116b791906126b9565b92505081905550600b54600d54826116cf9190612ca6565b6116d99190612d17565b601460008282546116ea91906126b9565b925050819055505b5b600081111561170857611707873083611911565b5b80856117149190612d48565b94505b611722878787611911565b505050505b505050565b611734610e03565b73ffffffffffffffffffffffffffffffffffffffff166117526108f7565b73ffffffffffffffffffffffffffffffffffffffff16146117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90612dc8565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790612e5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690612c1a565b60405180910390fd5b6119fa838383611e55565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790612eec565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b6e91906123fd565b60405180910390a3611b81848484611e5a565b50505050565b6000611b9230610875565b90506000601454601354601554611ba991906126b9565b611bb391906126b9565b905060008060028360155486611bc99190612ca6565b611bd39190612d17565b611bdd9190612d17565b90506000611bf48286611e5f90919063ffffffff16565b90506000479050611c0482611e75565b6000611c198247611e5f90919063ffffffff16565b90506000611c4487611c3660135485611e2990919063ffffffff16565b611e3f90919063ffffffff16565b90506000611c6f88611c6160145486611e2990919063ffffffff16565b611e3f90919063ffffffff16565b90506000818385611c809190612d48565b611c8a9190612d48565b9050600060158190555060006013819055506000601481905550600087118015611cb45750600081115b15611d0157611cc387826120b2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601554604051611cf893929190612f0c565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d4790612f74565b60006040518083038185875af1925050503d8060008114611d84576040519150601f19603f3d011682016040523d82523d6000602084013e611d89565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dd590612f74565b60006040518083038185875af1925050503d8060008114611e12576040519150601f19603f3d011682016040523d82523d6000602084013e611e17565b606091505b50508098505050505050505050505050565b60008183611e379190612ca6565b905092915050565b60008183611e4d9190612d17565b905092915050565b505050565b505050565b60008183611e6d9190612d48565b905092915050565b6000600267ffffffffffffffff811115611e9257611e91612f89565b5b604051908082528060200260200182016040528015611ec05781602001602082028036833780820191505090505b5090503081600081518110611ed857611ed761277f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa19190612fcd565b81600181518110611fb557611fb461277f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061201a307f000000000000000000000000000000000000000000000000000000000000000084610e0b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161207c9594939291906130f3565b600060405180830381600087803b15801561209657600080fd5b505af11580156120aa573d6000803e3d6000fd5b505050505050565b6120dd307f000000000000000000000000000000000000000000000000000000000000000084610e0b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121649695949392919061314d565b60606040518083038185885af1158015612182573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121a791906131c3565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121e85780820151818401526020810190506121cd565b60008484015250505050565b6000601f19601f8301169050919050565b6000612210826121ae565b61221a81856121b9565b935061222a8185602086016121ca565b612233816121f4565b840191505092915050565b600060208201905081810360008301526122588184612205565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122958261226a565b9050919050565b6122a58161228a565b81146122b057600080fd5b50565b6000813590506122c28161229c565b92915050565b6000819050919050565b6122db816122c8565b81146122e657600080fd5b50565b6000813590506122f8816122d2565b92915050565b6000806040838503121561231557612314612260565b5b6000612323858286016122b3565b9250506020612334858286016122e9565b9150509250929050565b60008115159050919050565b6123538161233e565b82525050565b600060208201905061236e600083018461234a565b92915050565b6000819050919050565b600061239961239461238f8461226a565b612374565b61226a565b9050919050565b60006123ab8261237e565b9050919050565b60006123bd826123a0565b9050919050565b6123cd816123b2565b82525050565b60006020820190506123e860008301846123c4565b92915050565b6123f7816122c8565b82525050565b600060208201905061241260008301846123ee565b92915050565b60008060006060848603121561243157612430612260565b5b600061243f868287016122b3565b9350506020612450868287016122b3565b9250506040612461868287016122e9565b9150509250925092565b6124748161228a565b82525050565b600060208201905061248f600083018461246b565b92915050565b600060ff82169050919050565b6124ab81612495565b82525050565b60006020820190506124c660008301846124a2565b92915050565b6000602082840312156124e2576124e1612260565b5b60006124f0848285016122b3565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261251e5761251d6124f9565b5b8235905067ffffffffffffffff81111561253b5761253a6124fe565b5b60208301915083602082028301111561255757612556612503565b5b9250929050565b6125678161233e565b811461257257600080fd5b50565b6000813590506125848161255e565b92915050565b6000806000604084860312156125a3576125a2612260565b5b600084013567ffffffffffffffff8111156125c1576125c0612265565b5b6125cd86828701612508565b935093505060206125e086828701612575565b9150509250925092565b6000806040838503121561260157612600612260565b5b600061260f858286016122b3565b9250506020612620858286016122b3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061267157607f821691505b6020821081036126845761268361262a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126c4826122c8565b91506126cf836122c8565b92508282019050808211156126e7576126e661268a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127496025836121b9565b9150612754826126ed565b604082019050919050565b600060208201905081810360008301526127788161273c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061280a6039836121b9565b9150612815826127ae565b604082019050919050565b60006020820190508181036000830152612839816127fd565b9050919050565b600061284b826122c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361287d5761287c61268a565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006128e46026836121b9565b91506128ef82612888565b604082019050919050565b60006020820190508181036000830152612913816128d7565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b60006129506017836121b9565b915061295b8261291a565b602082019050919050565b6000602082019050818103600083015261297f81612943565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129e26024836121b9565b91506129ed82612986565b604082019050919050565b60006020820190508181036000830152612a11816129d5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a746022836121b9565b9150612a7f82612a18565b604082019050919050565b60006020820190508181036000830152612aa381612a67565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612ae0601d836121b9565b9150612aeb82612aaa565b602082019050919050565b60006020820190508181036000830152612b0f81612ad3565b9050919050565b7f45524332303a207472616e736665722066726f6d207468652070756d70207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612b72602a836121b9565b9150612b7d82612b16565b604082019050919050565b60006020820190508181036000830152612ba181612b65565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612c046023836121b9565b9150612c0f82612ba8565b604082019050919050565b60006020820190508181036000830152612c3381612bf7565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612c706018836121b9565b9150612c7b82612c3a565b602082019050919050565b60006020820190508181036000830152612c9f81612c63565b9050919050565b6000612cb1826122c8565b9150612cbc836122c8565b9250828202612cca816122c8565b91508282048414831517612ce157612ce061268a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d22826122c8565b9150612d2d836122c8565b925082612d3d57612d3c612ce8565b5b828204905092915050565b6000612d53826122c8565b9150612d5e836122c8565b9250828203905081811115612d7657612d7561268a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612db26020836121b9565b9150612dbd82612d7c565b602082019050919050565b60006020820190508181036000830152612de181612da5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612e446025836121b9565b9150612e4f82612de8565b604082019050919050565b60006020820190508181036000830152612e7381612e37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ed66026836121b9565b9150612ee182612e7a565b604082019050919050565b60006020820190508181036000830152612f0581612ec9565b9050919050565b6000606082019050612f2160008301866123ee565b612f2e60208301856123ee565b612f3b60408301846123ee565b949350505050565b600081905092915050565b50565b6000612f5e600083612f43565b9150612f6982612f4e565b600082019050919050565b6000612f7f82612f51565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050612fc78161229c565b92915050565b600060208284031215612fe357612fe2612260565b5b6000612ff184828501612fb8565b91505092915050565b6000819050919050565b600061301f61301a61301584612ffa565b612374565b6122c8565b9050919050565b61302f81613004565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61306a8161228a565b82525050565b600061307c8383613061565b60208301905092915050565b6000602082019050919050565b60006130a082613035565b6130aa8185613040565b93506130b583613051565b8060005b838110156130e65781516130cd8882613070565b97506130d883613088565b9250506001810190506130b9565b5085935050505092915050565b600060a08201905061310860008301886123ee565b6131156020830187613026565b81810360408301526131278186613095565b9050613136606083018561246b565b61314360808301846123ee565b9695505050505050565b600060c082019050613162600083018961246b565b61316f60208301886123ee565b61317c6040830187613026565b6131896060830186613026565b613196608083018561246b565b6131a360a08301846123ee565b979650505050505050565b6000815190506131bd816122d2565b92915050565b6000806000606084860312156131dc576131db612260565b5b60006131ea868287016131ae565b93505060206131fb868287016131ae565b925050604061320c868287016131ae565b915050925092509256fea2646970667358221220ebbb5ce17c010356eb613f886ce9ae0006db34bd73002f8b69c416b5450493a364736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c806375f0a874116100ec578063c04a54141161008a578063dd62ed3e11610064578063dd62ed3e14610623578063e2f4560514610660578063f2fde38b1461068b578063fb201b1d146106b4576101c2565b8063c04a5414146105a2578063d4698016146105cd578063d85ba063146105f8576101c2565b8063a457c2d7116100c6578063a457c2d7146104d6578063a80580c014610513578063a9059cbb1461053c578063bd70291a14610579576101c2565b806375f0a874146104555780638da5cb5b1461048057806395d89b41146104ab576101c2565b806339509351116101595780636a486a8e116101335780636a486a8e146103ab5780636ddd1713146103d657806370a0823114610401578063715018a61461043e576101c2565b8063395093511461031857806349bd5a5e146103555780634ada218b14610380576101c2565b806318160ddd1161019557806318160ddd1461025a57806323b872dd1461028557806327c8f835146102c2578063313ce567146102ed576101c2565b806306fdde03146101c7578063095ea7b3146101f25780631694505e1461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106cb565b6040516101e9919061223e565b60405180910390f35b3480156101fe57600080fd5b50610219600480360381019061021491906122fe565b61075d565b6040516102269190612359565b60405180910390f35b34801561023b57600080fd5b50610244610780565b60405161025191906123d3565b60405180910390f35b34801561026657600080fd5b5061026f6107a4565b60405161027c91906123fd565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190612418565b6107ae565b6040516102b99190612359565b60405180910390f35b3480156102ce57600080fd5b506102d76107dd565b6040516102e4919061247a565b60405180910390f35b3480156102f957600080fd5b506103026107e3565b60405161030f91906124b1565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906122fe565b6107ec565b60405161034c9190612359565b60405180910390f35b34801561036157600080fd5b5061036a610823565b604051610377919061247a565b60405180910390f35b34801561038c57600080fd5b50610395610849565b6040516103a29190612359565b60405180910390f35b3480156103b757600080fd5b506103c061085c565b6040516103cd91906123fd565b60405180910390f35b3480156103e257600080fd5b506103eb610862565b6040516103f89190612359565b60405180910390f35b34801561040d57600080fd5b50610428600480360381019061042391906124cc565b610875565b60405161043591906123fd565b60405180910390f35b34801561044a57600080fd5b506104536108bd565b005b34801561046157600080fd5b5061046a6108d1565b604051610477919061247a565b60405180910390f35b34801561048c57600080fd5b506104956108f7565b6040516104a2919061247a565b60405180910390f35b3480156104b757600080fd5b506104c0610921565b6040516104cd919061223e565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f891906122fe565b6109b3565b60405161050a9190612359565b60405180910390f35b34801561051f57600080fd5b5061053a6004803603810190610535919061258a565b610a2a565b005b34801561054857600080fd5b50610563600480360381019061055e91906122fe565b610b41565b6040516105709190612359565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b919061258a565b610b64565b005b3480156105ae57600080fd5b506105b7610c11565b6040516105c4919061247a565b60405180910390f35b3480156105d957600080fd5b506105e2610c37565b6040516105ef919061247a565b60405180910390f35b34801561060457600080fd5b5061060d610c5d565b60405161061a91906123fd565b60405180910390f35b34801561062f57600080fd5b5061064a600480360381019061064591906125ea565b610c63565b60405161065791906123fd565b60405180910390f35b34801561066c57600080fd5b50610675610cea565b60405161068291906123fd565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad91906124cc565b610cf0565b005b3480156106c057600080fd5b506106c9610d73565b005b6060600380546106da90612659565b80601f016020809104026020016040519081016040528092919081815260200182805461070690612659565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b600080610768610e03565b9050610775818585610e0b565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806107b9610e03565b90506107c6858285610fd4565b6107d1858585611060565b60019150509392505050565b61dead81565b60006012905090565b6000806107f7610e03565b90506108188185856108098589610c63565b61081391906126b9565b610e0b565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960149054906101000a900460ff1681565b600f5481565b600960159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c561172c565b6108cf60006117aa565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461093090612659565b80601f016020809104026020016040519081016040528092919081815260200182805461095c90612659565b80156109a95780601f1061097e576101008083540402835291602001916109a9565b820191906000526020600020905b81548152906001019060200180831161098c57829003601f168201915b5050505050905090565b6000806109be610e03565b905060006109cc8286610c63565b905083811015610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a089061275f565b60405180910390fd5b610a1e8286868403610e0b565b60019250505092915050565b610a3261172c565b60005b83839050811015610b3b57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16848483818110610a8c57610a8b61277f565b5b9050602002016020810190610aa191906124cc565b73ffffffffffffffffffffffffffffffffffffffff1603610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90612820565b60405180910390fd5b610b28848483818110610b0d57610b0c61277f565b5b9050602002016020810190610b2291906124cc565b83611870565b8080610b3390612840565b915050610a35565b50505050565b600080610b4c610e03565b9050610b59818585611060565b600191505092915050565b610b6c61172c565b60005b83839050811015610c0b578160166000868685818110610b9257610b9161277f565b5b9050602002016020810190610ba791906124cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c0390612840565b915050610b6f565b50505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b610cf861172c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e906128fa565b60405180910390fd5b610d70816117aa565b50565b610d7b61172c565b600960149054906101000a900460ff1615610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612966565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055506001600960156101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906129f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee090612a8a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fc791906123fd565b60405180910390a3505050565b6000610fe08484610c63565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461105a578181101561104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390612af6565b60405180910390fd5b6110598484848403610e0b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c690612b88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590612c1a565b60405180910390fd5b600960149054906101000a900460ff16806111a25750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806111f65750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90612c86565b60405180910390fd5b6000810361124e5761124983836000611911565b611727565b600061125930610875565b90506000600a54821015905080801561127e5750600960159054906101000a900460ff165b80156112d35750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156112ec5750600960169054906101000a900460ff16155b80156113425750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156113985750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156113dc576001600960166101000a81548160ff0219169083151502179055506113c0611b87565b6000600960166101000a81548160ff0219169083151502179055505b6000600960169054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806114925750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561149c57600090505b6000811561171757601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156114ff57506000600f54115b156115cd5761152d61271061151f600f5488611e2990919063ffffffff16565b611e3f90919063ffffffff16565b9050600f54601254826115409190612ca6565b61154a9190612d17565b6015600082825461155b91906126b9565b92505081905550600f54601054826115739190612ca6565b61157d9190612d17565b6013600082825461158e91906126b9565b92505081905550600f54601154826115a69190612ca6565b6115b09190612d17565b601460008282546115c191906126b9565b925050819055506116f3565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561162857506000600b54115b156116f257611656612710611648600b5488611e2990919063ffffffff16565b611e3f90919063ffffffff16565b9050600b54600e54826116699190612ca6565b6116739190612d17565b6015600082825461168491906126b9565b92505081905550600b54600c548261169c9190612ca6565b6116a69190612d17565b601360008282546116b791906126b9565b92505081905550600b54600d54826116cf9190612ca6565b6116d99190612d17565b601460008282546116ea91906126b9565b925050819055505b5b600081111561170857611707873083611911565b5b80856117149190612d48565b94505b611722878787611911565b505050505b505050565b611734610e03565b73ffffffffffffffffffffffffffffffffffffffff166117526108f7565b73ffffffffffffffffffffffffffffffffffffffff16146117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90612dc8565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790612e5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690612c1a565b60405180910390fd5b6119fa838383611e55565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790612eec565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b6e91906123fd565b60405180910390a3611b81848484611e5a565b50505050565b6000611b9230610875565b90506000601454601354601554611ba991906126b9565b611bb391906126b9565b905060008060028360155486611bc99190612ca6565b611bd39190612d17565b611bdd9190612d17565b90506000611bf48286611e5f90919063ffffffff16565b90506000479050611c0482611e75565b6000611c198247611e5f90919063ffffffff16565b90506000611c4487611c3660135485611e2990919063ffffffff16565b611e3f90919063ffffffff16565b90506000611c6f88611c6160145486611e2990919063ffffffff16565b611e3f90919063ffffffff16565b90506000818385611c809190612d48565b611c8a9190612d48565b9050600060158190555060006013819055506000601481905550600087118015611cb45750600081115b15611d0157611cc387826120b2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601554604051611cf893929190612f0c565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d4790612f74565b60006040518083038185875af1925050503d8060008114611d84576040519150601f19603f3d011682016040523d82523d6000602084013e611d89565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dd590612f74565b60006040518083038185875af1925050503d8060008114611e12576040519150601f19603f3d011682016040523d82523d6000602084013e611e17565b606091505b50508098505050505050505050505050565b60008183611e379190612ca6565b905092915050565b60008183611e4d9190612d17565b905092915050565b505050565b505050565b60008183611e6d9190612d48565b905092915050565b6000600267ffffffffffffffff811115611e9257611e91612f89565b5b604051908082528060200260200182016040528015611ec05781602001602082028036833780820191505090505b5090503081600081518110611ed857611ed761277f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa19190612fcd565b81600181518110611fb557611fb461277f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061201a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e0b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161207c9594939291906130f3565b600060405180830381600087803b15801561209657600080fd5b505af11580156120aa573d6000803e3d6000fd5b505050505050565b6120dd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e0b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121649695949392919061314d565b60606040518083038185885af1158015612182573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121a791906131c3565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121e85780820151818401526020810190506121cd565b60008484015250505050565b6000601f19601f8301169050919050565b6000612210826121ae565b61221a81856121b9565b935061222a8185602086016121ca565b612233816121f4565b840191505092915050565b600060208201905081810360008301526122588184612205565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122958261226a565b9050919050565b6122a58161228a565b81146122b057600080fd5b50565b6000813590506122c28161229c565b92915050565b6000819050919050565b6122db816122c8565b81146122e657600080fd5b50565b6000813590506122f8816122d2565b92915050565b6000806040838503121561231557612314612260565b5b6000612323858286016122b3565b9250506020612334858286016122e9565b9150509250929050565b60008115159050919050565b6123538161233e565b82525050565b600060208201905061236e600083018461234a565b92915050565b6000819050919050565b600061239961239461238f8461226a565b612374565b61226a565b9050919050565b60006123ab8261237e565b9050919050565b60006123bd826123a0565b9050919050565b6123cd816123b2565b82525050565b60006020820190506123e860008301846123c4565b92915050565b6123f7816122c8565b82525050565b600060208201905061241260008301846123ee565b92915050565b60008060006060848603121561243157612430612260565b5b600061243f868287016122b3565b9350506020612450868287016122b3565b9250506040612461868287016122e9565b9150509250925092565b6124748161228a565b82525050565b600060208201905061248f600083018461246b565b92915050565b600060ff82169050919050565b6124ab81612495565b82525050565b60006020820190506124c660008301846124a2565b92915050565b6000602082840312156124e2576124e1612260565b5b60006124f0848285016122b3565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261251e5761251d6124f9565b5b8235905067ffffffffffffffff81111561253b5761253a6124fe565b5b60208301915083602082028301111561255757612556612503565b5b9250929050565b6125678161233e565b811461257257600080fd5b50565b6000813590506125848161255e565b92915050565b6000806000604084860312156125a3576125a2612260565b5b600084013567ffffffffffffffff8111156125c1576125c0612265565b5b6125cd86828701612508565b935093505060206125e086828701612575565b9150509250925092565b6000806040838503121561260157612600612260565b5b600061260f858286016122b3565b9250506020612620858286016122b3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061267157607f821691505b6020821081036126845761268361262a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006126c4826122c8565b91506126cf836122c8565b92508282019050808211156126e7576126e661268a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127496025836121b9565b9150612754826126ed565b604082019050919050565b600060208201905081810360008301526127788161273c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061280a6039836121b9565b9150612815826127ae565b604082019050919050565b60006020820190508181036000830152612839816127fd565b9050919050565b600061284b826122c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361287d5761287c61268a565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006128e46026836121b9565b91506128ef82612888565b604082019050919050565b60006020820190508181036000830152612913816128d7565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b60006129506017836121b9565b915061295b8261291a565b602082019050919050565b6000602082019050818103600083015261297f81612943565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129e26024836121b9565b91506129ed82612986565b604082019050919050565b60006020820190508181036000830152612a11816129d5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a746022836121b9565b9150612a7f82612a18565b604082019050919050565b60006020820190508181036000830152612aa381612a67565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612ae0601d836121b9565b9150612aeb82612aaa565b602082019050919050565b60006020820190508181036000830152612b0f81612ad3565b9050919050565b7f45524332303a207472616e736665722066726f6d207468652070756d70207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612b72602a836121b9565b9150612b7d82612b16565b604082019050919050565b60006020820190508181036000830152612ba181612b65565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612c046023836121b9565b9150612c0f82612ba8565b604082019050919050565b60006020820190508181036000830152612c3381612bf7565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612c706018836121b9565b9150612c7b82612c3a565b602082019050919050565b60006020820190508181036000830152612c9f81612c63565b9050919050565b6000612cb1826122c8565b9150612cbc836122c8565b9250828202612cca816122c8565b91508282048414831517612ce157612ce061268a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d22826122c8565b9150612d2d836122c8565b925082612d3d57612d3c612ce8565b5b828204905092915050565b6000612d53826122c8565b9150612d5e836122c8565b9250828203905081811115612d7657612d7561268a565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612db26020836121b9565b9150612dbd82612d7c565b602082019050919050565b60006020820190508181036000830152612de181612da5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612e446025836121b9565b9150612e4f82612de8565b604082019050919050565b60006020820190508181036000830152612e7381612e37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ed66026836121b9565b9150612ee182612e7a565b604082019050919050565b60006020820190508181036000830152612f0581612ec9565b9050919050565b6000606082019050612f2160008301866123ee565b612f2e60208301856123ee565b612f3b60408301846123ee565b949350505050565b600081905092915050565b50565b6000612f5e600083612f43565b9150612f6982612f4e565b600082019050919050565b6000612f7f82612f51565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050612fc78161229c565b92915050565b600060208284031215612fe357612fe2612260565b5b6000612ff184828501612fb8565b91505092915050565b6000819050919050565b600061301f61301a61301584612ffa565b612374565b6122c8565b9050919050565b61302f81613004565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61306a8161228a565b82525050565b600061307c8383613061565b60208301905092915050565b6000602082019050919050565b60006130a082613035565b6130aa8185613040565b93506130b583613051565b8060005b838110156130e65781516130cd8882613070565b97506130d883613088565b9250506001810190506130b9565b5085935050505092915050565b600060a08201905061310860008301886123ee565b6131156020830187613026565b81810360408301526131278186613095565b9050613136606083018561246b565b61314360808301846123ee565b9695505050505050565b600060c082019050613162600083018961246b565b61316f60208301886123ee565b61317c6040830187613026565b6131896060830186613026565b613196608083018561246b565b6131a360a08301846123ee565b979650505050505050565b6000815190506131bd816122d2565b92915050565b6000806000606084860312156131dc576131db612260565b5b60006131ea868287016131ae565b93505060206131fb868287016131ae565b925050604061320c868287016131ae565b915050925092509256fea2646970667358221220ebbb5ce17c010356eb613f886ce9ae0006db34bd73002f8b69c416b5450493a364736f6c63430008110033

Deployed Bytecode Sourcemap

38830:8332:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6114:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7032:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38904:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6429:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7239:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39112:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6330:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7506:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38962:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39174:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39465:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39207:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6543:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11750:103;;;;;;;;;;;;;:::i;:::-;;38999:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11519:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6220:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7750:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41682:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6676:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42135:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39036:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39075:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39310:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6875:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39268:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11859:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41506:169;;;;;;;;;;;;;:::i;:::-;;6114:100;6168:13;6201:5;6194:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6114:100;:::o;7032:201::-;7115:4;7132:13;7148:12;:10;:12::i;:::-;7132:28;;7171:32;7180:5;7187:7;7196:6;7171:8;:32::i;:::-;7221:4;7214:11;;;7032:201;;;;:::o;38904:51::-;;;:::o;6429:108::-;6490:7;6517:12;;6510:19;;6429:108;:::o;7239:261::-;7336:4;7353:15;7371:12;:10;:12::i;:::-;7353:30;;7394:38;7410:4;7416:7;7425:6;7394:15;:38::i;:::-;7443:27;7453:4;7459:2;7463:6;7443:9;:27::i;:::-;7488:4;7481:11;;;7239:261;;;;;:::o;39112:53::-;39158:6;39112:53;:::o;6330:93::-;6388:5;6413:2;6406:9;;6330:93;:::o;7506:238::-;7594:4;7611:13;7627:12;:10;:12::i;:::-;7611:28;;7650:64;7659:5;7666:7;7703:10;7675:25;7685:5;7692:7;7675:9;:25::i;:::-;:38;;;;:::i;:::-;7650:8;:64::i;:::-;7732:4;7725:11;;;7506:238;;;;:::o;38962:28::-;;;;;;;;;;;;;:::o;39174:26::-;;;;;;;;;;;;;:::o;39465:28::-;;;;:::o;39207:23::-;;;;;;;;;;;;;:::o;6543:127::-;6617:7;6644:9;:18;6654:7;6644:18;;;;;;;;;;;;;;;;6637:25;;6543:127;;;:::o;11750:103::-;11480:13;:11;:13::i;:::-;11815:30:::1;11842:1;11815:18;:30::i;:::-;11750:103::o:0;38999:30::-;;;;;;;;;;;;;:::o;11519:87::-;11565:7;11592:6;;;;;;;;;;;11585:13;;11519:87;:::o;6220:104::-;6276:13;6309:7;6302:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6220:104;:::o;7750:436::-;7843:4;7860:13;7876:12;:10;:12::i;:::-;7860:28;;7899:24;7926:25;7936:5;7943:7;7926:9;:25::i;:::-;7899:52;;7990:15;7970:16;:35;;7962:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;8083:60;8092:5;8099:7;8127:15;8108:16;:34;8083:8;:60::i;:::-;8174:4;8167:11;;;;7750:436;;;;:::o;41682:273::-;11480:13;:11;:13::i;:::-;41767:9:::1;41762:190;41786:5;;:12;;41782:1;:16;41762:190;;;41836:13;;;;;;;;;;;41824:25;;:5;;41830:1;41824:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:25;;::::0;41816:95:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41922:22;41928:5;;41934:1;41928:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;41938:5;41922;:22::i;:::-;41800:3;;;;;:::i;:::-;;;;41762:190;;;;41682:273:::0;;;:::o;6676:193::-;6755:4;6772:13;6788:12;:10;:12::i;:::-;6772:28;;6811;6821:5;6828:2;6832:6;6811:9;:28::i;:::-;6857:4;6850:11;;;6676:193;;;;:::o;42135:197::-;11480:13;:11;:13::i;:::-;42225:9:::1;42221:104;42244:8;;:15;;42240:1;:19;42221:104;;;42305:8;42281;:21;42290:8;;42299:1;42290:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;42281:21;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;42261:3;;;;;:::i;:::-;;;;42221:104;;;;42135:197:::0;;;:::o;39036:32::-;;;;;;;;;;;;;:::o;39075:30::-;;;;;;;;;;;;;:::o;39310:27::-;;;;:::o;6875:151::-;6964:7;6991:11;:18;7003:5;6991:18;;;;;;;;;;;;;;;:27;7010:7;6991:27;;;;;;;;;;;;;;;;6984:34;;6875:151;;;;:::o;39268:33::-;;;;:::o;11859:201::-;11480:13;:11;:13::i;:::-;11968:1:::1;11948:22;;:8;:22;;::::0;11940:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;12024:28;12043:8;12024:18;:28::i;:::-;11859:201:::0;:::o;41506:169::-;11480:13;:11;:13::i;:::-;41564:14:::1;;;;;;;;;;;41563:15;41555:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;41634:4;41617:14;;:21;;;;;;;;;;;;;;;;;;41663:4;41649:11;;:18;;;;;;;;;;;;;;;;;;41506:169::o:0;5490:98::-;5543:7;5570:10;5563:17;;5490:98;:::o;10241:346::-;10360:1;10343:19;;:5;:19;;;10335:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10441:1;10422:21;;:7;:21;;;10414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10525:6;10495:11;:18;10507:5;10495:18;;;;;;;;;;;;;;;:27;10514:7;10495:27;;;;;;;;;;;;;;;:36;;;;10563:7;10547:32;;10556:5;10547:32;;;10572:6;10547:32;;;;;;:::i;:::-;;;;;;;;10241:346;;;:::o;10593:419::-;10694:24;10721:25;10731:5;10738:7;10721:9;:25::i;:::-;10694:52;;10781:17;10761:16;:37;10757:248;;10843:6;10823:16;:26;;10815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10927:51;10936:5;10943:7;10971:6;10952:16;:25;10927:8;:51::i;:::-;10757:248;10683:329;10593:419;;;:::o;42340:2311::-;42488:1;42472:18;;:4;:18;;;42464:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42570:1;42556:16;;:2;:16;;;42548:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42631:14;;;;;;;;;;;:32;;;;42649:8;:14;42658:4;42649:14;;;;;;;;;;;;;;;;;;;;;;;;;42631:32;:48;;;;42667:8;:12;42676:2;42667:12;;;;;;;;;;;;;;;;;;;;;;;;;42631:48;42623:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;42733:1;42723:6;:11;42719:93;;42751:28;42767:4;42773:2;42777:1;42751:15;:28::i;:::-;42794:7;;42719:93;42826:28;42857:24;42875:4;42857:9;:24::i;:::-;42826:55;;42894:12;42933:18;;42909:20;:42;;42894:57;;42982:7;:35;;;;;43006:11;;;;;;;;;;;42982:35;:70;;;;;43020:26;:32;43047:4;43020:32;;;;;;;;;;;;;;;;;;;;;;;;;42982:70;:82;;;;;43055:9;;;;;;;;;;;43054:10;42982:82;:113;;;;;43081:8;:14;43090:4;43081:14;;;;;;;;;;;;;;;;;;;;;;;;;43080:15;42982:113;:143;;;;;43113:8;:12;43122:2;43113:12;;;;;;;;;;;;;;;;;;;;;;;;;43112:13;42982:143;42964:278;;;43164:4;43152:9;;:16;;;;;;;;;;;;;;;;;;43185:11;:9;:11::i;:::-;43225:5;43213:9;;:17;;;;;;;;;;;;;;;;;;42964:278;43254:12;43270:9;;;;;;;;;;;43269:10;43254:25;;43296:8;:14;43305:4;43296:14;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;43314:8;:12;43323:2;43314:12;;;;;;;;;;;;;;;;;;;;;;;;;43296:30;43292:78;;;43353:5;43343:15;;43292:78;43382:12;43415:7;43411:1187;;;43467:26;:30;43494:2;43467:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;43517:1;43501:13;;:17;43467:51;43463:986;;;43546:36;43576:5;43546:25;43557:13;;43546:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;43539:43;;43695:13;;43653:17;;43646:4;:24;;;;:::i;:::-;43645:63;;;;:::i;:::-;43601:19;;:107;;;;;;;:::i;:::-;;;;;;;;43821:13;;43779:17;;43772:4;:24;;;;:::i;:::-;43771:63;;;;:::i;:::-;43727:19;;:107;;;;;;;:::i;:::-;;;;;;;;43951:13;;43907:19;;43900:4;:26;;;;:::i;:::-;43899:65;;;;:::i;:::-;43853:21;;:111;;;;;;;:::i;:::-;;;;;;;;43463:986;;;44026:26;:32;44053:4;44026:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;44077:1;44062:12;;:16;44026:52;44022:427;;;44106:35;44135:5;44106:24;44117:12;;44106:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;44099:42;;44211:12;;44191:16;;44184:4;:23;;;;:::i;:::-;44183:40;;;;:::i;:::-;44160:19;;:63;;;;;;;:::i;:::-;;;;;;;;44293:12;;44273:16;;44266:4;:23;;;;:::i;:::-;44265:40;;;;:::i;:::-;44242:19;;:63;;;;;;;:::i;:::-;;;;;;;;44421:12;;44378:18;;44371:4;:25;;;;:::i;:::-;44370:63;;;;:::i;:::-;44324:21;;:109;;;;;;;:::i;:::-;;;;;;;;44022:427;43463:986;44476:1;44469:4;:8;44465:91;;;44498:42;44514:4;44528;44535;44498:15;:42::i;:::-;44465:91;44582:4;44572:14;;;;;:::i;:::-;;;43411:1187;44610:33;44626:4;44632:2;44636:6;44610:15;:33::i;:::-;42453:2198;;;;42340:2311;;;;:::o;11612:132::-;11687:12;:10;:12::i;:::-;11676:23;;:7;:5;:7::i;:::-;:23;;;11668:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11612:132::o;12066:191::-;12140:16;12159:6;;;;;;;;;;;12140:25;;12185:8;12176:6;;:17;;;;;;;;;;;;;;;;;;12240:8;12209:40;;12230:8;12209:40;;;;;;;;;;;;12129:128;12066:191;:::o;41963:164::-;42058:5;42023:26;:32;42050:4;42023:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;42113:5;42079:40;;42107:4;42079:40;;;;;;;;;;;;41963:164;;:::o;8194:806::-;8307:1;8291:18;;:4;:18;;;8283:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8384:1;8370:16;;:2;:16;;;8362:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8439:38;8460:4;8466:2;8470:6;8439:20;:38::i;:::-;8490:19;8512:9;:15;8522:4;8512:15;;;;;;;;;;;;;;;;8490:37;;8561:6;8546:11;:21;;8538:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8678:6;8664:11;:20;8646:9;:15;8656:4;8646:15;;;;;;;;;;;;;;;:38;;;;8881:6;8864:9;:13;8874:2;8864:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8931:2;8916:26;;8925:4;8916:26;;;8935:6;8916:26;;;;;;:::i;:::-;;;;;;;;8955:37;8975:4;8981:2;8985:6;8955:19;:37::i;:::-;8272:728;8194:806;;;:::o;45550:1607::-;45591:23;45617:24;45635:4;45617:9;:24::i;:::-;45591:50;;45652:25;45750:21;;45715:19;;45680;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;45652:119;;45782:12;45809:23;45923:1;45890:17;45854:19;;45836:15;:37;;;;:::i;:::-;45835:72;;;;:::i;:::-;:89;;;;:::i;:::-;45809:115;;45935:26;45964:36;45984:15;45964;:19;;:36;;;;:::i;:::-;45935:65;;46013:25;46041:21;46013:49;;46075:37;46093:18;46075:17;:37::i;:::-;46125:18;46146:44;46172:17;46146:21;:25;;:44;;;;:::i;:::-;46125:65;;46203:23;46229:82;46283:17;46229:35;46244:19;;46229:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;46203:108;;46324:25;46352:84;46408:17;46352:37;46367:21;;46352:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;46324:112;;46449:23;46532:17;46501:15;46475:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;46449:100;;46584:1;46562:19;:23;;;;46618:1;46596:19;:23;;;;46654:1;46630:21;:25;;;;46690:1;46672:15;:19;:42;;;;;46713:1;46695:15;:19;46672:42;46668:280;;;46731:47;46745:15;46762;46731:13;:47::i;:::-;46798:138;46831:18;46868:15;46902:19;;46798:138;;;;;;;;:::i;:::-;;;;;;;;46668:280;46982:17;;;;;;;;;;;46974:31;;47013:17;46974:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46960:75;;;;;47070:15;;;;;;;;;;;47062:29;;47113:21;47062:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47048:101;;;;;45580:1577;;;;;;;;;;45550:1607::o;28860:98::-;28918:7;28949:1;28945;:5;;;;:::i;:::-;28938:12;;28860:98;;;;:::o;28970:::-;29028:7;29059:1;29055;:5;;;;:::i;:::-;29048:12;;28970:98;;;;:::o;11018:91::-;;;;:::o;11115:90::-;;;;:::o;28750:98::-;28808:7;28839:1;28835;:5;;;;:::i;:::-;28828:12;;28750:98;;;;:::o;44659:503::-;44727:21;44765:1;44751:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44727:40;;44796:4;44778;44783:1;44778:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44822:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44812:4;44817:1;44812:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44857:62;44874:4;44889:15;44907:11;44857:8;:62::i;:::-;44958:15;:66;;;45039:11;45065:1;45081:4;45108;45128:15;44958:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44716:446;44659:503;:::o;45170:372::-;45253:62;45270:4;45285:15;45303:11;45253:8;:62::i;:::-;45328:15;:31;;;45367:9;45400:4;45420:11;45446:1;45462;45478:15;;;;;;;;;;;45508;45328:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45170: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;1553:117;1662:1;1659;1652: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:117::-;6627:1;6624;6617:12;6641:117;6750:1;6747;6740:12;6764:117;6873:1;6870;6863:12;6904:568;6977:8;6987:6;7037:3;7030:4;7022:6;7018:17;7014:27;7004:122;;7045:79;;:::i;:::-;7004:122;7158:6;7145:20;7135:30;;7188:18;7180:6;7177:30;7174:117;;;7210:79;;:::i;:::-;7174:117;7324:4;7316:6;7312:17;7300:29;;7378:3;7370:4;7362:6;7358:17;7348:8;7344:32;7341:41;7338:128;;;7385:79;;:::i;:::-;7338:128;6904:568;;;;;:::o;7478:116::-;7548:21;7563:5;7548:21;:::i;:::-;7541:5;7538:32;7528:60;;7584:1;7581;7574:12;7528:60;7478:116;:::o;7600:133::-;7643:5;7681:6;7668:20;7659:29;;7697:30;7721:5;7697:30;:::i;:::-;7600:133;;;;:::o;7739:698::-;7831:6;7839;7847;7896:2;7884:9;7875:7;7871:23;7867:32;7864:119;;;7902:79;;:::i;:::-;7864:119;8050:1;8039:9;8035:17;8022:31;8080:18;8072:6;8069:30;8066:117;;;8102:79;;:::i;:::-;8066:117;8215:80;8287:7;8278:6;8267:9;8263:22;8215:80;:::i;:::-;8197:98;;;;7993:312;8344:2;8370:50;8412:7;8403:6;8392:9;8388:22;8370:50;:::i;:::-;8360:60;;8315:115;7739:698;;;;;:::o;8443:474::-;8511:6;8519;8568:2;8556:9;8547:7;8543:23;8539:32;8536:119;;;8574:79;;:::i;:::-;8536:119;8694:1;8719:53;8764:7;8755:6;8744:9;8740:22;8719:53;:::i;:::-;8709:63;;8665:117;8821:2;8847:53;8892:7;8883:6;8872:9;8868:22;8847:53;:::i;:::-;8837:63;;8792:118;8443:474;;;;;:::o;8923:180::-;8971:77;8968:1;8961:88;9068:4;9065:1;9058:15;9092:4;9089:1;9082:15;9109:320;9153:6;9190:1;9184:4;9180:12;9170:22;;9237:1;9231:4;9227:12;9258:18;9248:81;;9314:4;9306:6;9302:17;9292:27;;9248:81;9376:2;9368:6;9365:14;9345:18;9342:38;9339:84;;9395:18;;:::i;:::-;9339:84;9160:269;9109:320;;;:::o;9435:180::-;9483:77;9480:1;9473:88;9580:4;9577:1;9570:15;9604:4;9601:1;9594:15;9621:191;9661:3;9680:20;9698:1;9680:20;:::i;:::-;9675:25;;9714:20;9732:1;9714:20;:::i;:::-;9709:25;;9757:1;9754;9750:9;9743:16;;9778:3;9775:1;9772:10;9769:36;;;9785:18;;:::i;:::-;9769:36;9621:191;;;;:::o;9818:224::-;9958:34;9954:1;9946:6;9942:14;9935:58;10027:7;10022:2;10014:6;10010:15;10003:32;9818:224;:::o;10048:366::-;10190:3;10211:67;10275:2;10270:3;10211:67;:::i;:::-;10204:74;;10287:93;10376:3;10287:93;:::i;:::-;10405:2;10400:3;10396:12;10389:19;;10048:366;;;:::o;10420:419::-;10586:4;10624:2;10613:9;10609:18;10601:26;;10673:9;10667:4;10663:20;10659:1;10648:9;10644:17;10637:47;10701:131;10827:4;10701:131;:::i;:::-;10693:139;;10420:419;;;:::o;10845:180::-;10893:77;10890:1;10883:88;10990:4;10987:1;10980:15;11014:4;11011:1;11004:15;11031:244;11171:34;11167:1;11159:6;11155:14;11148:58;11240:27;11235:2;11227:6;11223:15;11216:52;11031:244;:::o;11281:366::-;11423:3;11444:67;11508:2;11503:3;11444:67;:::i;:::-;11437:74;;11520:93;11609:3;11520:93;:::i;:::-;11638:2;11633:3;11629:12;11622:19;;11281:366;;;:::o;11653:419::-;11819:4;11857:2;11846:9;11842:18;11834:26;;11906:9;11900:4;11896:20;11892:1;11881:9;11877:17;11870:47;11934:131;12060:4;11934:131;:::i;:::-;11926:139;;11653:419;;;:::o;12078:233::-;12117:3;12140:24;12158:5;12140:24;:::i;:::-;12131:33;;12186:66;12179:5;12176:77;12173:103;;12256:18;;:::i;:::-;12173:103;12303:1;12296:5;12292:13;12285:20;;12078:233;;;:::o;12317:225::-;12457:34;12453:1;12445:6;12441:14;12434:58;12526:8;12521:2;12513:6;12509:15;12502:33;12317:225;:::o;12548:366::-;12690:3;12711:67;12775:2;12770:3;12711:67;:::i;:::-;12704:74;;12787:93;12876:3;12787:93;:::i;:::-;12905:2;12900:3;12896:12;12889:19;;12548:366;;;:::o;12920:419::-;13086:4;13124:2;13113:9;13109:18;13101:26;;13173:9;13167:4;13163:20;13159:1;13148:9;13144:17;13137:47;13201:131;13327:4;13201:131;:::i;:::-;13193:139;;12920:419;;;:::o;13345:173::-;13485:25;13481:1;13473:6;13469:14;13462:49;13345:173;:::o;13524:366::-;13666:3;13687:67;13751:2;13746:3;13687:67;:::i;:::-;13680:74;;13763:93;13852:3;13763:93;:::i;:::-;13881:2;13876:3;13872:12;13865:19;;13524:366;;;:::o;13896:419::-;14062:4;14100:2;14089:9;14085:18;14077:26;;14149:9;14143:4;14139:20;14135:1;14124:9;14120:17;14113:47;14177:131;14303:4;14177:131;:::i;:::-;14169:139;;13896:419;;;:::o;14321:223::-;14461:34;14457:1;14449:6;14445:14;14438:58;14530:6;14525:2;14517:6;14513:15;14506:31;14321:223;:::o;14550:366::-;14692:3;14713:67;14777:2;14772:3;14713:67;:::i;:::-;14706:74;;14789:93;14878:3;14789:93;:::i;:::-;14907:2;14902:3;14898:12;14891:19;;14550:366;;;:::o;14922:419::-;15088:4;15126:2;15115:9;15111:18;15103:26;;15175:9;15169:4;15165:20;15161:1;15150:9;15146:17;15139:47;15203:131;15329:4;15203:131;:::i;:::-;15195:139;;14922:419;;;:::o;15347:221::-;15487:34;15483:1;15475:6;15471:14;15464:58;15556:4;15551:2;15543:6;15539:15;15532:29;15347:221;:::o;15574:366::-;15716:3;15737:67;15801:2;15796:3;15737:67;:::i;:::-;15730:74;;15813:93;15902:3;15813:93;:::i;:::-;15931:2;15926:3;15922:12;15915:19;;15574:366;;;:::o;15946:419::-;16112:4;16150:2;16139:9;16135:18;16127:26;;16199:9;16193:4;16189:20;16185:1;16174:9;16170:17;16163:47;16227:131;16353:4;16227:131;:::i;:::-;16219:139;;15946:419;;;:::o;16371:179::-;16511:31;16507:1;16499:6;16495:14;16488:55;16371:179;:::o;16556:366::-;16698:3;16719:67;16783:2;16778:3;16719:67;:::i;:::-;16712:74;;16795:93;16884:3;16795:93;:::i;:::-;16913:2;16908:3;16904:12;16897:19;;16556:366;;;:::o;16928:419::-;17094:4;17132:2;17121:9;17117:18;17109:26;;17181:9;17175:4;17171:20;17167:1;17156:9;17152:17;17145:47;17209:131;17335:4;17209:131;:::i;:::-;17201:139;;16928:419;;;:::o;17353:229::-;17493:34;17489:1;17481:6;17477:14;17470:58;17562:12;17557:2;17549:6;17545:15;17538:37;17353:229;:::o;17588:366::-;17730:3;17751:67;17815:2;17810:3;17751:67;:::i;:::-;17744:74;;17827:93;17916:3;17827:93;:::i;:::-;17945:2;17940:3;17936:12;17929:19;;17588:366;;;:::o;17960:419::-;18126:4;18164:2;18153:9;18149:18;18141:26;;18213:9;18207:4;18203:20;18199:1;18188:9;18184:17;18177:47;18241:131;18367:4;18241:131;:::i;:::-;18233:139;;17960:419;;;:::o;18385:222::-;18525:34;18521:1;18513:6;18509:14;18502:58;18594:5;18589:2;18581:6;18577:15;18570:30;18385:222;:::o;18613:366::-;18755:3;18776:67;18840:2;18835:3;18776:67;:::i;:::-;18769:74;;18852:93;18941:3;18852:93;:::i;:::-;18970:2;18965:3;18961:12;18954:19;;18613:366;;;:::o;18985:419::-;19151:4;19189:2;19178:9;19174:18;19166:26;;19238:9;19232:4;19228:20;19224:1;19213:9;19209:17;19202:47;19266:131;19392:4;19266:131;:::i;:::-;19258:139;;18985:419;;;:::o;19410:174::-;19550:26;19546:1;19538:6;19534:14;19527:50;19410:174;:::o;19590:366::-;19732:3;19753:67;19817:2;19812:3;19753:67;:::i;:::-;19746:74;;19829:93;19918:3;19829:93;:::i;:::-;19947:2;19942:3;19938:12;19931:19;;19590:366;;;:::o;19962:419::-;20128:4;20166:2;20155:9;20151:18;20143:26;;20215:9;20209:4;20205:20;20201:1;20190:9;20186:17;20179:47;20243:131;20369:4;20243:131;:::i;:::-;20235:139;;19962:419;;;:::o;20387:410::-;20427:7;20450:20;20468:1;20450:20;:::i;:::-;20445:25;;20484:20;20502:1;20484:20;:::i;:::-;20479:25;;20539:1;20536;20532:9;20561:30;20579:11;20561:30;:::i;:::-;20550:41;;20740:1;20731:7;20727:15;20724:1;20721:22;20701:1;20694:9;20674:83;20651:139;;20770:18;;:::i;:::-;20651:139;20435:362;20387:410;;;;:::o;20803:180::-;20851:77;20848:1;20841:88;20948:4;20945:1;20938:15;20972:4;20969:1;20962:15;20989:185;21029:1;21046:20;21064:1;21046:20;:::i;:::-;21041:25;;21080:20;21098:1;21080:20;:::i;:::-;21075:25;;21119:1;21109:35;;21124:18;;:::i;:::-;21109:35;21166:1;21163;21159:9;21154:14;;20989:185;;;;:::o;21180:194::-;21220:4;21240:20;21258:1;21240:20;:::i;:::-;21235:25;;21274:20;21292:1;21274:20;:::i;:::-;21269:25;;21318:1;21315;21311:9;21303:17;;21342:1;21336:4;21333:11;21330:37;;;21347:18;;:::i;:::-;21330:37;21180:194;;;;:::o;21380:182::-;21520:34;21516:1;21508:6;21504:14;21497:58;21380:182;:::o;21568:366::-;21710:3;21731:67;21795:2;21790:3;21731:67;:::i;:::-;21724:74;;21807:93;21896:3;21807:93;:::i;:::-;21925:2;21920:3;21916:12;21909:19;;21568:366;;;:::o;21940:419::-;22106:4;22144:2;22133:9;22129:18;22121:26;;22193:9;22187:4;22183:20;22179:1;22168:9;22164:17;22157:47;22221:131;22347:4;22221:131;:::i;:::-;22213:139;;21940:419;;;:::o;22365:224::-;22505:34;22501:1;22493:6;22489:14;22482:58;22574:7;22569:2;22561:6;22557:15;22550:32;22365:224;:::o;22595:366::-;22737:3;22758:67;22822:2;22817:3;22758:67;:::i;:::-;22751:74;;22834:93;22923:3;22834:93;:::i;:::-;22952:2;22947:3;22943:12;22936:19;;22595:366;;;:::o;22967:419::-;23133:4;23171:2;23160:9;23156:18;23148:26;;23220:9;23214:4;23210:20;23206:1;23195:9;23191:17;23184:47;23248:131;23374:4;23248:131;:::i;:::-;23240:139;;22967:419;;;:::o;23392:225::-;23532:34;23528:1;23520:6;23516:14;23509:58;23601:8;23596:2;23588:6;23584:15;23577:33;23392:225;:::o;23623:366::-;23765:3;23786:67;23850:2;23845:3;23786:67;:::i;:::-;23779:74;;23862:93;23951:3;23862:93;:::i;:::-;23980:2;23975:3;23971:12;23964:19;;23623:366;;;:::o;23995:419::-;24161:4;24199:2;24188:9;24184:18;24176:26;;24248:9;24242:4;24238:20;24234:1;24223:9;24219:17;24212:47;24276:131;24402:4;24276:131;:::i;:::-;24268:139;;23995:419;;;:::o;24420:442::-;24569:4;24607:2;24596:9;24592:18;24584:26;;24620:71;24688:1;24677:9;24673:17;24664:6;24620:71;:::i;:::-;24701:72;24769:2;24758:9;24754:18;24745:6;24701:72;:::i;:::-;24783;24851:2;24840:9;24836:18;24827:6;24783:72;:::i;:::-;24420:442;;;;;;:::o;24868:147::-;24969:11;25006:3;24991:18;;24868:147;;;;:::o;25021:114::-;;:::o;25141:398::-;25300:3;25321:83;25402:1;25397:3;25321:83;:::i;:::-;25314:90;;25413:93;25502:3;25413:93;:::i;:::-;25531:1;25526:3;25522:11;25515:18;;25141:398;;;:::o;25545:379::-;25729:3;25751:147;25894:3;25751:147;:::i;:::-;25744:154;;25915:3;25908:10;;25545:379;;;:::o;25930:180::-;25978:77;25975:1;25968:88;26075:4;26072:1;26065:15;26099:4;26096:1;26089:15;26116:143;26173:5;26204:6;26198:13;26189:22;;26220:33;26247:5;26220:33;:::i;:::-;26116:143;;;;:::o;26265:351::-;26335:6;26384:2;26372:9;26363:7;26359:23;26355:32;26352:119;;;26390:79;;:::i;:::-;26352:119;26510:1;26535:64;26591:7;26582:6;26571:9;26567:22;26535:64;:::i;:::-;26525:74;;26481:128;26265:351;;;;:::o;26622:85::-;26667:7;26696:5;26685:16;;26622:85;;;:::o;26713:158::-;26771:9;26804:61;26822:42;26831:32;26857:5;26831:32;:::i;:::-;26822:42;:::i;:::-;26804:61;:::i;:::-;26791:74;;26713:158;;;:::o;26877:147::-;26972:45;27011:5;26972:45;:::i;:::-;26967:3;26960:58;26877:147;;:::o;27030:114::-;27097:6;27131:5;27125:12;27115:22;;27030:114;;;:::o;27150:184::-;27249:11;27283:6;27278:3;27271:19;27323:4;27318:3;27314:14;27299:29;;27150:184;;;;:::o;27340:132::-;27407:4;27430:3;27422:11;;27460:4;27455:3;27451:14;27443:22;;27340:132;;;:::o;27478:108::-;27555:24;27573:5;27555:24;:::i;:::-;27550:3;27543:37;27478:108;;:::o;27592:179::-;27661:10;27682:46;27724:3;27716:6;27682:46;:::i;:::-;27760:4;27755:3;27751:14;27737:28;;27592:179;;;;:::o;27777:113::-;27847:4;27879;27874:3;27870:14;27862:22;;27777:113;;;:::o;27926:732::-;28045:3;28074:54;28122:5;28074:54;:::i;:::-;28144:86;28223:6;28218:3;28144:86;:::i;:::-;28137:93;;28254:56;28304:5;28254:56;:::i;:::-;28333:7;28364:1;28349:284;28374:6;28371:1;28368:13;28349:284;;;28450:6;28444:13;28477:63;28536:3;28521:13;28477:63;:::i;:::-;28470:70;;28563:60;28616:6;28563:60;:::i;:::-;28553:70;;28409:224;28396:1;28393;28389:9;28384:14;;28349:284;;;28353:14;28649:3;28642:10;;28050:608;;;27926:732;;;;:::o;28664:831::-;28927:4;28965:3;28954:9;28950:19;28942:27;;28979:71;29047:1;29036:9;29032:17;29023:6;28979:71;:::i;:::-;29060:80;29136:2;29125:9;29121:18;29112:6;29060:80;:::i;:::-;29187:9;29181:4;29177:20;29172:2;29161:9;29157:18;29150:48;29215:108;29318:4;29309:6;29215:108;:::i;:::-;29207:116;;29333:72;29401:2;29390:9;29386:18;29377:6;29333:72;:::i;:::-;29415:73;29483:3;29472:9;29468:19;29459:6;29415:73;:::i;:::-;28664:831;;;;;;;;:::o;29501:807::-;29750:4;29788:3;29777:9;29773:19;29765:27;;29802:71;29870:1;29859:9;29855:17;29846:6;29802:71;:::i;:::-;29883:72;29951:2;29940:9;29936:18;29927:6;29883:72;:::i;:::-;29965:80;30041:2;30030:9;30026:18;30017:6;29965:80;:::i;:::-;30055;30131:2;30120:9;30116:18;30107:6;30055:80;:::i;:::-;30145:73;30213:3;30202:9;30198:19;30189:6;30145:73;:::i;:::-;30228;30296:3;30285:9;30281:19;30272:6;30228:73;:::i;:::-;29501:807;;;;;;;;;:::o;30314:143::-;30371:5;30402:6;30396:13;30387:22;;30418:33;30445:5;30418:33;:::i;:::-;30314:143;;;;:::o;30463:663::-;30551:6;30559;30567;30616:2;30604:9;30595:7;30591:23;30587:32;30584:119;;;30622:79;;:::i;:::-;30584:119;30742:1;30767:64;30823:7;30814:6;30803:9;30799:22;30767:64;:::i;:::-;30757:74;;30713:128;30880:2;30906:64;30962:7;30953:6;30942:9;30938:22;30906:64;:::i;:::-;30896:74;;30851:129;31019:2;31045:64;31101:7;31092:6;31081:9;31077:22;31045:64;:::i;:::-;31035:74;;30990:129;30463:663;;;;;:::o

Swarm Source

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