ETH Price: $3,066.56 (+2.89%)
Gas: 1 Gwei

Token

Hapu Inu (HAPU)
 

Overview

Max Total Supply

738,738,738,369,000 HAPU

Holders

196 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
leejol.eth
Balance
555 HAPU

Value
$0.00
0x0014ea9BBE130c8af7f00C8E61Fc07368bDaAf7d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Hapu Inu fund web3 devs and create a project out of their apps. 1st app Hapu Inu is working on is an educational marketplace, Imagin nfts with instructors and many new economies. 2nd app Hapu Inu is working on is a freelancing app based on web3 standards.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HapuToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-29
*/

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

/*

Hapu Inu ($Hapu)

Website = https://hapuinu.com
Telegram = https://t.me/hapuinu
Twitter = https://twitter.com/hapuinu
Disclaimer do not buy research first They may fight alongside us but not for us 
Partners of today could be your rivals tomorrow And your rivals today could be your allies tomorrow Lets all unite 

*/

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: @uniswap/v2-periphery/contracts/interfaces/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: @uniswap/v2-core/contracts/interfaces/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: @uniswap/v2-core/contracts/interfaces/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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.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 functionCall(target, data, "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");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(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) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason 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 {
            // 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: @openzeppelin/contracts/utils/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: @openzeppelin/contracts/access/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: @openzeppelin/contracts/utils/math/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: @openzeppelin/contracts/token/ERC20/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/haputokenverified.sol


pragma solidity ^0.8.4;








contract HapuToken is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    address payable public treasuryWallet =
        payable(0x505184CFBf416016e4EF0d2291C5097a48722fF0);
    address public constant deadAddress =
        0x000000000000000000000000000000000000dEaD;

    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isSniper;
    address[] private _confirmedSnipers;

    mapping(address => bool) private _isExcludedFee;

    string private constant _name = "Hapu Inu";
    string private constant _symbol = "HAPU";
    uint8 private constant _decimals = 9;

    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 738738738369000 * 10**_decimals;

    uint256 public treasuryFeeOnBuy = 6;
    uint256 public treasuryFeeOnSell = 9;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    // PancakeSwap: 0x10ED43C718714eb63d5aA57B78B54704E256024E
    // Uniswap V2: 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
    address private constant _uniswapRouterAddress =
        0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

    bool private _inSwapAndLiquify;

    uint256 public launchTime;
    bool private _tradingOpen = false;
    bool private _transferOpen = false;

    uint256 public maxWallet = _tTotal.div(100);
    uint256 public swapAtAmount = _tTotal.div(1000);
    bool public swapAndTreasureEnabled = true;

    event SendETHRewards(address to, uint256 amountETH);
    event SendTokenRewards(address to, address token, uint256 amount);
    event SwapETHForTokens(address whereTo, uint256 amountIn, address[] path);
    event SwapTokensForETH(uint256 amountIn, address[] path);
    event SwapAndLiquify(
        uint256 tokensSwappedForEth,
        uint256 ethAddedForLp,
        uint256 tokensAddedForLp
    );

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

    constructor() {
        _tOwned[_msgSender()] = _tTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function initContract() external onlyOwner {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            _uniswapRouterAddress
        );
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFee[owner()] = true;
        _isExcludedFee[address(this)] = true;
    }

    function openTrading() external onlyOwner {
        _tradingOpen = true;
        _transferOpen = true;
        launchTime = block.timestamp;
    }

    function name() external pure returns (string memory) {
        return _name;
    }

    function symbol() external pure returns (string memory) {
        return _symbol;
    }

    function decimals() external pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() external pure override returns (uint256) {
        return _tTotal;
    }

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

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

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external 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)
        external
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        external
        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 {
        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(!_isSniper[to], "Stop sniping!");
        require(!_isSniper[from], "Stop sniping!");
        require(!_isSniper[_msgSender()], "Stop sniping!");
        require(
            _transferOpen || from == owner(),
            "transferring tokens is not currently allowed"
        );
        if ((from == uniswapV2Pair || to == uniswapV2Pair) && from != owner()) {
            require(_tradingOpen, "Trading not yet enabled.");
        }
        if (block.timestamp == launchTime && from == uniswapV2Pair) {
            _isSniper[to] = true;
            _confirmedSnipers.push(to);
        }

        if (
            balanceOf(address(this)) >= swapAtAmount &&
            !_inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndTreasureEnabled
        ) {
            swapAndSendTreasure(swapAtAmount);
        }

        if (isExcludedFromFee(from) || isExcludedFromFee(to)) {
            _basicTransfer(from, to, amount);
        } else {
            if (to == uniswapV2Pair) {
                _transferStandard(from, to, amount, treasuryFeeOnSell);
            } else {
                _transferStandard(from, to, amount, treasuryFeeOnBuy);
            }
        }

        if (
            to != owner() &&
            to != uniswapV2Pair &&
            to != address(uniswapV2Router)
        ) {
            require(maxWallet >= balanceOf(to), "Max wallet limit exceed!");
        }
    }

    function swapAndSendTreasure(uint256 amount) private lockTheSwap {
        _swapTokensForEth(amount);
        if (address(this).balance > 0) {
            treasuryWallet.call{value: address(this).balance}("");
        }
    }

    function _swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this), // the contract
            block.timestamp
        );

        emit SwapTokensForETH(tokenAmount, path);
    }

    function _basicTransfer(
        address from,
        address to,
        uint256 amount
    ) private {
        _tOwned[from] = _tOwned[from].sub(amount);
        _tOwned[to] = _tOwned[to].add(amount);
        emit Transfer(from, to, amount);
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount,
        uint256 fee
    ) private {
        uint256 treasuryFeeAmount = tAmount.div(100).mul(fee);
        uint256 transferAmount = tAmount.sub(treasuryFeeAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _tOwned[recipient] = _tOwned[recipient].add(transferAmount);
        _tOwned[address(this)] = _tOwned[address(this)].add(treasuryFeeAmount);
        emit Transfer(sender, recipient, transferAmount);
        emit Transfer(sender, address(this), treasuryFeeAmount);
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFee[account];
    }

    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFee[account] = true;
    }

    function includeInFee(address account) external onlyOwner {
        _isExcludedFee[account] = false;
    }

    function setTreasuryFeePercent(uint256 _newFeeOnBuy, uint256 _newFeeOnSell)
        external
        onlyOwner
    {
        require(
            _newFeeOnBuy <= 100 && _newFeeOnSell <= 100,
            "fee cannot exceed 100%"
        );
        treasuryFeeOnBuy = _newFeeOnBuy;
        treasuryFeeOnSell = _newFeeOnSell;
    }

    function setTreasuryAddress(address _treasuryWallet) external onlyOwner {
        treasuryWallet = payable(_treasuryWallet);
    }

    function setSwapAndTreasureEnabled(bool flag) external onlyOwner {
        swapAndTreasureEnabled = flag;
    }

    function setCanTransfer(bool _canTransfer) external onlyOwner {
        _transferOpen = _canTransfer;
    }

    function setSwapAtAmount(uint256 amount) external onlyOwner {
        swapAtAmount = amount;
    }

    function setMaxWallet(uint256 amount) external onlyOwner {
        maxWallet = amount;
    }

    function isRemovedSniper(address account) external view returns (bool) {
        return _isSniper[account];
    }

    function removeSniper(address account) external onlyOwner {
        require(
            account != _uniswapRouterAddress,
            "We can not blacklist Uniswap"
        );
        require(!_isSniper[account], "Account is already blacklisted");
        _isSniper[account] = true;
        _confirmedSnipers.push(account);
    }

    function amnestySniper(address account) external onlyOwner {
        require(_isSniper[account], "Account is not blacklisted");
        for (uint256 i = 0; i < _confirmedSnipers.length; i++) {
            if (_confirmedSnipers[i] == account) {
                _confirmedSnipers[i] = _confirmedSnipers[
                    _confirmedSnipers.length - 1
                ];
                _isSniper[account] = false;
                _confirmedSnipers.pop();
                break;
            }
        }
    }

    function emergencyWithdraw() external onlyOwner {
        payable(owner()).send(address(this).balance);
    }

    // to recieve ETH from uniswapV2Router when swaping
    receive() external payable {}
}

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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountETH","type":"uint256"}],"name":"SendETHRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendTokenRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwappedForEth","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAddedForLp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensAddedForLp","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"whereTo","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapETHForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","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":[{"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":"account","type":"address"}],"name":"amnestySniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":[],"name":"initContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isRemovedSniper","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeSniper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_canTransfer","type":"bool"}],"name":"setCanTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"setSwapAndTreasureEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryWallet","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFeeOnBuy","type":"uint256"},{"internalType":"uint256","name":"_newFeeOnSell","type":"uint256"}],"name":"setTreasuryFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndTreasureEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"treasuryFeeOnBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryFeeOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405273505184cfbf416016e4ef0d2291c5097a48722ff0600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660075560096008556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff021916908315150217905550620000d760646009600a620000af919062000420565b66029fe1041511e8620000c391906200055d565b6200027b60201b620018dd1790919060201c565b600d55620001196103e86009600a620000f1919062000420565b66029fe1041511e86200010591906200055d565b6200027b60201b620018dd1790919060201c565b600e556001600f60006101000a81548160ff0219169083151502179055503480156200014457600080fd5b5062000165620001596200029360201b60201c565b6200029b60201b60201c565b6009600a62000175919062000420565b66029fe1041511e86200018991906200055d565b600260006200019d6200029360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620001eb6200029360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009600a6200024a919062000420565b66029fe1041511e86200025e91906200055d565b6040516200026d919062000370565b60405180910390a362000640565b600081836200028b91906200038d565b905092915050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200036a81620005be565b82525050565b60006020820190506200038760008301846200035f565b92915050565b60006200039a82620005be565b9150620003a783620005be565b925082620003ba57620003b962000604565b5b828204905092915050565b6000808291508390505b60018511156200041757808604811115620003ef57620003ee620005d5565b5b6001851615620003ff5780820291505b80810290506200040f8562000633565b9450620003cf565b94509492505050565b60006200042d82620005be565b91506200043a83620005c8565b9250620004697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000471565b905092915050565b60008262000483576001905062000556565b8162000493576000905062000556565b8160018114620004ac5760028114620004b757620004ed565b600191505062000556565b60ff841115620004cc57620004cb620005d5565b5b8360020a915084821115620004e657620004e5620005d5565b5b5062000556565b5060208310610133831016604e8410600b8410161715620005275782820a905083811115620005215762000520620005d5565b5b62000556565b620005368484846001620003c5565b9250905081840481111562000550576200054f620005d5565b5b81810290505b9392505050565b60006200056a82620005be565b91506200057783620005be565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620005b357620005b2620005d5565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008160011c9050919050565b613eed80620006506000396000f3fe6080604052600436106102345760003560e01c8063715016cb1161012e578063a9059cbb116100ab578063dd62ed3e1161006f578063dd62ed3e14610824578063ea2f0b3714610861578063f2fde38b1461088a578063f8b45b05146108b3578063fd1e467f146108de5761023b565b8063a9059cbb14610765578063c75c136d146107a2578063c9567bf9146107cb578063cdd4bd79146107e2578063db2e21bc1461080d5761023b565b8063824e4605116100f2578063824e46051461067c57806386917524146106a75780638da5cb5b146106d257806395d89b41146106fd578063a457c2d7146107285761023b565b8063715016cb146105d1578063715018a6146105fa57806375ae267d14610611578063790ca4131461063a5780638203f5fe146106655761023b565b806339509351116101bc5780635d0044ca116101805780635d0044ca146104dc578063610d5b19146105055780636402511e146105425780636605bfda1461056b57806370a08231146105945761023b565b806339509351146103e3578063437823ec146104205780634626402b1461044957806349bd5a5e146104745780635342acb41461049f5761023b565b806318160ddd1161020357806318160ddd146102fc57806323b872dd1461032757806327c8f83514610364578063313ce5671461038f57806333251a0b146103ba5761023b565b806306fdde0314610240578063095ea7b31461026b5780630b2a808c146102a85780631694505e146102d15761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610909565b60405161026291906132d0565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612df5565b610946565b60405161029f919061329a565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612d08565b610964565b005b3480156102dd57600080fd5b506102e6610be1565b6040516102f391906132b5565b60405180910390f35b34801561030857600080fd5b50610311610c07565b60405161031e91906134d2565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190612da2565b610c2e565b60405161035b919061329a565b60405180910390f35b34801561037057600080fd5b50610379610d07565b604051610386919061323b565b60405180910390f35b34801561039b57600080fd5b506103a4610d0d565b6040516103b19190613577565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190612d08565b610d16565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190612df5565b610eec565b604051610417919061329a565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190612d08565b610f9f565b005b34801561045557600080fd5b5061045e611002565b60405161046b9190613256565b60405180910390f35b34801561048057600080fd5b50610489611028565b604051610496919061323b565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190612d08565b61104e565b6040516104d3919061329a565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe9190612e62565b6110a4565b005b34801561051157600080fd5b5061052c60048036038101906105279190612d08565b6110b6565b604051610539919061329a565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190612e62565b61110c565b005b34801561057757600080fd5b50610592600480360381019061058d9190612d08565b61111e565b005b3480156105a057600080fd5b506105bb60048036038101906105b69190612d08565b61116a565b6040516105c891906134d2565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190612e8f565b6111b3565b005b34801561060657600080fd5b5061060f61121e565b005b34801561061d57600080fd5b5061063860048036038101906106339190612e35565b611232565b005b34801561064657600080fd5b5061064f611257565b60405161065c91906134d2565b60405180910390f35b34801561067157600080fd5b5061067a61125d565b005b34801561068857600080fd5b50610691611540565b60405161069e91906134d2565b60405180910390f35b3480156106b357600080fd5b506106bc611546565b6040516106c991906134d2565b60405180910390f35b3480156106de57600080fd5b506106e761154c565b6040516106f4919061323b565b60405180910390f35b34801561070957600080fd5b50610712611575565b60405161071f91906132d0565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190612df5565b6115b2565b60405161075c919061329a565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190612df5565b61167f565b604051610799919061329a565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190612e35565b61169d565b005b3480156107d757600080fd5b506107e06116c2565b005b3480156107ee57600080fd5b506107f7611709565b60405161080491906134d2565b60405180910390f35b34801561081957600080fd5b5061082261170f565b005b34801561083057600080fd5b5061084b60048036038101906108469190612d62565b611756565b60405161085891906134d2565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190612d08565b6117dd565b005b34801561089657600080fd5b506108b160048036038101906108ac9190612d08565b611840565b005b3480156108bf57600080fd5b506108c86118c4565b6040516108d591906134d2565b60405180910390f35b3480156108ea57600080fd5b506108f36118ca565b604051610900919061329a565b60405180910390f35b60606040518060400160405280600881526020017f4861707520496e75000000000000000000000000000000000000000000000000815250905090565b600061095a6109536118f3565b84846118fb565b6001905092915050565b61096c611ac6565b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef906133f2565b60405180910390fd5b60005b600580549050811015610bdd578173ffffffffffffffffffffffffffffffffffffffff1660058281548110610a3357610a32613a30565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610bca5760056001600580549050610a8e9190613844565b81548110610a9f57610a9e613a30565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660058281548110610ade57610add613a30565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005805480610b9057610b8f613a01565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055610bdd565b8080610bd59061395a565b9150506109fb565b5050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009600a610c1791906136cc565b66029fe1041511e8610c2991906137ea565b905090565b6000610c3b848484611b44565b610cfc84610c476118f3565b610cf785604051806060016040528060288152602001613e6b60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cad6118f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123919092919063ffffffff16565b6118fb565b600190509392505050565b61dead81565b60006009905090565b610d1e611ac6565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890613412565b60405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2590613372565b60405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f95610ef96118f3565b84610f908560036000610f0a6118f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e690919063ffffffff16565b6118fb565b6001905092915050565b610fa7611ac6565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110ac611ac6565b80600d8190555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611114611ac6565b80600e8190555050565b611126611ac6565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111bb611ac6565b606482111580156111cd575060648111155b61120c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611203906134b2565b60405180910390fd5b81600781905550806008819055505050565b611226611ac6565b61123060006123fc565b565b61123a611ac6565b80600c60016101000a81548160ff02191690831515021790555050565b600b5481565b611265611ac6565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156112c457600080fd5b505afa1580156112d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fc9190612d35565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561135e57600080fd5b505afa158015611372573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113969190612d35565b6040518363ffffffff1660e01b81526004016113b3929190613271565b602060405180830381600087803b1580156113cd57600080fd5b505af11580156113e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114059190612d35565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016006600061149461154c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60075481565b600e5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f4841505500000000000000000000000000000000000000000000000000000000815250905090565b60006116756115bf6118f3565b8461167085604051806060016040528060258152602001613e9360259139600360006115e96118f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123919092919063ffffffff16565b6118fb565b6001905092915050565b600061169361168c6118f3565b8484611b44565b6001905092915050565b6116a5611ac6565b80600f60006101000a81548160ff02191690831515021790555050565b6116ca611ac6565b6001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff02191690831515021790555042600b81905550565b60085481565b611717611ac6565b61171f61154c565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6117e5611ac6565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611848611ac6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90613312565b60405180910390fd5b6118c1816123fc565b50565b600d5481565b600f60009054906101000a900460ff1681565b600081836118eb9190613648565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290613472565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290613332565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ab991906134d2565b60405180910390a3505050565b611ace6118f3565b73ffffffffffffffffffffffffffffffffffffffff16611aec61154c565b73ffffffffffffffffffffffffffffffffffffffff1614611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b39906133b2565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90613432565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b906132f2565b60405180910390fd5b60008111611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e906133d2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb90613452565b60405180910390fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890613452565b60405180910390fd5b60046000611d8d6118f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c90613452565b60405180910390fd5b600c60019054906101000a900460ff1680611e625750611e3361154c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613392565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611f4a5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611f895750611f5961154c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611fde57600c60009054906101000a900460ff16611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd490613492565b60405180910390fd5b5b600b544214801561203c5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156120fd576001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600e546121093061116a565b101580156121245750600a60149054906101000a900460ff16155b801561217e5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156121965750600f60009054906101000a900460ff165b156121a7576121a6600e546124c0565b5b6121b08361104e565b806121c057506121bf8261104e565b5b156121d5576121d0838383612597565b61224e565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561223e5761223983838360085461272b565b61224d565b61224c83838360075461272b565b5b5b61225661154c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156122df5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123395750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561238c576123478261116a565b600d54101561238b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238290613352565b60405180910390fd5b5b505050565b60008383111582906123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d091906132d0565b60405180910390fd5b5082840390509392505050565b600081836123f491906135f2565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600a60146101000a81548160ff0219169083151502179055506124e4816129fd565b600047111561257957600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161253390613226565b60006040518083038185875af1925050503d8060008114612570576040519150601f19603f3d011682016040523d82523d6000602084013e612575565b606091505b5050505b6000600a60146101000a81548160ff02191690831515021790555050565b6125e981600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c8890919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061267e81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e690919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161271e91906134d2565b60405180910390a3505050565b6000612753826127456064866118dd90919063ffffffff16565b612c9e90919063ffffffff16565b9050600061276a8285612c8890919063ffffffff16565b90506127be84600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c8890919063ffffffff16565b600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061285381600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e690919063ffffffff16565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506128e882600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e690919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161298891906134d2565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129ed91906134d2565b60405180910390a3505050505050565b6000600267ffffffffffffffff811115612a1a57612a19613a5f565b5b604051908082528060200260200182016040528015612a485781602001602082028036833780820191505090505b5090503081600081518110612a6057612a5f613a30565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612b0257600080fd5b505afa158015612b16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b3a9190612d35565b81600181518110612b4e57612b4d613a30565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612bb530600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846118fb565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612c1995949392919061351d565b600060405180830381600087803b158015612c3357600080fd5b505af1158015612c47573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a78282604051612c7c9291906134ed565b60405180910390a15050565b60008183612c969190613844565b905092915050565b60008183612cac91906137ea565b905092915050565b600081359050612cc381613e25565b92915050565b600081519050612cd881613e25565b92915050565b600081359050612ced81613e3c565b92915050565b600081359050612d0281613e53565b92915050565b600060208284031215612d1e57612d1d613a8e565b5b6000612d2c84828501612cb4565b91505092915050565b600060208284031215612d4b57612d4a613a8e565b5b6000612d5984828501612cc9565b91505092915050565b60008060408385031215612d7957612d78613a8e565b5b6000612d8785828601612cb4565b9250506020612d9885828601612cb4565b9150509250929050565b600080600060608486031215612dbb57612dba613a8e565b5b6000612dc986828701612cb4565b9350506020612dda86828701612cb4565b9250506040612deb86828701612cf3565b9150509250925092565b60008060408385031215612e0c57612e0b613a8e565b5b6000612e1a85828601612cb4565b9250506020612e2b85828601612cf3565b9150509250929050565b600060208284031215612e4b57612e4a613a8e565b5b6000612e5984828501612cde565b91505092915050565b600060208284031215612e7857612e77613a8e565b5b6000612e8684828501612cf3565b91505092915050565b60008060408385031215612ea657612ea5613a8e565b5b6000612eb485828601612cf3565b9250506020612ec585828601612cf3565b9150509250929050565b6000612edb8383612ef6565b60208301905092915050565b612ef08161388a565b82525050565b612eff81613878565b82525050565b612f0e81613878565b82525050565b6000612f1f826135a2565b612f2981856135c5565b9350612f3483613592565b8060005b83811015612f65578151612f4c8882612ecf565b9750612f57836135b8565b925050600181019050612f38565b5085935050505092915050565b612f7b8161389c565b82525050565b612f8a816138df565b82525050565b612f99816138f1565b82525050565b6000612faa826135ad565b612fb481856135e1565b9350612fc4818560208601613927565b612fcd81613a93565b840191505092915050565b6000612fe56023836135e1565b9150612ff082613ab1565b604082019050919050565b60006130086026836135e1565b915061301382613b00565b604082019050919050565b600061302b6022836135e1565b915061303682613b4f565b604082019050919050565b600061304e6018836135e1565b915061305982613b9e565b602082019050919050565b6000613071601e836135e1565b915061307c82613bc7565b602082019050919050565b6000613094602c836135e1565b915061309f82613bf0565b604082019050919050565b60006130b76020836135e1565b91506130c282613c3f565b602082019050919050565b60006130da6029836135e1565b91506130e582613c68565b604082019050919050565b60006130fd601a836135e1565b915061310882613cb7565b602082019050919050565b6000613120601c836135e1565b915061312b82613ce0565b602082019050919050565b60006131436025836135e1565b915061314e82613d09565b604082019050919050565b6000613166600d836135e1565b915061317182613d58565b602082019050919050565b60006131896000836135d6565b915061319482613d81565b600082019050919050565b60006131ac6024836135e1565b91506131b782613d84565b604082019050919050565b60006131cf6018836135e1565b91506131da82613dd3565b602082019050919050565b60006131f26016836135e1565b91506131fd82613dfc565b602082019050919050565b613211816138c8565b82525050565b613220816138d2565b82525050565b60006132318261317c565b9150819050919050565b60006020820190506132506000830184612f05565b92915050565b600060208201905061326b6000830184612ee7565b92915050565b60006040820190506132866000830185612f05565b6132936020830184612f05565b9392505050565b60006020820190506132af6000830184612f72565b92915050565b60006020820190506132ca6000830184612f81565b92915050565b600060208201905081810360008301526132ea8184612f9f565b905092915050565b6000602082019050818103600083015261330b81612fd8565b9050919050565b6000602082019050818103600083015261332b81612ffb565b9050919050565b6000602082019050818103600083015261334b8161301e565b9050919050565b6000602082019050818103600083015261336b81613041565b9050919050565b6000602082019050818103600083015261338b81613064565b9050919050565b600060208201905081810360008301526133ab81613087565b9050919050565b600060208201905081810360008301526133cb816130aa565b9050919050565b600060208201905081810360008301526133eb816130cd565b9050919050565b6000602082019050818103600083015261340b816130f0565b9050919050565b6000602082019050818103600083015261342b81613113565b9050919050565b6000602082019050818103600083015261344b81613136565b9050919050565b6000602082019050818103600083015261346b81613159565b9050919050565b6000602082019050818103600083015261348b8161319f565b9050919050565b600060208201905081810360008301526134ab816131c2565b9050919050565b600060208201905081810360008301526134cb816131e5565b9050919050565b60006020820190506134e76000830184613208565b92915050565b60006040820190506135026000830185613208565b81810360208301526135148184612f14565b90509392505050565b600060a0820190506135326000830188613208565b61353f6020830187612f90565b81810360408301526135518186612f14565b90506135606060830185612f05565b61356d6080830184613208565b9695505050505050565b600060208201905061358c6000830184613217565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006135fd826138c8565b9150613608836138c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561363d5761363c6139a3565b5b828201905092915050565b6000613653826138c8565b915061365e836138c8565b92508261366e5761366d6139d2565b5b828204905092915050565b6000808291508390505b60018511156136c35780860481111561369f5761369e6139a3565b5b60018516156136ae5780820291505b80810290506136bc85613aa4565b9450613683565b94509492505050565b60006136d7826138c8565b91506136e2836138d2565b925061370f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613717565b905092915050565b60008261372757600190506137e3565b8161373557600090506137e3565b816001811461374b576002811461375557613784565b60019150506137e3565b60ff841115613767576137666139a3565b5b8360020a91508482111561377e5761377d6139a3565b5b506137e3565b5060208310610133831016604e8410600b84101617156137b95782820a9050838111156137b4576137b36139a3565b5b6137e3565b6137c68484846001613679565b925090508184048111156137dd576137dc6139a3565b5b81810290505b9392505050565b60006137f5826138c8565b9150613800836138c8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613839576138386139a3565b5b828202905092915050565b600061384f826138c8565b915061385a836138c8565b92508282101561386d5761386c6139a3565b5b828203905092915050565b6000613883826138a8565b9050919050565b6000613895826138a8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006138ea82613903565b9050919050565b60006138fc826138c8565b9050919050565b600061390e82613915565b9050919050565b6000613920826138a8565b9050919050565b60005b8381101561394557808201518184015260208101905061392a565b83811115613954576000848401525b50505050565b6000613965826138c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613998576139976139a3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d61782077616c6c6574206c696d697420657863656564210000000000000000600082015250565b7f4163636f756e7420697320616c726561647920626c61636b6c69737465640000600082015250565b7f7472616e7366657272696e6720746f6b656e73206973206e6f7420637572726560008201527f6e746c7920616c6c6f7765640000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000600082015250565b7f57652063616e206e6f7420626c61636b6c69737420556e697377617000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53746f7020736e6970696e672100000000000000000000000000000000000000600082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f54726164696e67206e6f742079657420656e61626c65642e0000000000000000600082015250565b7f6665652063616e6e6f7420657863656564203130302500000000000000000000600082015250565b613e2e81613878565b8114613e3957600080fd5b50565b613e458161389c565b8114613e5057600080fd5b50565b613e5c816138c8565b8114613e6757600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ef9826598ec47cb0776673e10e85bf616f74c5fe75c49fb752f676d114a7021564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102345760003560e01c8063715016cb1161012e578063a9059cbb116100ab578063dd62ed3e1161006f578063dd62ed3e14610824578063ea2f0b3714610861578063f2fde38b1461088a578063f8b45b05146108b3578063fd1e467f146108de5761023b565b8063a9059cbb14610765578063c75c136d146107a2578063c9567bf9146107cb578063cdd4bd79146107e2578063db2e21bc1461080d5761023b565b8063824e4605116100f2578063824e46051461067c57806386917524146106a75780638da5cb5b146106d257806395d89b41146106fd578063a457c2d7146107285761023b565b8063715016cb146105d1578063715018a6146105fa57806375ae267d14610611578063790ca4131461063a5780638203f5fe146106655761023b565b806339509351116101bc5780635d0044ca116101805780635d0044ca146104dc578063610d5b19146105055780636402511e146105425780636605bfda1461056b57806370a08231146105945761023b565b806339509351146103e3578063437823ec146104205780634626402b1461044957806349bd5a5e146104745780635342acb41461049f5761023b565b806318160ddd1161020357806318160ddd146102fc57806323b872dd1461032757806327c8f83514610364578063313ce5671461038f57806333251a0b146103ba5761023b565b806306fdde0314610240578063095ea7b31461026b5780630b2a808c146102a85780631694505e146102d15761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b50610255610909565b60405161026291906132d0565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190612df5565b610946565b60405161029f919061329a565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612d08565b610964565b005b3480156102dd57600080fd5b506102e6610be1565b6040516102f391906132b5565b60405180910390f35b34801561030857600080fd5b50610311610c07565b60405161031e91906134d2565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190612da2565b610c2e565b60405161035b919061329a565b60405180910390f35b34801561037057600080fd5b50610379610d07565b604051610386919061323b565b60405180910390f35b34801561039b57600080fd5b506103a4610d0d565b6040516103b19190613577565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190612d08565b610d16565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190612df5565b610eec565b604051610417919061329a565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190612d08565b610f9f565b005b34801561045557600080fd5b5061045e611002565b60405161046b9190613256565b60405180910390f35b34801561048057600080fd5b50610489611028565b604051610496919061323b565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190612d08565b61104e565b6040516104d3919061329a565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe9190612e62565b6110a4565b005b34801561051157600080fd5b5061052c60048036038101906105279190612d08565b6110b6565b604051610539919061329a565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190612e62565b61110c565b005b34801561057757600080fd5b50610592600480360381019061058d9190612d08565b61111e565b005b3480156105a057600080fd5b506105bb60048036038101906105b69190612d08565b61116a565b6040516105c891906134d2565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f39190612e8f565b6111b3565b005b34801561060657600080fd5b5061060f61121e565b005b34801561061d57600080fd5b5061063860048036038101906106339190612e35565b611232565b005b34801561064657600080fd5b5061064f611257565b60405161065c91906134d2565b60405180910390f35b34801561067157600080fd5b5061067a61125d565b005b34801561068857600080fd5b50610691611540565b60405161069e91906134d2565b60405180910390f35b3480156106b357600080fd5b506106bc611546565b6040516106c991906134d2565b60405180910390f35b3480156106de57600080fd5b506106e761154c565b6040516106f4919061323b565b60405180910390f35b34801561070957600080fd5b50610712611575565b60405161071f91906132d0565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190612df5565b6115b2565b60405161075c919061329a565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190612df5565b61167f565b604051610799919061329a565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190612e35565b61169d565b005b3480156107d757600080fd5b506107e06116c2565b005b3480156107ee57600080fd5b506107f7611709565b60405161080491906134d2565b60405180910390f35b34801561081957600080fd5b5061082261170f565b005b34801561083057600080fd5b5061084b60048036038101906108469190612d62565b611756565b60405161085891906134d2565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190612d08565b6117dd565b005b34801561089657600080fd5b506108b160048036038101906108ac9190612d08565b611840565b005b3480156108bf57600080fd5b506108c86118c4565b6040516108d591906134d2565b60405180910390f35b3480156108ea57600080fd5b506108f36118ca565b604051610900919061329a565b60405180910390f35b60606040518060400160405280600881526020017f4861707520496e75000000000000000000000000000000000000000000000000815250905090565b600061095a6109536118f3565b84846118fb565b6001905092915050565b61096c611ac6565b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef906133f2565b60405180910390fd5b60005b600580549050811015610bdd578173ffffffffffffffffffffffffffffffffffffffff1660058281548110610a3357610a32613a30565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610bca5760056001600580549050610a8e9190613844565b81548110610a9f57610a9e613a30565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660058281548110610ade57610add613a30565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005805480610b9057610b8f613a01565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055610bdd565b8080610bd59061395a565b9150506109fb565b5050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009600a610c1791906136cc565b66029fe1041511e8610c2991906137ea565b905090565b6000610c3b848484611b44565b610cfc84610c476118f3565b610cf785604051806060016040528060288152602001613e6b60289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cad6118f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123919092919063ffffffff16565b6118fb565b600190509392505050565b61dead81565b60006009905090565b610d1e611ac6565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890613412565b60405180910390fd5b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2590613372565b60405180910390fd5b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610f95610ef96118f3565b84610f908560036000610f0a6118f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e690919063ffffffff16565b6118fb565b6001905092915050565b610fa7611ac6565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6110ac611ac6565b80600d8190555050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611114611ac6565b80600e8190555050565b611126611ac6565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111bb611ac6565b606482111580156111cd575060648111155b61120c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611203906134b2565b60405180910390fd5b81600781905550806008819055505050565b611226611ac6565b61123060006123fc565b565b61123a611ac6565b80600c60016101000a81548160ff02191690831515021790555050565b600b5481565b611265611ac6565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156112c457600080fd5b505afa1580156112d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fc9190612d35565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561135e57600080fd5b505afa158015611372573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113969190612d35565b6040518363ffffffff1660e01b81526004016113b3929190613271565b602060405180830381600087803b1580156113cd57600080fd5b505af11580156113e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114059190612d35565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060016006600061149461154c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60075481565b600e5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600481526020017f4841505500000000000000000000000000000000000000000000000000000000815250905090565b60006116756115bf6118f3565b8461167085604051806060016040528060258152602001613e9360259139600360006115e96118f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123919092919063ffffffff16565b6118fb565b6001905092915050565b600061169361168c6118f3565b8484611b44565b6001905092915050565b6116a5611ac6565b80600f60006101000a81548160ff02191690831515021790555050565b6116ca611ac6565b6001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff02191690831515021790555042600b81905550565b60085481565b611717611ac6565b61171f61154c565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6117e5611ac6565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611848611ac6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118af90613312565b60405180910390fd5b6118c1816123fc565b50565b600d5481565b600f60009054906101000a900460ff1681565b600081836118eb9190613648565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290613472565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290613332565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611ab991906134d2565b60405180910390a3505050565b611ace6118f3565b73ffffffffffffffffffffffffffffffffffffffff16611aec61154c565b73ffffffffffffffffffffffffffffffffffffffff1614611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b39906133b2565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bab90613432565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b906132f2565b60405180910390fd5b60008111611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e906133d2565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb90613452565b60405180910390fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890613452565b60405180910390fd5b60046000611d8d6118f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0c90613452565b60405180910390fd5b600c60019054906101000a900460ff1680611e625750611e3361154c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9890613392565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611f4a5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611f895750611f5961154c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611fde57600c60009054906101000a900460ff16611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd490613492565b60405180910390fd5b5b600b544214801561203c5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156120fd576001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506005829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600e546121093061116a565b101580156121245750600a60149054906101000a900460ff16155b801561217e5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156121965750600f60009054906101000a900460ff165b156121a7576121a6600e546124c0565b5b6121b08361104e565b806121c057506121bf8261104e565b5b156121d5576121d0838383612597565b61224e565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561223e5761223983838360085461272b565b61224d565b61224c83838360075461272b565b5b5b61225661154c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156122df5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123395750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561238c576123478261116a565b600d54101561238b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238290613352565b60405180910390fd5b5b505050565b60008383111582906123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d091906132d0565b60405180910390fd5b5082840390509392505050565b600081836123f491906135f2565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600a60146101000a81548160ff0219169083151502179055506124e4816129fd565b600047111561257957600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161253390613226565b60006040518083038185875af1925050503d8060008114612570576040519150601f19603f3d011682016040523d82523d6000602084013e612575565b606091505b5050505b6000600a60146101000a81548160ff02191690831515021790555050565b6125e981600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c8890919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061267e81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e690919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161271e91906134d2565b60405180910390a3505050565b6000612753826127456064866118dd90919063ffffffff16565b612c9e90919063ffffffff16565b9050600061276a8285612c8890919063ffffffff16565b90506127be84600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612c8890919063ffffffff16565b600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061285381600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e690919063ffffffff16565b600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506128e882600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123e690919063ffffffff16565b600260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161298891906134d2565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129ed91906134d2565b60405180910390a3505050505050565b6000600267ffffffffffffffff811115612a1a57612a19613a5f565b5b604051908082528060200260200182016040528015612a485781602001602082028036833780820191505090505b5090503081600081518110612a6057612a5f613a30565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612b0257600080fd5b505afa158015612b16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b3a9190612d35565b81600181518110612b4e57612b4d613a30565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612bb530600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846118fb565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612c1995949392919061351d565b600060405180830381600087803b158015612c3357600080fd5b505af1158015612c47573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a78282604051612c7c9291906134ed565b60405180910390a15050565b60008183612c969190613844565b905092915050565b60008183612cac91906137ea565b905092915050565b600081359050612cc381613e25565b92915050565b600081519050612cd881613e25565b92915050565b600081359050612ced81613e3c565b92915050565b600081359050612d0281613e53565b92915050565b600060208284031215612d1e57612d1d613a8e565b5b6000612d2c84828501612cb4565b91505092915050565b600060208284031215612d4b57612d4a613a8e565b5b6000612d5984828501612cc9565b91505092915050565b60008060408385031215612d7957612d78613a8e565b5b6000612d8785828601612cb4565b9250506020612d9885828601612cb4565b9150509250929050565b600080600060608486031215612dbb57612dba613a8e565b5b6000612dc986828701612cb4565b9350506020612dda86828701612cb4565b9250506040612deb86828701612cf3565b9150509250925092565b60008060408385031215612e0c57612e0b613a8e565b5b6000612e1a85828601612cb4565b9250506020612e2b85828601612cf3565b9150509250929050565b600060208284031215612e4b57612e4a613a8e565b5b6000612e5984828501612cde565b91505092915050565b600060208284031215612e7857612e77613a8e565b5b6000612e8684828501612cf3565b91505092915050565b60008060408385031215612ea657612ea5613a8e565b5b6000612eb485828601612cf3565b9250506020612ec585828601612cf3565b9150509250929050565b6000612edb8383612ef6565b60208301905092915050565b612ef08161388a565b82525050565b612eff81613878565b82525050565b612f0e81613878565b82525050565b6000612f1f826135a2565b612f2981856135c5565b9350612f3483613592565b8060005b83811015612f65578151612f4c8882612ecf565b9750612f57836135b8565b925050600181019050612f38565b5085935050505092915050565b612f7b8161389c565b82525050565b612f8a816138df565b82525050565b612f99816138f1565b82525050565b6000612faa826135ad565b612fb481856135e1565b9350612fc4818560208601613927565b612fcd81613a93565b840191505092915050565b6000612fe56023836135e1565b9150612ff082613ab1565b604082019050919050565b60006130086026836135e1565b915061301382613b00565b604082019050919050565b600061302b6022836135e1565b915061303682613b4f565b604082019050919050565b600061304e6018836135e1565b915061305982613b9e565b602082019050919050565b6000613071601e836135e1565b915061307c82613bc7565b602082019050919050565b6000613094602c836135e1565b915061309f82613bf0565b604082019050919050565b60006130b76020836135e1565b91506130c282613c3f565b602082019050919050565b60006130da6029836135e1565b91506130e582613c68565b604082019050919050565b60006130fd601a836135e1565b915061310882613cb7565b602082019050919050565b6000613120601c836135e1565b915061312b82613ce0565b602082019050919050565b60006131436025836135e1565b915061314e82613d09565b604082019050919050565b6000613166600d836135e1565b915061317182613d58565b602082019050919050565b60006131896000836135d6565b915061319482613d81565b600082019050919050565b60006131ac6024836135e1565b91506131b782613d84565b604082019050919050565b60006131cf6018836135e1565b91506131da82613dd3565b602082019050919050565b60006131f26016836135e1565b91506131fd82613dfc565b602082019050919050565b613211816138c8565b82525050565b613220816138d2565b82525050565b60006132318261317c565b9150819050919050565b60006020820190506132506000830184612f05565b92915050565b600060208201905061326b6000830184612ee7565b92915050565b60006040820190506132866000830185612f05565b6132936020830184612f05565b9392505050565b60006020820190506132af6000830184612f72565b92915050565b60006020820190506132ca6000830184612f81565b92915050565b600060208201905081810360008301526132ea8184612f9f565b905092915050565b6000602082019050818103600083015261330b81612fd8565b9050919050565b6000602082019050818103600083015261332b81612ffb565b9050919050565b6000602082019050818103600083015261334b8161301e565b9050919050565b6000602082019050818103600083015261336b81613041565b9050919050565b6000602082019050818103600083015261338b81613064565b9050919050565b600060208201905081810360008301526133ab81613087565b9050919050565b600060208201905081810360008301526133cb816130aa565b9050919050565b600060208201905081810360008301526133eb816130cd565b9050919050565b6000602082019050818103600083015261340b816130f0565b9050919050565b6000602082019050818103600083015261342b81613113565b9050919050565b6000602082019050818103600083015261344b81613136565b9050919050565b6000602082019050818103600083015261346b81613159565b9050919050565b6000602082019050818103600083015261348b8161319f565b9050919050565b600060208201905081810360008301526134ab816131c2565b9050919050565b600060208201905081810360008301526134cb816131e5565b9050919050565b60006020820190506134e76000830184613208565b92915050565b60006040820190506135026000830185613208565b81810360208301526135148184612f14565b90509392505050565b600060a0820190506135326000830188613208565b61353f6020830187612f90565b81810360408301526135518186612f14565b90506135606060830185612f05565b61356d6080830184613208565b9695505050505050565b600060208201905061358c6000830184613217565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006135fd826138c8565b9150613608836138c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561363d5761363c6139a3565b5b828201905092915050565b6000613653826138c8565b915061365e836138c8565b92508261366e5761366d6139d2565b5b828204905092915050565b6000808291508390505b60018511156136c35780860481111561369f5761369e6139a3565b5b60018516156136ae5780820291505b80810290506136bc85613aa4565b9450613683565b94509492505050565b60006136d7826138c8565b91506136e2836138d2565b925061370f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613717565b905092915050565b60008261372757600190506137e3565b8161373557600090506137e3565b816001811461374b576002811461375557613784565b60019150506137e3565b60ff841115613767576137666139a3565b5b8360020a91508482111561377e5761377d6139a3565b5b506137e3565b5060208310610133831016604e8410600b84101617156137b95782820a9050838111156137b4576137b36139a3565b5b6137e3565b6137c68484846001613679565b925090508184048111156137dd576137dc6139a3565b5b81810290505b9392505050565b60006137f5826138c8565b9150613800836138c8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613839576138386139a3565b5b828202905092915050565b600061384f826138c8565b915061385a836138c8565b92508282101561386d5761386c6139a3565b5b828203905092915050565b6000613883826138a8565b9050919050565b6000613895826138a8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006138ea82613903565b9050919050565b60006138fc826138c8565b9050919050565b600061390e82613915565b9050919050565b6000613920826138a8565b9050919050565b60005b8381101561394557808201518184015260208101905061392a565b83811115613954576000848401525b50505050565b6000613965826138c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613998576139976139a3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d61782077616c6c6574206c696d697420657863656564210000000000000000600082015250565b7f4163636f756e7420697320616c726561647920626c61636b6c69737465640000600082015250565b7f7472616e7366657272696e6720746f6b656e73206973206e6f7420637572726560008201527f6e746c7920616c6c6f7765640000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000600082015250565b7f57652063616e206e6f7420626c61636b6c69737420556e697377617000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53746f7020736e6970696e672100000000000000000000000000000000000000600082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f54726164696e67206e6f742079657420656e61626c65642e0000000000000000600082015250565b7f6665652063616e6e6f7420657863656564203130302500000000000000000000600082015250565b613e2e81613878565b8114613e3957600080fd5b50565b613e458161389c565b8114613e5057600080fd5b50565b613e5c816138c8565b8114613e6757600080fd5b5056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ef9826598ec47cb0776673e10e85bf616f74c5fe75c49fb752f676d114a7021564736f6c63430008070033

Deployed Bytecode Sourcemap

30863:11630:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33715:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34631:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41758:519;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31814:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33998:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34834:448;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31091:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33905:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41412:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35290:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40122:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30984:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31862:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39994:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41187:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41289:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41079:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40701:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34103:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40355:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20039:103;;;;;;;;;;;;;:::i;:::-;;40962:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32174:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33110:439;;;;;;;;;;;;;:::i;:::-;;31727:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32339:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19391:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33808:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35600:402;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34228:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40841:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33557:150;;;;;;;;;;;;;:::i;:::-;;31769:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42285:111;;;;;;;;;;;;;:::i;:::-;;34437:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40239:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20297:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32289:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32393:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33715:85;33754:13;33787:5;;;;;;;;;;;;;;;;;33780:12;;33715:85;:::o;34631:195::-;34735:4;34757:39;34766:12;:10;:12::i;:::-;34780:7;34789:6;34757:8;:39::i;:::-;34814:4;34807:11;;34631:195;;;;:::o;41758:519::-;19277:13;:11;:13::i;:::-;41836:9:::1;:18;41846:7;41836:18;;;;;;;;;;;;;;;;;;;;;;;;;41828:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41901:9;41896:374;41920:17;:24;;;;41916:1;:28;41896:374;;;41994:7;41970:31;;:17;41988:1;41970:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:31;;;41966:293;;;42045:17;42112:1;42085:17;:24;;;;:28;;;;:::i;:::-;42045:87;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42022:17;42040:1;42022:20;;;;;;;;:::i;:::-;;;;;;;;;;:110;;;;;;;;;;;;;;;;;;42172:5;42151:9;:18;42161:7;42151:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;42196:17;:23;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;42238:5;;41966:293;41946:3;;;;;:::i;:::-;;;;41896:374;;;;41758:519:::0;:::o;31814:41::-;;;;;;;;;;;;;:::o;33998:97::-;34053:7;31593:1;31705:2;:13;;;;:::i;:::-;31687:15;:31;;;;:::i;:::-;34073:14;;33998:97;:::o;34834:448::-;34968:4;34985:36;34995:6;35003:9;35014:6;34985:9;:36::i;:::-;35032:220;35055:6;35076:12;:10;:12::i;:::-;35103:138;35159:6;35103:138;;;;;;;;;;;;;;;;;:11;:19;35115:6;35103:19;;;;;;;;;;;;;;;:33;35123:12;:10;:12::i;:::-;35103:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;35032:8;:220::i;:::-;35270:4;35263:11;;34834:448;;;;;:::o;31091:89::-;31138:42;31091:89;:::o;33905:85::-;33948:5;31593:1;33966:16;;33905:85;:::o;41412:338::-;19277:13;:11;:13::i;:::-;32084:42:::1;41503:32;;:7;:32;;;;41481:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;41611:9;:18;41621:7;41611:18;;;;;;;;;;;;;;;;;;;;;;;;;41610:19;41602:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;41696:4;41675:9;:18;41685:7;41675:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;41711:17;41734:7;41711:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41412:338:::0;:::o;35290:302::-;35407:4;35429:133;35452:12;:10;:12::i;:::-;35479:7;35501:50;35540:10;35501:11;:25;35513:12;:10;:12::i;:::-;35501:25;;;;;;;;;;;;;;;:34;35527:7;35501:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;35429:8;:133::i;:::-;35580:4;35573:11;;35290:302;;;;:::o;40122:109::-;19277:13;:11;:13::i;:::-;40219:4:::1;40193:14;:23;40208:7;40193:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;40122:109:::0;:::o;30984:100::-;;;;;;;;;;;;;:::o;31862:28::-;;;;;;;;;;;;;:::o;39994:120::-;40059:4;40083:14;:23;40098:7;40083:23;;;;;;;;;;;;;;;;;;;;;;;;;40076:30;;39994:120;;;:::o;41187:94::-;19277:13;:11;:13::i;:::-;41267:6:::1;41255:9;:18;;;;41187:94:::0;:::o;41289:115::-;41354:4;41378:9;:18;41388:7;41378:18;;;;;;;;;;;;;;;;;;;;;;;;;41371:25;;41289:115;;;:::o;41079:100::-;19277:13;:11;:13::i;:::-;41165:6:::1;41150:12;:21;;;;41079:100:::0;:::o;40701:132::-;19277:13;:11;:13::i;:::-;40809:15:::1;40784:14;;:41;;;;;;;;;;;;;;;;;;40701:132:::0;:::o;34103:117::-;34169:7;34196;:16;34204:7;34196:16;;;;;;;;;;;;;;;;34189:23;;34103:117;;;:::o;40355:338::-;19277:13;:11;:13::i;:::-;40522:3:::1;40506:12;:19;;:43;;;;;40546:3;40529:13;:20;;40506:43;40484:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;40629:12;40610:16;:31;;;;40672:13;40652:17;:33;;;;40355:338:::0;;:::o;20039:103::-;19277:13;:11;:13::i;:::-;20104:30:::1;20131:1;20104:18;:30::i;:::-;20039:103::o:0;40962:109::-;19277:13;:11;:13::i;:::-;41051:12:::1;41035:13;;:28;;;;;;;;;;;;;;;;;;40962:109:::0;:::o;32174:25::-;;;;:::o;33110:439::-;19277:13;:11;:13::i;:::-;33164:35:::1;32084:42;33164:103;;33312:16;:24;;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33294:70;;;33373:4;33380:16;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33294:110;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33278:13;;:126;;;;;;;;;;;;;;;;;;33435:16;33417:15;;:34;;;;;;;;;;;;;;;;;;33490:4;33464:14;:23;33479:7;:5;:7::i;:::-;33464:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;33537:4;33505:14;:29;33528:4;33505:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;33153:396;33110:439::o:0;31727:35::-;;;;:::o;32339:47::-;;;;:::o;19391:87::-;19437:7;19464:6;;;;;;;;;;;19457:13;;19391:87;:::o;33808:89::-;33849:13;33882:7;;;;;;;;;;;;;;;;;33875:14;;33808:89;:::o;35600:402::-;35722:4;35744:228;35767:12;:10;:12::i;:::-;35794:7;35816:145;35873:15;35816:145;;;;;;;;;;;;;;;;;:11;:25;35828:12;:10;:12::i;:::-;35816:25;;;;;;;;;;;;;;;:34;35842:7;35816:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;35744:8;:228::i;:::-;35990:4;35983:11;;35600:402;;;;:::o;34228:201::-;34335:4;34357:42;34367:12;:10;:12::i;:::-;34381:9;34392:6;34357:9;:42::i;:::-;34417:4;34410:11;;34228:201;;;;:::o;40841:113::-;19277:13;:11;:13::i;:::-;40942:4:::1;40917:22;;:29;;;;;;;;;;;;;;;;;;40841:113:::0;:::o;33557:150::-;19277:13;:11;:13::i;:::-;33625:4:::1;33610:12;;:19;;;;;;;;;;;;;;;;;;33656:4;33640:13;;:20;;;;;;;;;;;;;;;;;;33684:15;33671:10;:28;;;;33557:150::o:0;31769:36::-;;;;:::o;42285:111::-;19277:13;:11;:13::i;:::-;42352:7:::1;:5;:7::i;:::-;42344:21;;:44;42366:21;42344:44;;;;;;;;;;;;;;;;;;;;;;;;42285:111::o:0;34437:186::-;34556:7;34588:11;:18;34600:5;34588:18;;;;;;;;;;;;;;;:27;34607:7;34588:27;;;;;;;;;;;;;;;;34581:34;;34437:186;;;;:::o;40239:108::-;19277:13;:11;:13::i;:::-;40334:5:::1;40308:14;:23;40323:7;40308:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;40239:108:::0;:::o;20297:201::-;19277:13;:11;:13::i;:::-;20406:1:::1;20386:22;;:8;:22;;;;20378:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20462:28;20481:8;20462:18;:28::i;:::-;20297:201:::0;:::o;32289:43::-;;;;:::o;32393:41::-;;;;;;;;;;;;;:::o;24869:98::-;24927:7;24958:1;24954;:5;;;;:::i;:::-;24947:12;;24869:98;;;;:::o;17942:::-;17995:7;18022:10;18015:17;;17942:98;:::o;36010:371::-;36154:1;36137:19;;:5;:19;;;;36129:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36235:1;36216:21;;:7;:21;;;;36208:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36319:6;36289:11;:18;36301:5;36289:18;;;;;;;;;;;;;;;:27;36308:7;36289:27;;;;;;;;;;;;;;;:36;;;;36357:7;36341:32;;36350:5;36341:32;;;36366:6;36341:32;;;;;;:::i;:::-;;;;;;;;36010:371;;;:::o;19556:132::-;19631:12;:10;:12::i;:::-;19620:23;;:7;:5;:7::i;:::-;:23;;;19612:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19556:132::o;36389:1804::-;36527:1;36511:18;;:4;:18;;;;36503:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36604:1;36590:16;;:2;:16;;;;36582:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36674:1;36665:6;:10;36657:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;36741:9;:13;36751:2;36741:13;;;;;;;;;;;;;;;;;;;;;;;;;36740:14;36732:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;36792:9;:15;36802:4;36792:15;;;;;;;;;;;;;;;;;;;;;;;;;36791:16;36783:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;36845:9;:23;36855:12;:10;:12::i;:::-;36845:23;;;;;;;;;;;;;;;;;;;;;;;;;36844:24;36836:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;36919:13;;;;;;;;;;;:32;;;;36944:7;:5;:7::i;:::-;36936:15;;:4;:15;;;36919:32;36897:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;37047:13;;;;;;;;;;;37039:21;;:4;:21;;;:44;;;;37070:13;;;;;;;;;;;37064:19;;:2;:19;;;37039:44;37038:65;;;;;37096:7;:5;:7::i;:::-;37088:15;;:4;:15;;;;37038:65;37034:147;;;37128:12;;;;;;;;;;;37120:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;37034:147;37214:10;;37195:15;:29;:54;;;;;37236:13;;;;;;;;;;;37228:21;;:4;:21;;;37195:54;37191:148;;;37282:4;37266:9;:13;37276:2;37266:13;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;37301:17;37324:2;37301:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37191:148;37397:12;;37369:24;37387:4;37369:9;:24::i;:::-;:40;;:75;;;;;37427:17;;;;;;;;;;;37426:18;37369:75;:113;;;;;37469:13;;;;;;;;;;;37461:21;;:4;:21;;;;37369:113;:152;;;;;37499:22;;;;;;;;;;;37369:152;37351:242;;;37548:33;37568:12;;37548:19;:33::i;:::-;37351:242;37609:23;37627:4;37609:17;:23::i;:::-;:48;;;;37636:21;37654:2;37636:17;:21::i;:::-;37609:48;37605:353;;;37674:32;37689:4;37695:2;37699:6;37674:14;:32::i;:::-;37605:353;;;37749:13;;;;;;;;;;;37743:19;;:2;:19;;;37739:208;;;37783:54;37801:4;37807:2;37811:6;37819:17;;37783;:54::i;:::-;37739:208;;;37878:53;37896:4;37902:2;37906:6;37914:16;;37878:17;:53::i;:::-;37739:208;37605:353;37994:7;:5;:7::i;:::-;37988:13;;:2;:13;;;;:49;;;;;38024:13;;;;;;;;;;;38018:19;;:2;:19;;;;37988:49;:96;;;;;38068:15;;;;;;;;;;;38054:30;;:2;:30;;;;37988:96;37970:216;;;38132:13;38142:2;38132:9;:13::i;:::-;38119:9;;:26;;38111:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;37970:216;36389:1804;;;:::o;26011:240::-;26131:7;26189:1;26184;:6;;26192:12;26176:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;26231:1;26227;:5;26220:12;;26011:240;;;;;:::o;23732:98::-;23790:7;23821:1;23817;:5;;;;:::i;:::-;23810:12;;23732:98;;;;:::o;20658:191::-;20732:16;20751:6;;;;;;;;;;;20732:25;;20777:8;20768:6;;:17;;;;;;;;;;;;;;;;;;20832:8;20801:40;;20822:8;20801:40;;;;;;;;;;;;20721:128;20658:191;:::o;38201:230::-;32911:4;32891:17;;:24;;;;;;;;;;;;;;;;;;38277:25:::1;38295:6;38277:17;:25::i;:::-;38341:1;38317:21;:25;38313:111;;;38359:14;;;;;;;;;;;:19;;38386:21;38359:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38313:111;32958:5:::0;32938:17;;:25;;;;;;;;;;;;;;;;;;38201:230;:::o;39106:258::-;39241:25;39259:6;39241:7;:13;39249:4;39241:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;39225:7;:13;39233:4;39225:13;;;;;;;;;;;;;;;:41;;;;39291:23;39307:6;39291:7;:11;39299:2;39291:11;;;;;;;;;;;;;;;;:15;;:23;;;;:::i;:::-;39277:7;:11;39285:2;39277:11;;;;;;;;;;;;;;;:37;;;;39345:2;39330:26;;39339:4;39330:26;;;39349:6;39330:26;;;;;;:::i;:::-;;;;;;;;39106:258;;;:::o;39372:614::-;39526:25;39554;39575:3;39554:16;39566:3;39554:7;:11;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;39526:53;;39590:22;39615:30;39627:17;39615:7;:11;;:30;;;;:::i;:::-;39590:55;;39674:28;39694:7;39674;:15;39682:6;39674:15;;;;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;39656:7;:15;39664:6;39656:15;;;;;;;;;;;;;;;:46;;;;39734:38;39757:14;39734:7;:18;39742:9;39734:18;;;;;;;;;;;;;;;;:22;;:38;;;;:::i;:::-;39713:7;:18;39721:9;39713:18;;;;;;;;;;;;;;;:59;;;;39808:45;39835:17;39808:7;:22;39824:4;39808:22;;;;;;;;;;;;;;;;:26;;:45;;;;:::i;:::-;39783:7;:22;39799:4;39783:22;;;;;;;;;;;;;;;:70;;;;39886:9;39869:43;;39878:6;39869:43;;;39897:14;39869:43;;;;;;:::i;:::-;;;;;;;;39953:4;39928:50;;39937:6;39928:50;;;39960:17;39928:50;;;;;;:::i;:::-;;;;;;;;39515:471;;39372:614;;;;:::o;38439:659::-;38566:21;38604:1;38590:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38566:40;;38635:4;38617;38622:1;38617:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;38661:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38651:4;38656:1;38651:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;38696:62;38713:4;38728:15;;;;;;;;;;;38746:11;38696:8;:62::i;:::-;38797:15;;;;;;;;;;;:66;;;38878:11;38904:1;38948:4;38975;39011:15;38797:240;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39055:35;39072:11;39085:4;39055:35;;;;;;;:::i;:::-;;;;;;;;38495:603;38439:659;:::o;24113:98::-;24171:7;24202:1;24198;:5;;;;:::i;:::-;24191:12;;24113:98;;;;:::o;24470:::-;24528:7;24559:1;24555;:5;;;;:::i;:::-;24548:12;;24470:98;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:143::-;209:5;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;152:143;;;;:::o;301:133::-;344:5;382:6;369:20;360:29;;398:30;422:5;398:30;:::i;:::-;301:133;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:329::-;644:6;693:2;681:9;672:7;668:23;664:32;661:119;;;699:79;;:::i;:::-;661:119;819:1;844:53;889:7;880:6;869:9;865:22;844:53;:::i;:::-;834:63;;790:117;585:329;;;;:::o;920:351::-;990:6;1039:2;1027:9;1018:7;1014:23;1010:32;1007:119;;;1045:79;;:::i;:::-;1007:119;1165:1;1190:64;1246:7;1237:6;1226:9;1222:22;1190:64;:::i;:::-;1180:74;;1136:128;920:351;;;;:::o;1277:474::-;1345:6;1353;1402:2;1390:9;1381:7;1377:23;1373:32;1370:119;;;1408:79;;:::i;:::-;1370:119;1528:1;1553:53;1598:7;1589:6;1578:9;1574:22;1553:53;:::i;:::-;1543:63;;1499:117;1655:2;1681:53;1726:7;1717:6;1706:9;1702:22;1681:53;:::i;:::-;1671:63;;1626:118;1277:474;;;;;:::o;1757:619::-;1834:6;1842;1850;1899:2;1887:9;1878:7;1874:23;1870:32;1867:119;;;1905:79;;:::i;:::-;1867:119;2025:1;2050:53;2095:7;2086:6;2075:9;2071:22;2050:53;:::i;:::-;2040:63;;1996:117;2152:2;2178:53;2223:7;2214:6;2203:9;2199:22;2178:53;:::i;:::-;2168:63;;2123:118;2280:2;2306:53;2351:7;2342:6;2331:9;2327:22;2306:53;:::i;:::-;2296:63;;2251:118;1757:619;;;;;:::o;2382:474::-;2450:6;2458;2507:2;2495:9;2486:7;2482:23;2478:32;2475:119;;;2513:79;;:::i;:::-;2475:119;2633:1;2658:53;2703:7;2694:6;2683:9;2679:22;2658:53;:::i;:::-;2648:63;;2604:117;2760:2;2786:53;2831:7;2822:6;2811:9;2807:22;2786:53;:::i;:::-;2776:63;;2731:118;2382:474;;;;;:::o;2862:323::-;2918:6;2967:2;2955:9;2946:7;2942:23;2938:32;2935:119;;;2973:79;;:::i;:::-;2935:119;3093:1;3118:50;3160:7;3151:6;3140:9;3136:22;3118:50;:::i;:::-;3108:60;;3064:114;2862:323;;;;:::o;3191:329::-;3250:6;3299:2;3287:9;3278:7;3274:23;3270:32;3267:119;;;3305:79;;:::i;:::-;3267:119;3425:1;3450:53;3495:7;3486:6;3475:9;3471:22;3450:53;:::i;:::-;3440:63;;3396:117;3191:329;;;;:::o;3526:474::-;3594:6;3602;3651:2;3639:9;3630:7;3626:23;3622:32;3619:119;;;3657:79;;:::i;:::-;3619:119;3777:1;3802:53;3847:7;3838:6;3827:9;3823:22;3802:53;:::i;:::-;3792:63;;3748:117;3904:2;3930:53;3975:7;3966:6;3955:9;3951:22;3930:53;:::i;:::-;3920:63;;3875:118;3526:474;;;;;:::o;4006:179::-;4075:10;4096:46;4138:3;4130:6;4096:46;:::i;:::-;4174:4;4169:3;4165:14;4151:28;;4006:179;;;;:::o;4191:142::-;4294:32;4320:5;4294:32;:::i;:::-;4289:3;4282:45;4191:142;;:::o;4339:108::-;4416:24;4434:5;4416:24;:::i;:::-;4411:3;4404:37;4339:108;;:::o;4453:118::-;4540:24;4558:5;4540:24;:::i;:::-;4535:3;4528:37;4453:118;;:::o;4607:732::-;4726:3;4755:54;4803:5;4755:54;:::i;:::-;4825:86;4904:6;4899:3;4825:86;:::i;:::-;4818:93;;4935:56;4985:5;4935:56;:::i;:::-;5014:7;5045:1;5030:284;5055:6;5052:1;5049:13;5030:284;;;5131:6;5125:13;5158:63;5217:3;5202:13;5158:63;:::i;:::-;5151:70;;5244:60;5297:6;5244:60;:::i;:::-;5234:70;;5090:224;5077:1;5074;5070:9;5065:14;;5030:284;;;5034:14;5330:3;5323:10;;4731:608;;;4607:732;;;;:::o;5345:109::-;5426:21;5441:5;5426:21;:::i;:::-;5421:3;5414:34;5345:109;;:::o;5460:183::-;5573:63;5630:5;5573:63;:::i;:::-;5568:3;5561:76;5460:183;;:::o;5649:147::-;5744:45;5783:5;5744:45;:::i;:::-;5739:3;5732:58;5649:147;;:::o;5802:364::-;5890:3;5918:39;5951:5;5918:39;:::i;:::-;5973:71;6037:6;6032:3;5973:71;:::i;:::-;5966:78;;6053:52;6098:6;6093:3;6086:4;6079:5;6075:16;6053:52;:::i;:::-;6130:29;6152:6;6130:29;:::i;:::-;6125:3;6121:39;6114:46;;5894:272;5802:364;;;;:::o;6172:366::-;6314:3;6335:67;6399:2;6394:3;6335:67;:::i;:::-;6328:74;;6411:93;6500:3;6411:93;:::i;:::-;6529:2;6524:3;6520:12;6513:19;;6172:366;;;:::o;6544:::-;6686:3;6707:67;6771:2;6766:3;6707:67;:::i;:::-;6700:74;;6783:93;6872:3;6783:93;:::i;:::-;6901:2;6896:3;6892:12;6885:19;;6544:366;;;:::o;6916:::-;7058:3;7079:67;7143:2;7138:3;7079:67;:::i;:::-;7072:74;;7155:93;7244:3;7155:93;:::i;:::-;7273:2;7268:3;7264:12;7257:19;;6916:366;;;:::o;7288:::-;7430:3;7451:67;7515:2;7510:3;7451:67;:::i;:::-;7444:74;;7527:93;7616:3;7527:93;:::i;:::-;7645:2;7640:3;7636:12;7629:19;;7288:366;;;:::o;7660:::-;7802:3;7823:67;7887:2;7882:3;7823:67;:::i;:::-;7816:74;;7899:93;7988:3;7899:93;:::i;:::-;8017:2;8012:3;8008:12;8001:19;;7660:366;;;:::o;8032:::-;8174:3;8195:67;8259:2;8254:3;8195:67;:::i;:::-;8188:74;;8271:93;8360:3;8271:93;:::i;:::-;8389:2;8384:3;8380:12;8373:19;;8032:366;;;:::o;8404:::-;8546:3;8567:67;8631:2;8626:3;8567:67;:::i;:::-;8560:74;;8643:93;8732:3;8643:93;:::i;:::-;8761:2;8756:3;8752:12;8745:19;;8404:366;;;:::o;8776:::-;8918:3;8939:67;9003:2;8998:3;8939:67;:::i;:::-;8932:74;;9015:93;9104:3;9015:93;:::i;:::-;9133:2;9128:3;9124:12;9117:19;;8776:366;;;:::o;9148:::-;9290:3;9311:67;9375:2;9370:3;9311:67;:::i;:::-;9304:74;;9387:93;9476:3;9387:93;:::i;:::-;9505:2;9500:3;9496:12;9489:19;;9148:366;;;:::o;9520:::-;9662:3;9683:67;9747:2;9742:3;9683:67;:::i;:::-;9676:74;;9759:93;9848:3;9759:93;:::i;:::-;9877:2;9872:3;9868:12;9861:19;;9520:366;;;:::o;9892:::-;10034:3;10055:67;10119:2;10114:3;10055:67;:::i;:::-;10048:74;;10131:93;10220:3;10131:93;:::i;:::-;10249:2;10244:3;10240:12;10233:19;;9892:366;;;:::o;10264:::-;10406:3;10427:67;10491:2;10486:3;10427:67;:::i;:::-;10420:74;;10503:93;10592:3;10503:93;:::i;:::-;10621:2;10616:3;10612:12;10605:19;;10264:366;;;:::o;10636:398::-;10795:3;10816:83;10897:1;10892:3;10816:83;:::i;:::-;10809:90;;10908:93;10997:3;10908:93;:::i;:::-;11026:1;11021:3;11017:11;11010:18;;10636:398;;;:::o;11040:366::-;11182:3;11203:67;11267:2;11262:3;11203:67;:::i;:::-;11196:74;;11279:93;11368:3;11279:93;:::i;:::-;11397:2;11392:3;11388:12;11381:19;;11040:366;;;:::o;11412:::-;11554:3;11575:67;11639:2;11634:3;11575:67;:::i;:::-;11568:74;;11651:93;11740:3;11651:93;:::i;:::-;11769:2;11764:3;11760:12;11753:19;;11412:366;;;:::o;11784:::-;11926:3;11947:67;12011:2;12006:3;11947:67;:::i;:::-;11940:74;;12023:93;12112:3;12023:93;:::i;:::-;12141:2;12136:3;12132:12;12125:19;;11784:366;;;:::o;12156:118::-;12243:24;12261:5;12243:24;:::i;:::-;12238:3;12231:37;12156:118;;:::o;12280:112::-;12363:22;12379:5;12363:22;:::i;:::-;12358:3;12351:35;12280:112;;:::o;12398:379::-;12582:3;12604:147;12747:3;12604:147;:::i;:::-;12597:154;;12768:3;12761:10;;12398:379;;;:::o;12783:222::-;12876:4;12914:2;12903:9;12899:18;12891:26;;12927:71;12995:1;12984:9;12980:17;12971:6;12927:71;:::i;:::-;12783:222;;;;:::o;13011:254::-;13120:4;13158:2;13147:9;13143:18;13135:26;;13171:87;13255:1;13244:9;13240:17;13231:6;13171:87;:::i;:::-;13011:254;;;;:::o;13271:332::-;13392:4;13430:2;13419:9;13415:18;13407:26;;13443:71;13511:1;13500:9;13496:17;13487:6;13443:71;:::i;:::-;13524:72;13592:2;13581:9;13577:18;13568:6;13524:72;:::i;:::-;13271:332;;;;;:::o;13609:210::-;13696:4;13734:2;13723:9;13719:18;13711:26;;13747:65;13809:1;13798:9;13794:17;13785:6;13747:65;:::i;:::-;13609:210;;;;:::o;13825:274::-;13944:4;13982:2;13971:9;13967:18;13959:26;;13995:97;14089:1;14078:9;14074:17;14065:6;13995:97;:::i;:::-;13825:274;;;;:::o;14105:313::-;14218:4;14256:2;14245:9;14241:18;14233:26;;14305:9;14299:4;14295:20;14291:1;14280:9;14276:17;14269:47;14333:78;14406:4;14397:6;14333:78;:::i;:::-;14325:86;;14105:313;;;;:::o;14424:419::-;14590:4;14628:2;14617:9;14613:18;14605:26;;14677:9;14671:4;14667:20;14663:1;14652:9;14648:17;14641:47;14705:131;14831:4;14705:131;:::i;:::-;14697:139;;14424:419;;;:::o;14849:::-;15015:4;15053:2;15042:9;15038:18;15030:26;;15102:9;15096:4;15092:20;15088:1;15077:9;15073:17;15066:47;15130:131;15256:4;15130:131;:::i;:::-;15122:139;;14849:419;;;:::o;15274:::-;15440:4;15478:2;15467:9;15463:18;15455:26;;15527:9;15521:4;15517:20;15513:1;15502:9;15498:17;15491:47;15555:131;15681:4;15555:131;:::i;:::-;15547:139;;15274:419;;;:::o;15699:::-;15865:4;15903:2;15892:9;15888:18;15880:26;;15952:9;15946:4;15942:20;15938:1;15927:9;15923:17;15916:47;15980:131;16106:4;15980:131;:::i;:::-;15972:139;;15699:419;;;:::o;16124:::-;16290:4;16328:2;16317:9;16313:18;16305:26;;16377:9;16371:4;16367:20;16363:1;16352:9;16348:17;16341:47;16405:131;16531:4;16405:131;:::i;:::-;16397:139;;16124:419;;;:::o;16549:::-;16715:4;16753:2;16742:9;16738:18;16730:26;;16802:9;16796:4;16792:20;16788:1;16777:9;16773:17;16766:47;16830:131;16956:4;16830:131;:::i;:::-;16822:139;;16549:419;;;:::o;16974:::-;17140:4;17178:2;17167:9;17163:18;17155:26;;17227:9;17221:4;17217:20;17213:1;17202:9;17198:17;17191:47;17255:131;17381:4;17255:131;:::i;:::-;17247:139;;16974:419;;;:::o;17399:::-;17565:4;17603:2;17592:9;17588:18;17580:26;;17652:9;17646:4;17642:20;17638:1;17627:9;17623:17;17616:47;17680:131;17806:4;17680:131;:::i;:::-;17672:139;;17399:419;;;:::o;17824:::-;17990:4;18028:2;18017:9;18013:18;18005:26;;18077:9;18071:4;18067:20;18063:1;18052:9;18048:17;18041:47;18105:131;18231:4;18105:131;:::i;:::-;18097:139;;17824:419;;;:::o;18249:::-;18415:4;18453:2;18442:9;18438:18;18430:26;;18502:9;18496:4;18492:20;18488:1;18477:9;18473:17;18466:47;18530:131;18656:4;18530:131;:::i;:::-;18522:139;;18249:419;;;:::o;18674:::-;18840:4;18878:2;18867:9;18863:18;18855:26;;18927:9;18921:4;18917:20;18913:1;18902:9;18898:17;18891:47;18955:131;19081:4;18955:131;:::i;:::-;18947:139;;18674:419;;;:::o;19099:::-;19265:4;19303:2;19292:9;19288:18;19280:26;;19352:9;19346:4;19342:20;19338:1;19327:9;19323:17;19316:47;19380:131;19506:4;19380:131;:::i;:::-;19372:139;;19099:419;;;:::o;19524:::-;19690:4;19728:2;19717:9;19713:18;19705:26;;19777:9;19771:4;19767:20;19763:1;19752:9;19748:17;19741:47;19805:131;19931:4;19805:131;:::i;:::-;19797:139;;19524:419;;;:::o;19949:::-;20115:4;20153:2;20142:9;20138:18;20130:26;;20202:9;20196:4;20192:20;20188:1;20177:9;20173:17;20166:47;20230:131;20356:4;20230:131;:::i;:::-;20222:139;;19949:419;;;:::o;20374:::-;20540:4;20578:2;20567:9;20563:18;20555:26;;20627:9;20621:4;20617:20;20613:1;20602:9;20598:17;20591:47;20655:131;20781:4;20655:131;:::i;:::-;20647:139;;20374:419;;;:::o;20799:222::-;20892:4;20930:2;20919:9;20915:18;20907:26;;20943:71;21011:1;21000:9;20996:17;20987:6;20943:71;:::i;:::-;20799:222;;;;:::o;21027:483::-;21198:4;21236:2;21225:9;21221:18;21213:26;;21249:71;21317:1;21306:9;21302:17;21293:6;21249:71;:::i;:::-;21367:9;21361:4;21357:20;21352:2;21341:9;21337:18;21330:48;21395:108;21498:4;21489:6;21395:108;:::i;:::-;21387:116;;21027:483;;;;;:::o;21516:831::-;21779:4;21817:3;21806:9;21802:19;21794:27;;21831:71;21899:1;21888:9;21884:17;21875:6;21831:71;:::i;:::-;21912:80;21988:2;21977:9;21973:18;21964:6;21912:80;:::i;:::-;22039:9;22033:4;22029:20;22024:2;22013:9;22009:18;22002:48;22067:108;22170:4;22161:6;22067:108;:::i;:::-;22059:116;;22185:72;22253:2;22242:9;22238:18;22229:6;22185:72;:::i;:::-;22267:73;22335:3;22324:9;22320:19;22311:6;22267:73;:::i;:::-;21516:831;;;;;;;;:::o;22353:214::-;22442:4;22480:2;22469:9;22465:18;22457:26;;22493:67;22557:1;22546:9;22542:17;22533:6;22493:67;:::i;:::-;22353:214;;;;:::o;22654:132::-;22721:4;22744:3;22736:11;;22774:4;22769:3;22765:14;22757:22;;22654:132;;;:::o;22792:114::-;22859:6;22893:5;22887:12;22877:22;;22792:114;;;:::o;22912:99::-;22964:6;22998:5;22992:12;22982:22;;22912:99;;;:::o;23017:113::-;23087:4;23119;23114:3;23110:14;23102:22;;23017:113;;;:::o;23136:184::-;23235:11;23269:6;23264:3;23257:19;23309:4;23304:3;23300:14;23285:29;;23136:184;;;;:::o;23326:147::-;23427:11;23464:3;23449:18;;23326:147;;;;:::o;23479:169::-;23563:11;23597:6;23592:3;23585:19;23637:4;23632:3;23628:14;23613:29;;23479:169;;;;:::o;23654:305::-;23694:3;23713:20;23731:1;23713:20;:::i;:::-;23708:25;;23747:20;23765:1;23747:20;:::i;:::-;23742:25;;23901:1;23833:66;23829:74;23826:1;23823:81;23820:107;;;23907:18;;:::i;:::-;23820:107;23951:1;23948;23944:9;23937:16;;23654:305;;;;:::o;23965:185::-;24005:1;24022:20;24040:1;24022:20;:::i;:::-;24017:25;;24056:20;24074:1;24056:20;:::i;:::-;24051:25;;24095:1;24085:35;;24100:18;;:::i;:::-;24085:35;24142:1;24139;24135:9;24130:14;;23965:185;;;;:::o;24156:848::-;24217:5;24224:4;24248:6;24239:15;;24272:5;24263:14;;24286:712;24307:1;24297:8;24294:15;24286:712;;;24402:4;24397:3;24393:14;24387:4;24384:24;24381:50;;;24411:18;;:::i;:::-;24381:50;24461:1;24451:8;24447:16;24444:451;;;24876:4;24869:5;24865:16;24856:25;;24444:451;24926:4;24920;24916:15;24908:23;;24956:32;24979:8;24956:32;:::i;:::-;24944:44;;24286:712;;;24156:848;;;;;;;:::o;25010:281::-;25068:5;25092:23;25110:4;25092:23;:::i;:::-;25084:31;;25136:25;25152:8;25136:25;:::i;:::-;25124:37;;25180:104;25217:66;25207:8;25201:4;25180:104;:::i;:::-;25171:113;;25010:281;;;;:::o;25297:1073::-;25351:5;25542:8;25532:40;;25563:1;25554:10;;25565:5;;25532:40;25591:4;25581:36;;25608:1;25599:10;;25610:5;;25581:36;25677:4;25725:1;25720:27;;;;25761:1;25756:191;;;;25670:277;;25720:27;25738:1;25729:10;;25740:5;;;25756:191;25801:3;25791:8;25788:17;25785:43;;;25808:18;;:::i;:::-;25785:43;25857:8;25854:1;25850:16;25841:25;;25892:3;25885:5;25882:14;25879:40;;;25899:18;;:::i;:::-;25879:40;25932:5;;;25670:277;;26056:2;26046:8;26043:16;26037:3;26031:4;26028:13;26024:36;26006:2;25996:8;25993:16;25988:2;25982:4;25979:12;25975:35;25959:111;25956:246;;;26112:8;26106:4;26102:19;26093:28;;26147:3;26140:5;26137:14;26134:40;;;26154:18;;:::i;:::-;26134:40;26187:5;;25956:246;26227:42;26265:3;26255:8;26249:4;26246:1;26227:42;:::i;:::-;26212:57;;;;26301:4;26296:3;26292:14;26285:5;26282:25;26279:51;;;26310:18;;:::i;:::-;26279:51;26359:4;26352:5;26348:16;26339:25;;25297:1073;;;;;;:::o;26376:348::-;26416:7;26439:20;26457:1;26439:20;:::i;:::-;26434:25;;26473:20;26491:1;26473:20;:::i;:::-;26468:25;;26661:1;26593:66;26589:74;26586:1;26583:81;26578:1;26571:9;26564:17;26560:105;26557:131;;;26668:18;;:::i;:::-;26557:131;26716:1;26713;26709:9;26698:20;;26376:348;;;;:::o;26730:191::-;26770:4;26790:20;26808:1;26790:20;:::i;:::-;26785:25;;26824:20;26842:1;26824:20;:::i;:::-;26819:25;;26863:1;26860;26857:8;26854:34;;;26868:18;;:::i;:::-;26854:34;26913:1;26910;26906:9;26898:17;;26730:191;;;;:::o;26927:96::-;26964:7;26993:24;27011:5;26993:24;:::i;:::-;26982:35;;26927:96;;;:::o;27029:104::-;27074:7;27103:24;27121:5;27103:24;:::i;:::-;27092:35;;27029:104;;;:::o;27139:90::-;27173:7;27216:5;27209:13;27202:21;27191:32;;27139:90;;;:::o;27235:126::-;27272:7;27312:42;27305:5;27301:54;27290:65;;27235:126;;;:::o;27367:77::-;27404:7;27433:5;27422:16;;27367:77;;;:::o;27450:86::-;27485:7;27525:4;27518:5;27514:16;27503:27;;27450:86;;;:::o;27542:152::-;27618:9;27651:37;27682:5;27651:37;:::i;:::-;27638:50;;27542:152;;;:::o;27700:121::-;27758:9;27791:24;27809:5;27791:24;:::i;:::-;27778:37;;27700:121;;;:::o;27827:126::-;27877:9;27910:37;27941:5;27910:37;:::i;:::-;27897:50;;27827:126;;;:::o;27959:113::-;28009:9;28042:24;28060:5;28042:24;:::i;:::-;28029:37;;27959:113;;;:::o;28078:307::-;28146:1;28156:113;28170:6;28167:1;28164:13;28156:113;;;28255:1;28250:3;28246:11;28240:18;28236:1;28231:3;28227:11;28220:39;28192:2;28189:1;28185:10;28180:15;;28156:113;;;28287:6;28284:1;28281:13;28278:101;;;28367:1;28358:6;28353:3;28349:16;28342:27;28278:101;28127:258;28078:307;;;:::o;28391:233::-;28430:3;28453:24;28471:5;28453:24;:::i;:::-;28444:33;;28499:66;28492:5;28489:77;28486:103;;;28569:18;;:::i;:::-;28486:103;28616:1;28609:5;28605:13;28598:20;;28391:233;;;:::o;28630:180::-;28678:77;28675:1;28668:88;28775:4;28772:1;28765:15;28799:4;28796:1;28789:15;28816:180;28864:77;28861:1;28854:88;28961:4;28958:1;28951:15;28985:4;28982:1;28975:15;29002:180;29050:77;29047:1;29040:88;29147:4;29144:1;29137:15;29171:4;29168:1;29161:15;29188:180;29236:77;29233:1;29226:88;29333:4;29330:1;29323:15;29357:4;29354:1;29347:15;29374:180;29422:77;29419:1;29412:88;29519:4;29516:1;29509:15;29543:4;29540:1;29533:15;29683:117;29792:1;29789;29782:12;29806:102;29847:6;29898:2;29894:7;29889:2;29882:5;29878:14;29874:28;29864:38;;29806:102;;;:::o;29914:::-;29956:8;30003:5;30000:1;29996:13;29975:34;;29914:102;;;:::o;30022:222::-;30162:34;30158:1;30150:6;30146:14;30139:58;30231:5;30226:2;30218:6;30214:15;30207:30;30022:222;:::o;30250:225::-;30390:34;30386:1;30378:6;30374:14;30367:58;30459:8;30454:2;30446:6;30442:15;30435:33;30250:225;:::o;30481:221::-;30621:34;30617:1;30609:6;30605:14;30598:58;30690:4;30685:2;30677:6;30673:15;30666:29;30481:221;:::o;30708:174::-;30848:26;30844:1;30836:6;30832:14;30825:50;30708:174;:::o;30888:180::-;31028:32;31024:1;31016:6;31012:14;31005:56;30888:180;:::o;31074:231::-;31214:34;31210:1;31202:6;31198:14;31191:58;31283:14;31278:2;31270:6;31266:15;31259:39;31074:231;:::o;31311:182::-;31451:34;31447:1;31439:6;31435:14;31428:58;31311:182;:::o;31499:228::-;31639:34;31635:1;31627:6;31623:14;31616:58;31708:11;31703:2;31695:6;31691:15;31684:36;31499:228;:::o;31733:176::-;31873:28;31869:1;31861:6;31857:14;31850:52;31733:176;:::o;31915:178::-;32055:30;32051:1;32043:6;32039:14;32032:54;31915:178;:::o;32099:224::-;32239:34;32235:1;32227:6;32223:14;32216:58;32308:7;32303:2;32295:6;32291:15;32284:32;32099:224;:::o;32329:163::-;32469:15;32465:1;32457:6;32453:14;32446:39;32329:163;:::o;32498:114::-;;:::o;32618:223::-;32758:34;32754:1;32746:6;32742:14;32735:58;32827:6;32822:2;32814:6;32810:15;32803:31;32618:223;:::o;32847:174::-;32987:26;32983:1;32975:6;32971:14;32964:50;32847:174;:::o;33027:172::-;33167:24;33163:1;33155:6;33151:14;33144:48;33027:172;:::o;33205:122::-;33278:24;33296:5;33278:24;:::i;:::-;33271:5;33268:35;33258:63;;33317:1;33314;33307:12;33258:63;33205:122;:::o;33333:116::-;33403:21;33418:5;33403:21;:::i;:::-;33396:5;33393:32;33383:60;;33439:1;33436;33429:12;33383:60;33333:116;:::o;33455:122::-;33528:24;33546:5;33528:24;:::i;:::-;33521:5;33518:35;33508:63;;33567:1;33564;33557:12;33508:63;33455:122;:::o

Swarm Source

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