ETH Price: $2,786.58 (+5.56%)

Token

Blooper Reel (BPE)
 

Overview

Max Total Supply

1,000,000 BPE

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,400 BPE

Value
$0.00
0xe994e8d3fb1c4cb8f735581da08fa9fce8a6a47d
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:
BlooperReel

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Main.sol
/*
https://t.me/BlooperReeleth
https://twitter.com/elonmusk/status/1640170427271069699
*/

// SPDX-License-Identifier: MIT

// File: contracts/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}


// File: contracts/IUniswapV2Router02.sol



pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


// File: contracts/IUniswapV2Pair.sol




pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}


// File: contracts/IUniswapV2Factory.sol




pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

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


// File: contracts/Address.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    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;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    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");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    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");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    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);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    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);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    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);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    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);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    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);
        }
    }
}


// File: contracts/Context.sol


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

pragma solidity ^0.8.0;

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

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


// File: contracts/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// File: contracts/SafeMath.sol


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

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

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

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

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

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File: contracts/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

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

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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


// File: contracts/old.sol



pragma solidity 0.8.17;








contract Blacklist {
    struct AntiBot {
        bool antiBotStatus;
        mapping(address => uint256) _userFirstTry;
        mapping(address => uint256) _userLastTry;
        mapping(address => bool) _blacklistedUsers;
    }
    AntiBot antiBot;
}

abstract contract Configuration is IERC20 {
    string public _name = "Blooper Reel";
    string public _symbol = "BPE";
    uint8 public _decimals = 18;
    uint256 public _totalSupply = 1000000 * 10**_decimals; // 1 million total supply
    address public developerAddress; // Developer Address
    uint256 public maxTransactionAmount = _totalSupply / 200; // 0.50% of the total supply
    uint256 public maxWalletBalance = _totalSupply / 100; // 1% of the total supply
    address public uniswapV2Router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    uint256 public numberOfTokensToSwapToLiquidity = _totalSupply / 1000; // 0.1% of the total supply
    uint8 public _liquidityFee = 4; // 4%
    uint8 public _developerFee = 2;  // 2%
    bool public _FeeOnBuy = true;
    bool public _FeeOnSell = true;
    bool public _FeeOnTransfer = false;
}

contract BlooperReel is Context, Configuration, Ownable, Blacklist {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) private _totalOwned;
    mapping(address => mapping(address => uint256)) private _allowances;

    mapping(address => bool) private _isExcludedFromFee;

    bool private inSwapAndLiquify;
    bool private swapAndLiquifyEnabled = true;

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    uint256 public launchingTime;
    bool public tradeStarted;

    IUniswapV2Router02 public _uniswapV2Router =
        IUniswapV2Router02(uniswapV2Router);
    address public uniswapV2Pair =
        IUniswapV2Factory(_uniswapV2Router.factory()).createPair(
            address(this),
            _uniswapV2Router.WETH()
        );

    /*
 
    * Steps to launch:
    *   0. 
    *   1. deploy contract.
    *   2. add Liq
    *   3. set _FeeOnTransfer to true (optional)
    *
    */
    constructor() {
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[developerAddress] = true;
        _isExcludedFromFee[uniswapV2Router] = true; 
        developerAddress =_msgSender();
        _approve(_msgSender(), address(uniswapV2Router), ~uint256(0));
        _approve(address(this), address(uniswapV2Router), ~uint256(0));
        antiBot.antiBotStatus = true;
        _totalOwned[_msgSender()] = _totalSupply; //mint all to msg.sender
        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    modifier isTradeStarted(address from, address to) {
        if (from != developerAddress) {
            require(tradeStarted == true, "trade not started");
        } else {}
        _;
    }
    
    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _totalOwned[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
        public
        view
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }

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

    // once enabled, can never be turned off
    function EnableTrading() external onlyOwner {
        tradeStarted = true;
        launchingTime = block.number;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        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 _transfer(
        address from,
        address to,
        uint256 amount
    ) private isTradeStarted(from, to) {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(
            !antiBot._blacklistedUsers[to] && !antiBot._blacklistedUsers[from],
            "You are not allowed"
        );
  
        if (
            amount > maxTransactionAmount &&
            !_isExcludedFromFee[from] &&
            !_isExcludedFromFee[to]
        ) {
            revert("Transfer is bigger than max tx amount");
        }
        if (
            maxWalletBalance > 0 &&
            !_isExcludedFromFee[from] &&
            !_isExcludedFromFee[to] &&
            to != uniswapV2Pair
        ) {
            uint256 recipientBalance = balanceOf(to);
            require(
                recipientBalance + amount <= maxWalletBalance,
                "Your balance is too high"
            );
        }
        if (antiBot.antiBotStatus == true) {
            if (
                to != owner() &&
                to != address(_uniswapV2Router) &&
                to != uniswapV2Pair
            ) {
                require(
                    antiBot._userLastTry[tx.origin] < block.number,
                    "You cannot do more than 1 transaction per block"
                );
                antiBot._userLastTry[tx.origin] = block.number;
            }
        }
        if (
            block.number <= (launchingTime + 2) &&
            to != address(_uniswapV2Router) &&
            to != uniswapV2Pair
        ) {
            antiBot._blacklistedUsers[to] = true;
        }

        bool takeFee = _FeeOnTransfer;

        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        } else {
            if (from == uniswapV2Pair) {
                takeFee = _FeeOnBuy;
            } else if (to == uniswapV2Pair) {
                takeFee = _FeeOnSell;
            }
        }

        _tokenTransfer(from, to, amount, takeFee);
    }

    function _beforeTransfer(address sender) internal {
        uint256 contractTokenBalance = balanceOf(address(this));
        checkLiqBal(contractTokenBalance, sender);
    }

    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (!takeFee) {
            _beforeTransfer(sender);

            _transferStandard(sender, recipient, amount);
        } else {
            _beforeTransfer(sender);

            _transferWithFee(sender, recipient, amount);
        }
    }

    function _transferWithFee(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        uint256 fromBalance = _totalOwned[sender];
        require(
            fromBalance >= tAmount,
            "ERC20: transfer amount exceeds balance"
        );

        uint256 devFee = (tAmount * _developerFee) / 100;
        uint256 liqFee = (tAmount * _liquidityFee) / 100;

        uint256 tTransferAmount = tAmount - devFee - liqFee;

        unchecked {
            _totalOwned[sender] = fromBalance - tTransferAmount;
            _totalOwned[recipient] += tTransferAmount;
            _totalOwned[address(this)] += liqFee;
            _totalOwned[developerAddress] += devFee;
        }

        emit Transfer(sender, recipient, tTransferAmount);
        emit Transfer(sender, developerAddress, devFee);
        emit Transfer(sender, address(this), liqFee);
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        uint256 fromBalance = _totalOwned[sender];
        require(
            fromBalance >= tAmount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _totalOwned[sender] = fromBalance - tAmount;
            _totalOwned[recipient] += tAmount;
        }

        emit Transfer(sender, recipient, tAmount);
    }

    function _getCurrentSupply() private view returns (uint256) {
        uint256 tSupply = _totalSupply;
        return tSupply;
    }


    function isExcludedFromFee(address _address) public view returns (bool) {
        return _isExcludedFromFee[_address];
    }

    function excludeFromFee(address _address) public onlyOwner {
        _isExcludedFromFee[_address] = true;
    }

    function includeInFee(address _address) public onlyOwner {
        _isExcludedFromFee[_address] = false;
    }

    function setFeesStatus(
        bool FeeOnBuy,
        bool FeeOnsell,
        bool FeeOnTransfer
    ) external onlyOwner {
        _FeeOnBuy = FeeOnBuy;
        _FeeOnSell = FeeOnsell;
        _FeeOnTransfer = FeeOnTransfer;
    }

    function checkFeesStatus() public view onlyOwner returns (bool[] memory) {
        bool[] memory result = new bool[](3);
        result[0] = _FeeOnBuy;
        result[1] = _FeeOnSell;
        result[2] = _FeeOnTransfer;
        return result;
    }


    function checkLiqBal(uint256 contractTokenBalance, address sender) internal {
        if (contractTokenBalance >= maxTransactionAmount)
            contractTokenBalance = maxTransactionAmount;

        bool isOverRequiredTokenBalance = (contractTokenBalance >=
            numberOfTokensToSwapToLiquidity);
        if (
            isOverRequiredTokenBalance &&
            swapAndLiquifyEnabled &&
            !inSwapAndLiquify &&
            (sender != uniswapV2Pair) 
        ) {
            startSwappingForLiquidity(contractTokenBalance);
        }
    }

    function startSwappingForLiquidity(uint256 amount) private lockTheSwap {
        uint256 half = amount.div(2);
        uint256 otherHalf = amount.sub(half);
        uint256 initialBalance = address(this).balance;
        _swapTokens(half); 
        uint256 newBalance = address(this).balance.sub(initialBalance);
        _createLiquidity(otherHalf, newBalance);
    }

    function _swapTokens(uint256 tokenAmount) private {

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();
        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _createLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);

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

    function blackListWallets(address _wallet, bool _status) public onlyOwner {
        antiBot._blacklistedUsers[_wallet] = _status; // true or false
    }

    // change the minimum amount of tokens to sell for ETH, swap add liquidity
    function setMinimunAmountOfTokenToSwapToLiquidity(uint256 _minAmount)
        external
        onlyOwner
        returns (bool)
    {
        numberOfTokensToSwapToLiquidity = _minAmount;
        return true;
    }

    function setMaxTransactionAmount(uint256 _amount) external onlyOwner {
        maxTransactionAmount = _amount * (10**_decimals);
    }

    function updateMaxWalletBalance(uint256 _newMaxBalance) external onlyOwner {
        maxWalletBalance = _newMaxBalance * (10**_decimals);
    }

    // disable Transfer antiBotStatus ANTI BOT - cannot be reenabled
    function disableAntiBot() external onlyOwner returns (bool) {
        antiBot.antiBotStatus = false;
        return true;
    }

    receive() external payable {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"EnableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_FeeOnBuy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_FeeOnSell","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_FeeOnTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_developerFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"blackListWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkFeesStatus","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"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":"developerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableAntiBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfTokensToSwapToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"FeeOnBuy","type":"bool"},{"internalType":"bool","name":"FeeOnsell","type":"bool"},{"internalType":"bool","name":"FeeOnTransfer","type":"bool"}],"name":"setFeesStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minAmount","type":"uint256"}],"name":"setMinimunAmountOfTokenToSwapToLiquidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"tradeStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxBalance","type":"uint256"}],"name":"updateMaxWalletBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060400160405280600c81526020017f426c6f6f706572205265656c0000000000000000000000000000000000000000815250600090816200004a919062000d44565b506040518060400160405280600381526020017f42504500000000000000000000000000000000000000000000000000000000008152506001908162000091919062000d44565b506012600260006101000a81548160ff021916908360ff160217905550600260009054906101000a900460ff16600a620000cc919062000fbb565b620f4240620000dc91906200100c565b60035560c8600354620000f0919062001086565b600555606460035462000104919062001086565b600655737a250d5630b4cf539739df2c5dacb4c659f2488d600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103e86003546200016e919062001086565b6008556004600960006101000a81548160ff021916908360ff1602179055506002600960016101000a81548160ff021916908360ff1602179055506001600960026101000a81548160ff0219169083151502179055506001600960036101000a81548160ff0219169083151502179055506000600960046101000a81548160ff0219169083151502179055506001601160016101000a81548160ff021916908315150217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030c919062001128565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000396573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003bc919062001128565b6040518363ffffffff1660e01b8152600401620003db9291906200116b565b6020604051808303816000875af1158015620003fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000421919062001128565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200046e57600080fd5b506200048f620004836200080160201b60201c565b6200080960201b60201c565b600160106000620004a5620008cf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620006526200080160201b60201c565b600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620006d8620006a66200080160201b60201c565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600019620008f960201b60201c565b6200070f30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600019620008f960201b60201c565b6001600a60000160006101000a81548160ff021916908315150217905550600354600e6000620007446200080160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620007926200080160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600354604051620007f39190620011a9565b60405180910390a362001307565b600033905090565b6000600960059054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960056101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600960059054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200096b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000962906200124d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009d490620012e5565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000abd9190620011a9565b60405180910390a3505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b4c57607f821691505b60208210810362000b625762000b6162000b04565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bcc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b8d565b62000bd8868362000b8d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c2562000c1f62000c198462000bf0565b62000bfa565b62000bf0565b9050919050565b6000819050919050565b62000c418362000c04565b62000c5962000c508262000c2c565b84845462000b9a565b825550505050565b600090565b62000c7062000c61565b62000c7d81848462000c36565b505050565b5b8181101562000ca55762000c9960008262000c66565b60018101905062000c83565b5050565b601f82111562000cf45762000cbe8162000b68565b62000cc98462000b7d565b8101602085101562000cd9578190505b62000cf162000ce88562000b7d565b83018262000c82565b50505b505050565b600082821c905092915050565b600062000d196000198460080262000cf9565b1980831691505092915050565b600062000d34838362000d06565b9150826002028217905092915050565b62000d4f8262000aca565b67ffffffffffffffff81111562000d6b5762000d6a62000ad5565b5b62000d77825462000b33565b62000d8482828562000ca9565b600060209050601f83116001811462000dbc576000841562000da7578287015190505b62000db3858262000d26565b86555062000e23565b601f19841662000dcc8662000b68565b60005b8281101562000df65784890151825560018201915060208501945060208101905062000dcf565b8683101562000e16578489015162000e12601f89168262000d06565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000eb95780860481111562000e915762000e9062000e2b565b5b600185161562000ea15780820291505b808102905062000eb18562000e5a565b945062000e71565b94509492505050565b60008262000ed4576001905062000fa7565b8162000ee4576000905062000fa7565b816001811462000efd576002811462000f085762000f3e565b600191505062000fa7565b60ff84111562000f1d5762000f1c62000e2b565b5b8360020a91508482111562000f375762000f3662000e2b565b5b5062000fa7565b5060208310610133831016604e8410600b841016171562000f785782820a90508381111562000f725762000f7162000e2b565b5b62000fa7565b62000f87848484600162000e67565b9250905081840481111562000fa15762000fa062000e2b565b5b81810290505b9392505050565b600060ff82169050919050565b600062000fc88262000bf0565b915062000fd58362000fae565b9250620010047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ec2565b905092915050565b6000620010198262000bf0565b9150620010268362000bf0565b9250828202620010368162000bf0565b9150828204841483151762001050576200104f62000e2b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010938262000bf0565b9150620010a08362000bf0565b925082620010b357620010b262001057565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010f082620010c3565b9050919050565b6200110281620010e3565b81146200110e57600080fd5b50565b6000815190506200112281620010f7565b92915050565b600060208284031215620011415762001140620010be565b5b6000620011518482850162001111565b91505092915050565b6200116581620010e3565b82525050565b60006040820190506200118260008301856200115a565b6200119160208301846200115a565b9392505050565b620011a38162000bf0565b82525050565b6000602082019050620011c0600083018462001198565b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062001235602483620011c6565b91506200124282620011d7565b604082019050919050565b60006020820190508181036000830152620012688162001226565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620012cd602283620011c6565b9150620012da826200126f565b604082019050919050565b600060208201905081810360008301526200130081620012be565b9050919050565b613f8580620013176000396000f3fe6080604052600436106102605760003560e01c80635342acb411610144578063a457c2d7116100b6578063caccd7f71161007a578063caccd7f714610903578063d28d88521461092e578063dd62ed3e14610959578063e3d5fdb614610996578063ea2f0b37146109bf578063f2fde38b146109e857610267565b8063a457c2d714610808578063a9059cbb14610845578063b09f126614610882578063bbde77c1146108ad578063c8c8ebe4146108d857610267565b80638c52c6c8116101085780638c52c6c8146107085780638d2efcb9146107315780638da5cb5b1461075c5780638ebe4fe51461078757806395d89b41146107b2578063a22b557c146107dd57610267565b80635342acb414610621578063583e05681461065e5780636bc87c3a1461068957806370a08231146106b4578063715018a6146106f157610267565b806329d42dbd116101dd57806339509351116101a157806339509351146104fd5780633eaaf86b1461053a578063437823ec1461056557806348de478e1461058e57806349bd5a5e146105b95780634e363b65146105e457610267565b806329d42dbd146104265780632a1cb2e814610451578063313ce5671461047c57806332424aa3146104a757806337aa30ee146104d257610267565b806318160ddd1161022457806318160ddd14610355578063188b1bf1146103805780631d97b7cd146103a95780631e293c10146103c057806323b872dd146103e957610267565b806306fdde031461026c57806307ce9de414610297578063095ea7b3146102c25780630b76dbec146102ff5780631694505e1461032a57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a11565b60405161028e9190612d9b565b60405180910390f35b3480156102a357600080fd5b506102ac610aa3565b6040516102b99190612dd8565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190612e8c565b610ad2565b6040516102f69190612dd8565b60405180910390f35b34801561030b57600080fd5b50610314610af0565b6040516103219190612edb565b60405180910390f35b34801561033657600080fd5b5061033f610af6565b60405161034c9190612f05565b60405180910390f35b34801561036157600080fd5b5061036a610b1c565b6040516103779190612edb565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612f20565b610b26565b005b3480156103b557600080fd5b506103be610b5e565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190612f20565b610b8a565b005b3480156103f557600080fd5b50610410600480360381019061040b9190612f4d565b610bc2565b60405161041d9190612dd8565b60405180910390f35b34801561043257600080fd5b5061043b610c9b565b6040516104489190612dd8565b60405180910390f35b34801561045d57600080fd5b50610466610cae565b6040516104739190612dd8565b60405180910390f35b34801561048857600080fd5b50610491610cc1565b60405161049e9190612fbc565b60405180910390f35b3480156104b357600080fd5b506104bc610cd8565b6040516104c99190612fbc565b60405180910390f35b3480156104de57600080fd5b506104e7610ceb565b6040516104f49190612edb565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190612e8c565b610cf1565b6040516105319190612dd8565b60405180910390f35b34801561054657600080fd5b5061054f610da4565b60405161055c9190612edb565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612fd7565b610daa565b005b34801561059a57600080fd5b506105a3610e0d565b6040516105b09190612fbc565b60405180910390f35b3480156105c557600080fd5b506105ce610e20565b6040516105db9190612f05565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190612f20565b610e46565b6040516106189190612dd8565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190612fd7565b610e60565b6040516106559190612dd8565b60405180910390f35b34801561066a57600080fd5b50610673610eb6565b6040516106809190613063565b60405180910390f35b34801561069557600080fd5b5061069e610edc565b6040516106ab9190612fbc565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190612fd7565b610eef565b6040516106e89190612edb565b60405180910390f35b3480156106fd57600080fd5b50610706610f38565b005b34801561071457600080fd5b5061072f600480360381019061072a91906130aa565b610f4c565b005b34801561073d57600080fd5b50610746610fb2565b60405161075391906131a8565b60405180910390f35b34801561076857600080fd5b506107716110b3565b60405161077e9190612f05565b60405180910390f35b34801561079357600080fd5b5061079c6110dd565b6040516107a99190612dd8565b60405180910390f35b3480156107be57600080fd5b506107c76110f0565b6040516107d49190612d9b565b60405180910390f35b3480156107e957600080fd5b506107f2611182565b6040516107ff9190612dd8565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a9190612e8c565b611195565b60405161083c9190612dd8565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190612e8c565b611262565b6040516108799190612dd8565b60405180910390f35b34801561088e57600080fd5b50610897611280565b6040516108a49190612d9b565b60405180910390f35b3480156108b957600080fd5b506108c261130e565b6040516108cf9190612edb565b60405180910390f35b3480156108e457600080fd5b506108ed611314565b6040516108fa9190612edb565b60405180910390f35b34801561090f57600080fd5b5061091861131a565b6040516109259190612f05565b60405180910390f35b34801561093a57600080fd5b50610943611340565b6040516109509190612d9b565b60405180910390f35b34801561096557600080fd5b50610980600480360381019061097b91906131ca565b6113ce565b60405161098d9190612edb565b60405180910390f35b3480156109a257600080fd5b506109bd60048036038101906109b8919061320a565b611455565b005b3480156109cb57600080fd5b506109e660048036038101906109e19190612fd7565b6114b0565b005b3480156109f457600080fd5b50610a0f6004803603810190610a0a9190612fd7565b611513565b005b606060008054610a209061328c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4c9061328c565b8015610a995780601f10610a6e57610100808354040283529160200191610a99565b820191906000526020600020905b815481529060010190602001808311610a7c57829003601f168201915b5050505050905090565b6000610aad611596565b6000600a60000160006101000a81548160ff0219169083151502179055506001905090565b6000610ae6610adf611614565b848461161c565b6001905092915050565b60085481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b610b2e611596565b600260009054906101000a900460ff16600a610b4a919061341f565b81610b55919061346a565b60068190555050565b610b66611596565b6001601360006101000a81548160ff02191690831515021790555043601281905550565b610b92611596565b600260009054906101000a900460ff16600a610bae919061341f565b81610bb9919061346a565b60058190555050565b6000610bcf8484846117e5565b610c9084610bdb611614565b610c8b85604051806060016040528060288152602001613f0360289139600f60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c41611614565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121b29092919063ffffffff16565b61161c565b600190509392505050565b601360009054906101000a900460ff1681565b600960039054906101000a900460ff1681565b6000600260009054906101000a900460ff16905090565b600260009054906101000a900460ff1681565b60125481565b6000610d9a610cfe611614565b84610d9585600f6000610d0f611614565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461220790919063ffffffff16565b61161c565b6001905092915050565b60035481565b610db2611596565b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600960019054906101000a900460ff1681565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610e50611596565b8160088190555060019050919050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f40611596565b610f4a600061221d565b565b610f54611596565b80600a60030160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6060610fbc611596565b6000600367ffffffffffffffff811115610fd957610fd86134ac565b5b6040519080825280602002602001820160405280156110075781602001602082028036833780820191505090505b509050600960029054906101000a900460ff168160008151811061102e5761102d6134db565b5b602002602001019015159081151581525050600960039054906101000a900460ff1681600181518110611064576110636134db565b5b602002602001019015159081151581525050600960049054906101000a900460ff168160028151811061109a576110996134db565b5b6020026020010190151590811515815250508091505090565b6000600960059054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960029054906101000a900460ff1681565b6060600180546110ff9061328c565b80601f016020809104026020016040519081016040528092919081815260200182805461112b9061328c565b80156111785780601f1061114d57610100808354040283529160200191611178565b820191906000526020600020905b81548152906001019060200180831161115b57829003601f168201915b5050505050905090565b600960049054906101000a900460ff1681565b60006112586111a2611614565b8461125385604051806060016040528060258152602001613f2b60259139600f60006111cc611614565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121b29092919063ffffffff16565b61161c565b6001905092915050565b600061127661126f611614565b84846117e5565b6001905092915050565b6001805461128d9061328c565b80601f01602080910402602001604051908101604052809291908181526020018280546112b99061328c565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b505050505081565b60065481565b60055481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000805461134d9061328c565b80601f01602080910402602001604051908101604052809291908181526020018280546113799061328c565b80156113c65780601f1061139b576101008083540402835291602001916113c6565b820191906000526020600020905b8154815290600101906020018083116113a957829003601f168201915b505050505081565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61145d611596565b82600960026101000a81548160ff02191690831515021790555081600960036101000a81548160ff02191690831515021790555080600960046101000a81548160ff021916908315150217905550505050565b6114b8611596565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61151b611596565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361158a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115819061357c565b60405180910390fd5b6115938161221d565b50565b61159e611614565b73ffffffffffffffffffffffffffffffffffffffff166115bc6110b3565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611609906135e8565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361168b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116829061367a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f19061370c565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117d89190612edb565b60405180910390a3505050565b8282600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146118975760011515601360009054906101000a900460ff16151514611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990613778565b60405180910390fd5b611898565b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe9061380a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d9061389c565b60405180910390fd5b600083116119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b09061392e565b60405180910390fd5b600a60030160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611a635750600a60030160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a999061399a565b60405180910390fd5b60055483118015611afd5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611b535750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613a2c565b60405180910390fd5b6000600654118015611bef5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c455750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c9f5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611d03576000611caf85610eef565b90506006548482611cc09190613a4c565b1115611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf890613acc565b60405180910390fd5b505b60011515600a60000160009054906101000a900460ff16151503611ede57611d296110b3565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611db25750601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611e0c5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611edd5743600a60020160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8c90613b5e565b60405180910390fd5b43600a60020160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b6002601254611eed9190613a4c565b4311158015611f4a5750601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611fa45750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15612005576001600a60030160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000600960049054906101000a900460ff169050601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120ba5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120c8576000905061219e565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160361213457600960029054906101000a900460ff16905061219d565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361219c57600960039054906101000a900460ff1690505b5b5b6121aa868686846122e3565b505050505050565b60008383111582906121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f19190612d9b565b60405180910390fd5b5082840390509392505050565b600081836122159190613a4c565b905092915050565b6000600960059054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960056101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80612301576122f18461231c565b6122fc848484612337565b612316565b61230a8461231c565b6123158484846124bc565b5b50505050565b600061232730610eef565b90506123338183612863565b5050565b6000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590613bf0565b60405180910390fd5b818103600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124ae9190612edb565b60405180910390a350505050565b6000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253a90613bf0565b60405180910390fd5b60006064600960019054906101000a900460ff1660ff1684612565919061346a565b61256f9190613c3f565b905060006064600960009054906101000a900460ff1660ff1685612593919061346a565b61259d9190613c3f565b905060008183866125ae9190613c70565b6125b89190613c70565b9050808403600e60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555082600e6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127669190612edb565b60405180910390a3600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516127ed9190612edb565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128529190612edb565b60405180910390a350505050505050565b60055482106128725760055491505b600060085483101590508080156128955750601160019054906101000a900460ff165b80156128ae5750601160009054906101000a900460ff16155b80156129085750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612917576129168361291c565b5b505050565b6001601160006101000a81548160ff021916908315150217905550600061294d6002836129b790919063ffffffff16565b9050600061296482846129cd90919063ffffffff16565b90506000479050612974836129e3565b600061298982476129cd90919063ffffffff16565b90506129958382612c26565b505050506000601160006101000a81548160ff02191690831515021790555050565b600081836129c59190613c3f565b905092915050565b600081836129db9190613c70565b905092915050565b6000600267ffffffffffffffff811115612a00576129ff6134ac565b5b604051908082528060200260200182016040528015612a2e5781602001602082028036833780820191505090505b5090503081600081518110612a4657612a456134db565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b119190613cb9565b81600181518110612b2557612b246134db565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b8c30601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461161c565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612bf0959493929190613ddf565b600060405180830381600087803b158015612c0a57600080fd5b505af1158015612c1e573d6000803e3d6000fd5b505050505050565b612c5330601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461161c565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080612c9f6110b3565b426040518863ffffffff1660e01b8152600401612cc196959493929190613e39565b60606040518083038185885af1158015612cdf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612d049190613eaf565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d45578082015181840152602081019050612d2a565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d6d82612d0b565b612d778185612d16565b9350612d87818560208601612d27565b612d9081612d51565b840191505092915050565b60006020820190508181036000830152612db58184612d62565b905092915050565b60008115159050919050565b612dd281612dbd565b82525050565b6000602082019050612ded6000830184612dc9565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e2382612df8565b9050919050565b612e3381612e18565b8114612e3e57600080fd5b50565b600081359050612e5081612e2a565b92915050565b6000819050919050565b612e6981612e56565b8114612e7457600080fd5b50565b600081359050612e8681612e60565b92915050565b60008060408385031215612ea357612ea2612df3565b5b6000612eb185828601612e41565b9250506020612ec285828601612e77565b9150509250929050565b612ed581612e56565b82525050565b6000602082019050612ef06000830184612ecc565b92915050565b612eff81612e18565b82525050565b6000602082019050612f1a6000830184612ef6565b92915050565b600060208284031215612f3657612f35612df3565b5b6000612f4484828501612e77565b91505092915050565b600080600060608486031215612f6657612f65612df3565b5b6000612f7486828701612e41565b9350506020612f8586828701612e41565b9250506040612f9686828701612e77565b9150509250925092565b600060ff82169050919050565b612fb681612fa0565b82525050565b6000602082019050612fd16000830184612fad565b92915050565b600060208284031215612fed57612fec612df3565b5b6000612ffb84828501612e41565b91505092915050565b6000819050919050565b600061302961302461301f84612df8565b613004565b612df8565b9050919050565b600061303b8261300e565b9050919050565b600061304d82613030565b9050919050565b61305d81613042565b82525050565b60006020820190506130786000830184613054565b92915050565b61308781612dbd565b811461309257600080fd5b50565b6000813590506130a48161307e565b92915050565b600080604083850312156130c1576130c0612df3565b5b60006130cf85828601612e41565b92505060206130e085828601613095565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61311f81612dbd565b82525050565b60006131318383613116565b60208301905092915050565b6000602082019050919050565b6000613155826130ea565b61315f81856130f5565b935061316a83613106565b8060005b8381101561319b5781516131828882613125565b975061318d8361313d565b92505060018101905061316e565b5085935050505092915050565b600060208201905081810360008301526131c2818461314a565b905092915050565b600080604083850312156131e1576131e0612df3565b5b60006131ef85828601612e41565b925050602061320085828601612e41565b9150509250929050565b60008060006060848603121561322357613222612df3565b5b600061323186828701613095565b935050602061324286828701613095565b925050604061325386828701613095565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132a457607f821691505b6020821081036132b7576132b661325d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156133435780860481111561331f5761331e6132bd565b5b600185161561332e5780820291505b808102905061333c856132ec565b9450613303565b94509492505050565b60008261335c5760019050613418565b8161336a5760009050613418565b8160018114613380576002811461338a576133b9565b6001915050613418565b60ff84111561339c5761339b6132bd565b5b8360020a9150848211156133b3576133b26132bd565b5b50613418565b5060208310610133831016604e8410600b84101617156133ee5782820a9050838111156133e9576133e86132bd565b5b613418565b6133fb84848460016132f9565b92509050818404811115613412576134116132bd565b5b81810290505b9392505050565b600061342a82612e56565b915061343583612fa0565b92506134627fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461334c565b905092915050565b600061347582612e56565b915061348083612e56565b925082820261348e81612e56565b915082820484148315176134a5576134a46132bd565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613566602683612d16565b91506135718261350a565b604082019050919050565b6000602082019050818103600083015261359581613559565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135d2602083612d16565b91506135dd8261359c565b602082019050919050565b60006020820190508181036000830152613601816135c5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613664602483612d16565b915061366f82613608565b604082019050919050565b6000602082019050818103600083015261369381613657565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006136f6602283612d16565b91506137018261369a565b604082019050919050565b60006020820190508181036000830152613725816136e9565b9050919050565b7f7472616465206e6f742073746172746564000000000000000000000000000000600082015250565b6000613762601183612d16565b915061376d8261372c565b602082019050919050565b6000602082019050818103600083015261379181613755565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137f4602583612d16565b91506137ff82613798565b604082019050919050565b60006020820190508181036000830152613823816137e7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613886602383612d16565b91506138918261382a565b604082019050919050565b600060208201905081810360008301526138b581613879565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000613918602983612d16565b9150613923826138bc565b604082019050919050565b600060208201905081810360008301526139478161390b565b9050919050565b7f596f7520617265206e6f7420616c6c6f77656400000000000000000000000000600082015250565b6000613984601383612d16565b915061398f8261394e565b602082019050919050565b600060208201905081810360008301526139b381613977565b9050919050565b7f5472616e7366657220697320626967676572207468616e206d6178207478206160008201527f6d6f756e74000000000000000000000000000000000000000000000000000000602082015250565b6000613a16602583612d16565b9150613a21826139ba565b604082019050919050565b60006020820190508181036000830152613a4581613a09565b9050919050565b6000613a5782612e56565b9150613a6283612e56565b9250828201905080821115613a7a57613a796132bd565b5b92915050565b7f596f75722062616c616e636520697320746f6f20686967680000000000000000600082015250565b6000613ab6601883612d16565b9150613ac182613a80565b602082019050919050565b60006020820190508181036000830152613ae581613aa9565b9050919050565b7f596f752063616e6e6f7420646f206d6f7265207468616e2031207472616e736160008201527f6374696f6e2070657220626c6f636b0000000000000000000000000000000000602082015250565b6000613b48602f83612d16565b9150613b5382613aec565b604082019050919050565b60006020820190508181036000830152613b7781613b3b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613bda602683612d16565b9150613be582613b7e565b604082019050919050565b60006020820190508181036000830152613c0981613bcd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c4a82612e56565b9150613c5583612e56565b925082613c6557613c64613c10565b5b828204905092915050565b6000613c7b82612e56565b9150613c8683612e56565b9250828203905081811115613c9e57613c9d6132bd565b5b92915050565b600081519050613cb381612e2a565b92915050565b600060208284031215613ccf57613cce612df3565b5b6000613cdd84828501613ca4565b91505092915050565b6000819050919050565b6000613d0b613d06613d0184613ce6565b613004565b612e56565b9050919050565b613d1b81613cf0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d5681612e18565b82525050565b6000613d688383613d4d565b60208301905092915050565b6000602082019050919050565b6000613d8c82613d21565b613d968185613d2c565b9350613da183613d3d565b8060005b83811015613dd2578151613db98882613d5c565b9750613dc483613d74565b925050600181019050613da5565b5085935050505092915050565b600060a082019050613df46000830188612ecc565b613e016020830187613d12565b8181036040830152613e138186613d81565b9050613e226060830185612ef6565b613e2f6080830184612ecc565b9695505050505050565b600060c082019050613e4e6000830189612ef6565b613e5b6020830188612ecc565b613e686040830187613d12565b613e756060830186613d12565b613e826080830185612ef6565b613e8f60a0830184612ecc565b979650505050505050565b600081519050613ea981612e60565b92915050565b600080600060608486031215613ec857613ec7612df3565b5b6000613ed686828701613e9a565b9350506020613ee786828701613e9a565b9250506040613ef886828701613e9a565b915050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122015b6d19cb02463619d55b5cf1b9ef9f5125dc1177e80ae4b168e19d837e64a3b64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102605760003560e01c80635342acb411610144578063a457c2d7116100b6578063caccd7f71161007a578063caccd7f714610903578063d28d88521461092e578063dd62ed3e14610959578063e3d5fdb614610996578063ea2f0b37146109bf578063f2fde38b146109e857610267565b8063a457c2d714610808578063a9059cbb14610845578063b09f126614610882578063bbde77c1146108ad578063c8c8ebe4146108d857610267565b80638c52c6c8116101085780638c52c6c8146107085780638d2efcb9146107315780638da5cb5b1461075c5780638ebe4fe51461078757806395d89b41146107b2578063a22b557c146107dd57610267565b80635342acb414610621578063583e05681461065e5780636bc87c3a1461068957806370a08231146106b4578063715018a6146106f157610267565b806329d42dbd116101dd57806339509351116101a157806339509351146104fd5780633eaaf86b1461053a578063437823ec1461056557806348de478e1461058e57806349bd5a5e146105b95780634e363b65146105e457610267565b806329d42dbd146104265780632a1cb2e814610451578063313ce5671461047c57806332424aa3146104a757806337aa30ee146104d257610267565b806318160ddd1161022457806318160ddd14610355578063188b1bf1146103805780631d97b7cd146103a95780631e293c10146103c057806323b872dd146103e957610267565b806306fdde031461026c57806307ce9de414610297578063095ea7b3146102c25780630b76dbec146102ff5780631694505e1461032a57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a11565b60405161028e9190612d9b565b60405180910390f35b3480156102a357600080fd5b506102ac610aa3565b6040516102b99190612dd8565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190612e8c565b610ad2565b6040516102f69190612dd8565b60405180910390f35b34801561030b57600080fd5b50610314610af0565b6040516103219190612edb565b60405180910390f35b34801561033657600080fd5b5061033f610af6565b60405161034c9190612f05565b60405180910390f35b34801561036157600080fd5b5061036a610b1c565b6040516103779190612edb565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612f20565b610b26565b005b3480156103b557600080fd5b506103be610b5e565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190612f20565b610b8a565b005b3480156103f557600080fd5b50610410600480360381019061040b9190612f4d565b610bc2565b60405161041d9190612dd8565b60405180910390f35b34801561043257600080fd5b5061043b610c9b565b6040516104489190612dd8565b60405180910390f35b34801561045d57600080fd5b50610466610cae565b6040516104739190612dd8565b60405180910390f35b34801561048857600080fd5b50610491610cc1565b60405161049e9190612fbc565b60405180910390f35b3480156104b357600080fd5b506104bc610cd8565b6040516104c99190612fbc565b60405180910390f35b3480156104de57600080fd5b506104e7610ceb565b6040516104f49190612edb565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190612e8c565b610cf1565b6040516105319190612dd8565b60405180910390f35b34801561054657600080fd5b5061054f610da4565b60405161055c9190612edb565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612fd7565b610daa565b005b34801561059a57600080fd5b506105a3610e0d565b6040516105b09190612fbc565b60405180910390f35b3480156105c557600080fd5b506105ce610e20565b6040516105db9190612f05565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190612f20565b610e46565b6040516106189190612dd8565b60405180910390f35b34801561062d57600080fd5b5061064860048036038101906106439190612fd7565b610e60565b6040516106559190612dd8565b60405180910390f35b34801561066a57600080fd5b50610673610eb6565b6040516106809190613063565b60405180910390f35b34801561069557600080fd5b5061069e610edc565b6040516106ab9190612fbc565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d69190612fd7565b610eef565b6040516106e89190612edb565b60405180910390f35b3480156106fd57600080fd5b50610706610f38565b005b34801561071457600080fd5b5061072f600480360381019061072a91906130aa565b610f4c565b005b34801561073d57600080fd5b50610746610fb2565b60405161075391906131a8565b60405180910390f35b34801561076857600080fd5b506107716110b3565b60405161077e9190612f05565b60405180910390f35b34801561079357600080fd5b5061079c6110dd565b6040516107a99190612dd8565b60405180910390f35b3480156107be57600080fd5b506107c76110f0565b6040516107d49190612d9b565b60405180910390f35b3480156107e957600080fd5b506107f2611182565b6040516107ff9190612dd8565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a9190612e8c565b611195565b60405161083c9190612dd8565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190612e8c565b611262565b6040516108799190612dd8565b60405180910390f35b34801561088e57600080fd5b50610897611280565b6040516108a49190612d9b565b60405180910390f35b3480156108b957600080fd5b506108c261130e565b6040516108cf9190612edb565b60405180910390f35b3480156108e457600080fd5b506108ed611314565b6040516108fa9190612edb565b60405180910390f35b34801561090f57600080fd5b5061091861131a565b6040516109259190612f05565b60405180910390f35b34801561093a57600080fd5b50610943611340565b6040516109509190612d9b565b60405180910390f35b34801561096557600080fd5b50610980600480360381019061097b91906131ca565b6113ce565b60405161098d9190612edb565b60405180910390f35b3480156109a257600080fd5b506109bd60048036038101906109b8919061320a565b611455565b005b3480156109cb57600080fd5b506109e660048036038101906109e19190612fd7565b6114b0565b005b3480156109f457600080fd5b50610a0f6004803603810190610a0a9190612fd7565b611513565b005b606060008054610a209061328c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4c9061328c565b8015610a995780601f10610a6e57610100808354040283529160200191610a99565b820191906000526020600020905b815481529060010190602001808311610a7c57829003601f168201915b5050505050905090565b6000610aad611596565b6000600a60000160006101000a81548160ff0219169083151502179055506001905090565b6000610ae6610adf611614565b848461161c565b6001905092915050565b60085481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b610b2e611596565b600260009054906101000a900460ff16600a610b4a919061341f565b81610b55919061346a565b60068190555050565b610b66611596565b6001601360006101000a81548160ff02191690831515021790555043601281905550565b610b92611596565b600260009054906101000a900460ff16600a610bae919061341f565b81610bb9919061346a565b60058190555050565b6000610bcf8484846117e5565b610c9084610bdb611614565b610c8b85604051806060016040528060288152602001613f0360289139600f60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c41611614565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121b29092919063ffffffff16565b61161c565b600190509392505050565b601360009054906101000a900460ff1681565b600960039054906101000a900460ff1681565b6000600260009054906101000a900460ff16905090565b600260009054906101000a900460ff1681565b60125481565b6000610d9a610cfe611614565b84610d9585600f6000610d0f611614565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461220790919063ffffffff16565b61161c565b6001905092915050565b60035481565b610db2611596565b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600960019054906101000a900460ff1681565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610e50611596565b8160088190555060019050919050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900460ff1681565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f40611596565b610f4a600061221d565b565b610f54611596565b80600a60030160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6060610fbc611596565b6000600367ffffffffffffffff811115610fd957610fd86134ac565b5b6040519080825280602002602001820160405280156110075781602001602082028036833780820191505090505b509050600960029054906101000a900460ff168160008151811061102e5761102d6134db565b5b602002602001019015159081151581525050600960039054906101000a900460ff1681600181518110611064576110636134db565b5b602002602001019015159081151581525050600960049054906101000a900460ff168160028151811061109a576110996134db565b5b6020026020010190151590811515815250508091505090565b6000600960059054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960029054906101000a900460ff1681565b6060600180546110ff9061328c565b80601f016020809104026020016040519081016040528092919081815260200182805461112b9061328c565b80156111785780601f1061114d57610100808354040283529160200191611178565b820191906000526020600020905b81548152906001019060200180831161115b57829003601f168201915b5050505050905090565b600960049054906101000a900460ff1681565b60006112586111a2611614565b8461125385604051806060016040528060258152602001613f2b60259139600f60006111cc611614565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121b29092919063ffffffff16565b61161c565b6001905092915050565b600061127661126f611614565b84846117e5565b6001905092915050565b6001805461128d9061328c565b80601f01602080910402602001604051908101604052809291908181526020018280546112b99061328c565b80156113065780601f106112db57610100808354040283529160200191611306565b820191906000526020600020905b8154815290600101906020018083116112e957829003601f168201915b505050505081565b60065481565b60055481565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000805461134d9061328c565b80601f01602080910402602001604051908101604052809291908181526020018280546113799061328c565b80156113c65780601f1061139b576101008083540402835291602001916113c6565b820191906000526020600020905b8154815290600101906020018083116113a957829003601f168201915b505050505081565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61145d611596565b82600960026101000a81548160ff02191690831515021790555081600960036101000a81548160ff02191690831515021790555080600960046101000a81548160ff021916908315150217905550505050565b6114b8611596565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61151b611596565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361158a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115819061357c565b60405180910390fd5b6115938161221d565b50565b61159e611614565b73ffffffffffffffffffffffffffffffffffffffff166115bc6110b3565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611609906135e8565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361168b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116829061367a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f19061370c565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117d89190612edb565b60405180910390a3505050565b8282600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146118975760011515601360009054906101000a900460ff16151514611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990613778565b60405180910390fd5b611898565b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe9061380a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d9061389c565b60405180910390fd5b600083116119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b09061392e565b60405180910390fd5b600a60030160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611a635750600a60030160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a999061399a565b60405180910390fd5b60055483118015611afd5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611b535750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8a90613a2c565b60405180910390fd5b6000600654118015611bef5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c455750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611c9f5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611d03576000611caf85610eef565b90506006548482611cc09190613a4c565b1115611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf890613acc565b60405180910390fd5b505b60011515600a60000160009054906101000a900460ff16151503611ede57611d296110b3565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611db25750601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611e0c5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611edd5743600a60020160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8c90613b5e565b60405180910390fd5b43600a60020160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b6002601254611eed9190613a4c565b4311158015611f4a5750601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611fa45750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15612005576001600a60030160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000600960049054906101000a900460ff169050601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120ba5750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120c8576000905061219e565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff160361213457600960029054906101000a900460ff16905061219d565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361219c57600960039054906101000a900460ff1690505b5b5b6121aa868686846122e3565b505050505050565b60008383111582906121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f19190612d9b565b60405180910390fd5b5082840390509392505050565b600081836122159190613a4c565b905092915050565b6000600960059054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960056101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80612301576122f18461231c565b6122fc848484612337565b612316565b61230a8461231c565b6123158484846124bc565b5b50505050565b600061232730610eef565b90506123338183612863565b5050565b6000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590613bf0565b60405180910390fd5b818103600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124ae9190612edb565b60405180910390a350505050565b6000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253a90613bf0565b60405180910390fd5b60006064600960019054906101000a900460ff1660ff1684612565919061346a565b61256f9190613c3f565b905060006064600960009054906101000a900460ff1660ff1685612593919061346a565b61259d9190613c3f565b905060008183866125ae9190613c70565b6125b89190613c70565b9050808403600e60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555082600e6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127669190612edb565b60405180910390a3600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516127ed9190612edb565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128529190612edb565b60405180910390a350505050505050565b60055482106128725760055491505b600060085483101590508080156128955750601160019054906101000a900460ff165b80156128ae5750601160009054906101000a900460ff16155b80156129085750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612917576129168361291c565b5b505050565b6001601160006101000a81548160ff021916908315150217905550600061294d6002836129b790919063ffffffff16565b9050600061296482846129cd90919063ffffffff16565b90506000479050612974836129e3565b600061298982476129cd90919063ffffffff16565b90506129958382612c26565b505050506000601160006101000a81548160ff02191690831515021790555050565b600081836129c59190613c3f565b905092915050565b600081836129db9190613c70565b905092915050565b6000600267ffffffffffffffff811115612a00576129ff6134ac565b5b604051908082528060200260200182016040528015612a2e5781602001602082028036833780820191505090505b5090503081600081518110612a4657612a456134db565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b119190613cb9565b81600181518110612b2557612b246134db565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b8c30601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461161c565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612bf0959493929190613ddf565b600060405180830381600087803b158015612c0a57600080fd5b505af1158015612c1e573d6000803e3d6000fd5b505050505050565b612c5330601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461161c565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080612c9f6110b3565b426040518863ffffffff1660e01b8152600401612cc196959493929190613e39565b60606040518083038185885af1158015612cdf573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612d049190613eaf565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d45578082015181840152602081019050612d2a565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d6d82612d0b565b612d778185612d16565b9350612d87818560208601612d27565b612d9081612d51565b840191505092915050565b60006020820190508181036000830152612db58184612d62565b905092915050565b60008115159050919050565b612dd281612dbd565b82525050565b6000602082019050612ded6000830184612dc9565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e2382612df8565b9050919050565b612e3381612e18565b8114612e3e57600080fd5b50565b600081359050612e5081612e2a565b92915050565b6000819050919050565b612e6981612e56565b8114612e7457600080fd5b50565b600081359050612e8681612e60565b92915050565b60008060408385031215612ea357612ea2612df3565b5b6000612eb185828601612e41565b9250506020612ec285828601612e77565b9150509250929050565b612ed581612e56565b82525050565b6000602082019050612ef06000830184612ecc565b92915050565b612eff81612e18565b82525050565b6000602082019050612f1a6000830184612ef6565b92915050565b600060208284031215612f3657612f35612df3565b5b6000612f4484828501612e77565b91505092915050565b600080600060608486031215612f6657612f65612df3565b5b6000612f7486828701612e41565b9350506020612f8586828701612e41565b9250506040612f9686828701612e77565b9150509250925092565b600060ff82169050919050565b612fb681612fa0565b82525050565b6000602082019050612fd16000830184612fad565b92915050565b600060208284031215612fed57612fec612df3565b5b6000612ffb84828501612e41565b91505092915050565b6000819050919050565b600061302961302461301f84612df8565b613004565b612df8565b9050919050565b600061303b8261300e565b9050919050565b600061304d82613030565b9050919050565b61305d81613042565b82525050565b60006020820190506130786000830184613054565b92915050565b61308781612dbd565b811461309257600080fd5b50565b6000813590506130a48161307e565b92915050565b600080604083850312156130c1576130c0612df3565b5b60006130cf85828601612e41565b92505060206130e085828601613095565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61311f81612dbd565b82525050565b60006131318383613116565b60208301905092915050565b6000602082019050919050565b6000613155826130ea565b61315f81856130f5565b935061316a83613106565b8060005b8381101561319b5781516131828882613125565b975061318d8361313d565b92505060018101905061316e565b5085935050505092915050565b600060208201905081810360008301526131c2818461314a565b905092915050565b600080604083850312156131e1576131e0612df3565b5b60006131ef85828601612e41565b925050602061320085828601612e41565b9150509250929050565b60008060006060848603121561322357613222612df3565b5b600061323186828701613095565b935050602061324286828701613095565b925050604061325386828701613095565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132a457607f821691505b6020821081036132b7576132b661325d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156133435780860481111561331f5761331e6132bd565b5b600185161561332e5780820291505b808102905061333c856132ec565b9450613303565b94509492505050565b60008261335c5760019050613418565b8161336a5760009050613418565b8160018114613380576002811461338a576133b9565b6001915050613418565b60ff84111561339c5761339b6132bd565b5b8360020a9150848211156133b3576133b26132bd565b5b50613418565b5060208310610133831016604e8410600b84101617156133ee5782820a9050838111156133e9576133e86132bd565b5b613418565b6133fb84848460016132f9565b92509050818404811115613412576134116132bd565b5b81810290505b9392505050565b600061342a82612e56565b915061343583612fa0565b92506134627fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461334c565b905092915050565b600061347582612e56565b915061348083612e56565b925082820261348e81612e56565b915082820484148315176134a5576134a46132bd565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613566602683612d16565b91506135718261350a565b604082019050919050565b6000602082019050818103600083015261359581613559565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135d2602083612d16565b91506135dd8261359c565b602082019050919050565b60006020820190508181036000830152613601816135c5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613664602483612d16565b915061366f82613608565b604082019050919050565b6000602082019050818103600083015261369381613657565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006136f6602283612d16565b91506137018261369a565b604082019050919050565b60006020820190508181036000830152613725816136e9565b9050919050565b7f7472616465206e6f742073746172746564000000000000000000000000000000600082015250565b6000613762601183612d16565b915061376d8261372c565b602082019050919050565b6000602082019050818103600083015261379181613755565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137f4602583612d16565b91506137ff82613798565b604082019050919050565b60006020820190508181036000830152613823816137e7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613886602383612d16565b91506138918261382a565b604082019050919050565b600060208201905081810360008301526138b581613879565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000613918602983612d16565b9150613923826138bc565b604082019050919050565b600060208201905081810360008301526139478161390b565b9050919050565b7f596f7520617265206e6f7420616c6c6f77656400000000000000000000000000600082015250565b6000613984601383612d16565b915061398f8261394e565b602082019050919050565b600060208201905081810360008301526139b381613977565b9050919050565b7f5472616e7366657220697320626967676572207468616e206d6178207478206160008201527f6d6f756e74000000000000000000000000000000000000000000000000000000602082015250565b6000613a16602583612d16565b9150613a21826139ba565b604082019050919050565b60006020820190508181036000830152613a4581613a09565b9050919050565b6000613a5782612e56565b9150613a6283612e56565b9250828201905080821115613a7a57613a796132bd565b5b92915050565b7f596f75722062616c616e636520697320746f6f20686967680000000000000000600082015250565b6000613ab6601883612d16565b9150613ac182613a80565b602082019050919050565b60006020820190508181036000830152613ae581613aa9565b9050919050565b7f596f752063616e6e6f7420646f206d6f7265207468616e2031207472616e736160008201527f6374696f6e2070657220626c6f636b0000000000000000000000000000000000602082015250565b6000613b48602f83612d16565b9150613b5382613aec565b604082019050919050565b60006020820190508181036000830152613b7781613b3b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613bda602683612d16565b9150613be582613b7e565b604082019050919050565b60006020820190508181036000830152613c0981613bcd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c4a82612e56565b9150613c5583612e56565b925082613c6557613c64613c10565b5b828204905092915050565b6000613c7b82612e56565b9150613c8683612e56565b9250828203905081811115613c9e57613c9d6132bd565b5b92915050565b600081519050613cb381612e2a565b92915050565b600060208284031215613ccf57613cce612df3565b5b6000613cdd84828501613ca4565b91505092915050565b6000819050919050565b6000613d0b613d06613d0184613ce6565b613004565b612e56565b9050919050565b613d1b81613cf0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613d5681612e18565b82525050565b6000613d688383613d4d565b60208301905092915050565b6000602082019050919050565b6000613d8c82613d21565b613d968185613d2c565b9350613da183613d3d565b8060005b83811015613dd2578151613db98882613d5c565b9750613dc483613d74565b925050600181019050613da5565b5085935050505092915050565b600060a082019050613df46000830188612ecc565b613e016020830187613d12565b8181036040830152613e138186613d81565b9050613e226060830185612ef6565b613e2f6080830184612ecc565b9695505050505050565b600060c082019050613e4e6000830189612ef6565b613e5b6020830188612ecc565b613e686040830187613d12565b613e756060830186613d12565b613e826080830185612ef6565b613e8f60a0830184612ecc565b979650505050505050565b600081519050613ea981612e60565b92915050565b600080600060608486031215613ec857613ec7612df3565b5b6000613ed686828701613e9a565b9350506020613ee786828701613e9a565b9250506040613ef886828701613e9a565b915050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122015b6d19cb02463619d55b5cf1b9ef9f5125dc1177e80ae4b168e19d837e64a3b64736f6c63430008110033

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.