Transactions
Token Transfers
Tokens
Internal Transactions
Coin Balance History
Logs
Code
Read Contract
Write Contract
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been partially verified via Sourcify.
View contract in Sourcify repository
- Contract name:
- RNG
- Optimization enabled
- false
- Compiler version
- v0.8.21+commit.d9974bed
- EVM Version
- shanghai
- Verified at
- 2024-06-06T02:30:11.757028Z
rng_flattened.sol
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @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 value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` 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 value) external returns (bool);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` amount of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
* ```
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.20;
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys a `value` amount of tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 value) public virtual {
_burn(_msgSender(), value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, deducting from
* the caller's allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `value`.
*/
function burnFrom(address account, uint256 value) public virtual {
_spendAllowance(account, _msgSender(), value);
_burn(account, value);
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
/**
* @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.
*
* The initial owner is set to the address provided by the deployer. 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;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @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 {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_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: addresses.sol
pragma solidity ^0.8.21;
address constant dead = address(0x000000000000000000000000000000000000dEaD);
address constant atropa = address(0x7a20189B297343CF26d8548764b04891f37F3414);
address constant trebizond = address(0x903030f7e2d6489F38B0f4F96F9b371ec7960F78);
address constant dai = address(0x6B175474E89094C44Da98b954EedeAC495271d0F);
address constant usdc = address(0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48);
address constant usdt = address(0xdAC17F958D2ee523a2206206994597C13D831ec7);
address constant AtropaContract = address(0xCc78A0acDF847A2C1714D2A925bB4477df5d48a6);
address constant EasternLightningContract = address(0xCD6159D0a1aaE415E0c1504E90A5d741A28afc98);
address constant FinalContract = address(0x50E72874dCd7C198d370ac27c7B3cce9f9a0defd);
address constant KaContract = address(0x83a918056aB9316837Dc48a216119D679D561d91);
address constant BuckinghamContract = address(0xe5d3A6e88590fc2A8037D9CCbd816C05B1ff5f11);
address constant WheelContract = address(0xb9A44De20f26a027e467CB6c2F98766F01904189);
address constant LibertyContract = address(0xFE9b99eCC43cb423408b975cc5ff439e5ABaCb61);
address constant CherokeeContract = address(0xb4C1248812dAbF72cb2e82175b4c0aCffE4D2b10);
address constant DreidelContract = address(0x8A03b032c5494219B212e5a74A49e2aa7F9d206F);
address constant MantissaContract = address(0x0EB4EE7d5Ff28cbF68565A174f7E5e186c36B4b3);
address constant NeptuneContract = address(0x9A3796Cf41B7CbA6921fd50c3f5204ED6506C3e7);
address constant HarContract = address(0x557F7e30aA6D909Cfe8a229A4CB178ab186EC622); // ʁ
address constant ThetaContract = address(0xCd19062a6d3019b02A676D72e51D8de7A398dE25); // Ө
address constant CROWSContract = address(0x203e366A1821570b2f84Ff5ae8B3BdeB48Dc4fa1);
address constant MonatsContract = address(0xf8AB3393b1f5CD6184Fb6800A1fC802043C4063e);
address constant LegalContract = address(0x0b1307dc5D90a0B60Be18D2634843343eBc098AF);
address constant ScissorsContract = address(0x1b8F9E19360D1dc94295D984b7Ca7eA9b810D9ee);
address constant ReadingContract = address(0xf69e9f943674027Cedf05564A8D5A01041d07c62); // পঁদাে়নুিং
address constant DiContract = address(0x347BC40503E0CE23fE0F5587F232Cd2D07D4Eb89); // 第作
address constant dOWNContract = address(0x2556F7f8d82EbcdD7b821b0981C38D9dA9439CdD);
address constant STAYContract = address(0x7674516ad438dd67A057fBc1119168d9A7d2a9B1);
address constant INDEPENDENCEContract = address(0x8B090509eAe0fEB4A0B934de1b4345161fA9a62d);
address constant LOLContract = address(0xA63F8061A67ecdbf147Cd1B60f91Cf95464E868D); // ލ
address constant Bullion5Contract = address(0x77Bed67181CeF592472bcb7F97736c560340E006);
address constant Bullion8Contract = address(0x2959221675bdF0e59D0cC3dE834a998FA5fFb9F4); // ⑧
address constant TreasuryBillContract = address(0x463413c579D29c26D59a65312657DFCe30D545A1);
address constant TeddyBearContract = address(0xd6c31bA0754C4383A41c0e9DF042C62b5e918f6d);
address constant PoppyContract = address(0xdE65090088Df0b2d80A5eC6A7B56ECE36ee83ce8);
address constant OjeonContract = address(0xFa4d9C6E012d946853386113ACbF166deC5465Bb);
address constant YuContract = address(0x52a4682880E990ebed5309764C7BD29c4aE22deB); // 유
address constant YingContract = address(0x271197EFe41073681577CdbBFD6Ee1DA259BAa3c); // 籯
address constant MetisContract = address(0x36d4Ac3DF7Bf8aa3843Ad40C8b3eB67e3d18b4e1); // ไมิติซส์
address constant GaiContract = address(0xd6077A029Fb5BEF33b02391D7f0349c345F6DDb1);
address constant DiscoContract = address(0xb6936B8e82626405f6E601D54a8292881D86b47D);
address constant HOSTContract = address(0x1162104a7b8766784153Dd2D6aC0eCEAecD28117);
address constant DampfContract = address(0x08Fe5c72173044314A74705089d014a4416Ed71D);
address constant DEIContract = address(0xF77c946C18A77B5DdA5e839dA9818C4D1f087393);
address constant TlingitContract = address(0x54D88F0c4a738247DadF160923E1b1C5dc4F510f);
address constant AbUrbeConditaContract = address(0x7FB09EE1a2c0E8b6D1c4E19C0248B3CbC0113af6);
address constant SIMContract = address(0xBb341FD5C855c206f5538cc649f90d84Df19b65a);
address constant BinContract = address(0xf520404CF4fa5B633626333775b05F5dF94E1a9C);
address constant PhDContract = address(0x6236073377AC7e0aB694957dA5d7d4241e72EBc6);
address constant LilliesContract = address(0xE949a217809d1Fab4018E22d6810500399951dAE);
address constant KremlinContract = address(0x7F51FdB20246D7a673036f11C743E99A4AF01de0);
address constant TwoContract = address(0xDf6A16689A893095C721542e5d3CE55bBcc23aC6); // ㉣
address constant TseContract = address(0x3d67511733d976800467119264C3d4Cd9FA23041);
address constant FrockContract = address(0x8B8b26bB6C5fD4867339ab2f0acf3aE5129BD2F0);
address constant QingDaoContract = address(0xE63191967735C52f5de78CE2471759a9963Ce118);
address constant TSFiContract = address(0x4243568Fa2bbad327ee36e06c16824cAd8B37819);
address constant GreenlandContract = address(0xdE4Ef7Ea464c7771803b9838AeA07cE41089b054);
address constant BuddhaghosaContract = address(0x840CBD20A70774BECAc4e932Fff6fb1f5417997F);
address constant ZuoContract = address(0x583d1C1427308f7f96BFd3E0d7A3F9674D8BF8ec);
address constant HegelBetContract = address(0x51C36aA04ffC2139F6d34436d0EDC7f5ffc6D6Fb);
address constant HahnarchContract = address(0x4a458D04909a42F79d31805762B2abc38ab9407d);
address constant RabContract = address(0x89E8cD6306AbbAB8e39eeD0D53566d8dC2E02c01);
address constant LoanContract = address(0xeE67825eF27588FAeE39cfefb465eB0A242A740c);
address constant FreebiesContract = address(0x48F628c079353ECC4DB75F0d05de9299e083f3C2);
address constant WMContract = address(0xA1BEe1daE9Af77dAC73aA0459eD63b4D93fC6d29);
address constant IRCContract = address(0xD64f26Bcf78df919D587b6743fcFf5b155815bd6);
address constant NoContract = address(0x1942Ba1EA7c21a070D70C4eFe64B21694283F23e);
address constant CallContract = address(0xD4FD96BA83d3E6FF1A0Baa44c32Def94e641D97c); // 𐌎
address constant TeddyBear9Contract = address(0x1f737F7994811fE994Fe72957C374e5cD5D5418A);
address constant BondContract = address(0x25d53961a27791B9D8b2d74FB3e937c8EAEadc38);
address constant BailContract = address(0x8B16115fF716b4c52706122cb4e974f7a72E5Af1);
address constant WritingContract = address(0x26D5906c4Cdf8C9F09CBd94049f99deaa874fB0b);
address constant SukukContract = address(0x72f96a39AC9408b5458E5597BBC22060552dedF4);
// address constant FAContract = address(0xF2be09EB43c1eD2791d0324BaA0649e62CdA4BBF);
address constant hhFaContract = address(0xa28e8aA4d6257157de64a547c90B38C3c540eF72);
address constant NoNukesContract = address(0x174A0ad99c60c20D9B3D94c3095BC1fb9ddEFd62);
address constant WenTiContract = address(0xA537d6F4c1c8F8C41f1004cc34C00e7Db40179Cc);
address constant TwoCentClubContract = address(0x6293373BF0DAE2050641973D49b7b2f71adC91a1);
address constant BFFContract = address(0xE35A842eb1EDca4C710B6c1B1565cE7df13f5996);
address constant SECURITYContract = address(0x2234da59c2D5EDB197594C95dbbA7a99Bcd91230);
//
address constant TRSIContract = address(0x51A7aaBcCa69B3c0F82b3b9ce5104FDe3efAecE6);
address constant BELContract = address(0x4C1518286E1b8D5669Fe965EF174B8B4Ae2f017B);
address constant KLANContract = address(0xC196247AA267Db0DF216d5385bCD23e5cf25EA6A);
address constant SMGContract = address(0xa8e8412d9B4341239269cBA38ad949fE4870be34);
address constant iCEContract = address(0x2fA079d2dAA29Ec8925484F9E9021e9191fE4aE4);
address constant PWAContract = address(0x5d4cb28eA61125a1fD3c927162C6F1969DD26788);
address constant LITContract = address(0xf5E3Cc8d22B10d967bE49FE103e496F449C8604E);
address constant RZRContract = address(0x50e40e8555AaB6b9c6CFF691E14070b6F38142Cb);
address constant FLTContract = address(0x86F0985Cd6Ab3196ea8DceBa87B92a2e22124633);
address constant GokuldhamContract = address(0x920401FDce49Fc70A2D4cD70DB0dD90212a97f98);
address constant KPOPContract = address(0x982B52a54916B899c60031772cc85b041613510E);
address constant CiAContract = address(0x2e5898b2e107a3cAf4f0597aCFE5D2e6d73F2196);
address constant ACiDContract = address(0xf8b6e89b851e03c724aad1F5170230A60490b819);
address constant MaltaContract = address(0xee62EE9A354E55dF7C39209B4304161369333fF7);
address constant ZzkContract = address(0xe2e1a5d691cCB9E88b84e23A1166B4e6Bd6904Dc);
address constant ACABContract = address(0x241DA2613b0A01C2f60acB636b21A8E082E2f2F0);
//
address constant BillBurrContract = address(0xF7ebb9bc80fb6395373c6BbDF690fcFfb217a691);
//
address constant BonusContract = address(0xB8FaCE58CB05C55BBBA9c564A550cc2402A40b5b);
///
address constant LEPROSYContract = address(0x7759A6D283192ef2BA082923d28Bec6eBfAf9D68);
// royalty tokens
/*
0xC6F085DE4f388a48ce2942857455147A37870086
0x80C105217885707BA0003ffAe7Ab01466E5E8488
0xF2563864C22022deb03ce929c26C54033a69E9d5
0xA78feD26D175b4B2c83F69Ca3eA195123ca30381
0xdF606c14351fd52bF502d5F60D105320CF5D99D5
0xa9353a16cA53a2009fEBF62029F8555216588Fea
0x7ec9043c321A8759Ee5F917Da943979EC70Cf8e3
*/
//
address constant PIContract = address(0xA2262D7728C689526693aE893D0fD8a352C7073C);
address constant G5Contract = address(0x2fc636E7fDF9f3E8d61033103052079781a6e7D2);
// File: atropamath.sol
pragma solidity ^0.8.21;
library atropaMath {
uint64 constant MotzkinPrime = 953467954114363;
struct bar {
address[] a;
}
function hashWith(address a, address b) public pure returns (uint256 hash) {
hash = 0;
uint160 _a = uint160(a);
uint160 _b = uint160(b) / 15;
unchecked {
while(hash == 0) {
hash = (_a**_b)%MotzkinPrime;
_b = _b/2;
}
}
//return modExp(uint256(uint160(a)), uint256(uint160(b)), MotzkinPrime);
}
function modExp64(uint64 _b, uint64 _e, uint64 _m) public returns(uint64 result) {
uint256 B = _b;
uint256 E = _e;
uint256 M = _m;
uint64 R = uint64(modExp(B, E, M) % 18446744073709551615);
return R;
}
function modExp(uint256 _b, uint256 _e, uint256 _m) public returns (uint256 result) {
assembly {
// Free memory pointer
let pointer := mload(0x40)
// Define length of base, exponent and modulus. 0x20 == 32 bytes
mstore(pointer, 0x20)
mstore(add(pointer, 0x20), 0x20)
mstore(add(pointer, 0x40), 0x20)
// Define variables base, exponent and modulus
mstore(add(pointer, 0x60), _b)
mstore(add(pointer, 0x80), _e)
mstore(add(pointer, 0xa0), _m)
// Store the result
let value := mload(0xc0)
// Call the precompiled contract 0x05 = bigModExp
if iszero(call(not(0), 0x05, 0, pointer, 0xc0, value, 0x20)) {
revert(0, 0)
}
result := mload(value)
}
}
}
// File: fa.sol
pragma solidity ^0.8.21;
library Conjecture {
struct Fa {
uint64 Base;
uint64 Secret;
uint64 Signal;
uint64 Channel;
uint64 Pole;
uint64 Identity;
uint64 Foundation;
uint64 Element;
uint64 Dynamo;
uint64 Manifold;
uint64 Ring;
uint64 Barn;
uint64 Coordinate;
uint64 Tau;
uint64 Eta;
uint64 Kappa;
// uint64 Rho;
// uint64 Beta;
// uint64 Phi;
uint64 Alpha;
uint8 Nu;
}
function New(uint64 base, uint64 secret, uint64 signal) public returns(Fa memory) {
Fa memory ee;
ee.Tau = 0;
Initialize(ee);
Seed(ee, base, secret, signal);
Tune(ee);
return ee;
}
function Initialize(Fa memory ee) internal pure {
ee.Base = ee.Secret = ee.Signal = ee.Channel = ee.Pole = 0;
ee.Identity = ee.Foundation = ee.Element = 0;
ee.Dynamo = 0;
ee.Manifold = 0;
ee.Ring = 0;
ee.Barn = ee.Ring;
ee.Eta = ee.Kappa = ee.Alpha = 0;
ee.Nu = 0;
ee.Coordinate = 0;
}
function Seed(Fa memory ee, uint64 base, uint64 secret, uint64 signal) internal pure {
ee.Base = base;
ee.Secret = secret;
ee.Signal = signal;
}
function Tune(Fa memory ee) internal {
ee.Channel = atropaMath.modExp64(ee.Base, ee.Signal, atropaMath.MotzkinPrime);
}
function Fuse(Fa memory ee, uint64 _rho, uint64 Upsilon, uint64 Ohm) internal pure {
ee.Base = Upsilon;
ee.Secret = Ohm;
ee.Signal = _rho;
}
function Avail(Fa memory ee, uint64 Xi) internal {
ee.Alpha = atropaMath.modExp64(Xi, ee.Secret, atropaMath.MotzkinPrime);
}
function Form(Fa memory ee, uint64 Chi) internal {
ee.Base = atropaMath.modExp64(Chi, ee.Secret, atropaMath.MotzkinPrime);
Tune(ee);
}
function Polarize(Fa memory ee) internal {
ee.Pole = atropaMath.modExp64(ee.Base, ee.Secret, atropaMath.MotzkinPrime);
}
function Conjugate(Fa memory ee, uint64 Chi) internal {
ee.Coordinate = atropaMath.modExp64(Chi, ee.Secret, atropaMath.MotzkinPrime);
// Chi = 0;
}
function Conify(Fa memory ee, uint64 _Beta) internal {
assert(ee.Nu == 0);
ee.Identity = _Beta;
ee.Foundation = atropaMath.modExp64(ee.Base, ee.Identity, atropaMath.MotzkinPrime);
ee.Nu = 1;
}
function Saturate(Fa memory ee, uint64 _Beta, uint64 Epsilon, uint64 Theta) internal returns(uint64 r) {
if(ee.Nu == 0) {
ee.Identity = _Beta;
ee.Foundation = atropaMath.modExp64(ee.Base, ee.Identity, atropaMath.MotzkinPrime);
}
assert(ee.Nu <= 1);
uint64 Beta = atropaMath.modExp64(Epsilon, ee.Identity, atropaMath.MotzkinPrime);
uint64 Rho = atropaMath.modExp64(Theta, ee.Identity, atropaMath.MotzkinPrime);
ee.Eta = atropaMath.modExp64(Epsilon, ee.Signal, atropaMath.MotzkinPrime);
uint64 Phi = Rho + ee.Eta;
ee.Element = Beta + Phi;
ee.Dynamo = atropaMath.modExp64(Theta, ee.Signal, atropaMath.MotzkinPrime);
ee.Manifold = ee.Element + ee.Dynamo;
return ee.Eta;
}
function Bond(Fa memory ee) internal {
ee.Dynamo = atropaMath.modExp64(ee.Base, ee.Signal, ee.Element);
ee.Pole = 0;
}
function Adduct(Fa memory ee, uint64 _Phi) internal {
ee.Manifold = atropaMath.modExp64(_Phi, ee.Signal, ee.Element);
}
function Open(Fa memory ee) internal {
ee.Ring = atropaMath.modExp64(ee.Coordinate, ee.Manifold, ee.Element);
ee.Barn = atropaMath.modExp64(ee.Ring, ee.Manifold, ee.Element);
}
event DysnomiaNuclearEvent(string What, uint64 Value);
function ManifoldCompare(Fa memory ee, Fa memory R) internal pure returns(bool) {
//emit DysnomiaNuclearEvent("Manifold Created", ee.Barn);
return(ee.Manifold == R.Manifold && ee.Ring == R.Ring && ee.Barn == R.Barn);
}
function Charge(Fa storage ee, uint64 Psi) internal {
ee.Alpha = atropaMath.modExp64(ee.Barn, Psi, ee.Ring);
//emit DysnomiaNuclearEvent("Alpha Charged", ee.Alpha);
}
function Induce(Fa storage ee, uint64 Sigma) internal {
ee.Alpha = atropaMath.modExp64(Sigma, ee.Manifold, ee.Ring);
//emit DysnomiaNuclearEvent("Alpha Induced", ee.Alpha);
}
function Torque(Fa storage ee, uint64 Sigma) internal {
ee.Alpha = atropaMath.modExp64(Sigma, ee.Element, ee.Channel);
//emit DysnomiaNuclearEvent("Alpha TORQUE", ee.Alpha);
}
function Amplify(Fa storage ee, uint64 Upsilon) internal {
Torque(ee, Upsilon);
}
function Sustain(Fa storage ee, uint64 Ohm) internal {
Torque(ee, Ohm);
}
function React(Fa storage ee, uint64 Pi, uint64 Theta) internal {
ee.Eta = atropaMath.modExp64(Pi, ee.Channel, Theta);
ee.Kappa = atropaMath.modExp64(Pi, Theta, ee.Channel);
assert(ee.Eta != 0 && ee.Kappa != 0);
//emit DysnomiaNuclearEvent(">>", ee.Eta);
//emit DysnomiaNuclearEvent("<<", ee.Kappa);
}
}
// File: faung.sol
pragma solidity ^0.8.21;
library Dynamic {
struct Faung {
Conjecture.Fa Rod;
Conjecture.Fa Cone;
uint64 Phi;
uint64 Eta;
uint64 Mu;
uint64 Xi;
uint64 Sigma;
uint64 Rho;
uint64 Upsilon;
uint64 Ohm;
uint64 Pi;
uint64 Omicron;
uint64 Omega;
uint8 Chi;
}
function New(Conjecture.Fa memory Rod, Conjecture.Fa memory Cone, uint64 Xi, uint64 Alpha, uint64 Beta) public returns(Faung memory) {
Faung memory I;
I.Rod = Rod;
I.Cone = Cone;
OpenManifolds(I, Xi, Alpha, Beta);
I.Xi = Xi;
I.Chi = 0;
return I;
}
function OpenManifolds(Faung memory I, uint64 Xi, uint64 Alpha, uint64 Beta) internal {
ConductorGenerate(I.Rod, I.Cone, Xi);
Conjecture.Conjugate(I.Rod, I.Cone.Pole);
Conjecture.Conjugate(I.Cone, I.Rod.Pole);
assert(I.Rod.Coordinate == I.Cone.Coordinate);
Conjecture.Conify(I.Cone, Alpha);
I.Eta = Conjecture.Saturate(I.Rod, Alpha, I.Cone.Foundation, I.Cone.Channel);
I.Mu = Conjecture.Saturate(I.Cone, Beta, I.Rod.Foundation, I.Rod.Channel);
assert(I.Rod.Element == I.Cone.Element);
Ratchet(I.Rod, I.Cone);
Conjecture.Adduct(I.Rod, I.Cone.Dynamo);
Conjecture.Adduct(I.Cone, I.Rod.Dynamo);
Conjecture.Open(I.Rod);
Conjecture.Open(I.Cone);
assert(Conjecture.ManifoldCompare(I.Rod, I.Cone));
}
function ConductorGenerate(Conjecture.Fa memory Rod, Conjecture.Fa memory Cone, uint64 Xi) internal {
Conjecture.Avail(Rod, Xi);
Conjecture.Avail(Cone, Xi);
Cone.Tau = Cone.Alpha;
Conjecture.Form(Rod, Cone.Tau);
Conjecture.Form(Cone, Rod.Alpha);
Conjecture.Polarize(Rod);
Conjecture.Polarize(Cone);
}
function Ratchet(Conjecture.Fa memory Rod, Conjecture.Fa memory Cone) internal {
Conjecture.Bond(Rod);
Conjecture.Bond(Cone);
}
function Charge(Faung storage I, uint64 Signal) internal {
assert(Signal != 0);
Conjecture.Charge(I.Cone, Signal);
I.Sigma = I.Cone.Alpha;
}
function Induce(Faung storage I) internal {
Conjecture.Induce(I.Rod, I.Sigma);
I.Rho = I.Rod.Alpha;
}
function Torque(Faung storage I) internal {
Conjecture.Torque(I.Cone, I.Rho);
I.Upsilon = I.Cone.Alpha;
}
function Amplify(Faung storage I) internal {
Conjecture.Amplify(I.Cone, I.Upsilon);
I.Ohm = I.Cone.Alpha;
}
function Sustain(Faung storage I) internal {
Conjecture.Sustain(I.Cone, I.Ohm);
I.Pi = I.Cone.Alpha;
}
function React(Faung storage I) internal {
Conjecture.React(I.Rod, I.Pi, I.Cone.Channel);
Conjecture.React(I.Cone, I.Pi, I.Rod.Channel);
I.Omicron = I.Cone.Kappa;
I.Omega = I.Rod.Kappa;
}
}
// File: rng.sol
pragma solidity ^0.8.21;
contract RNG is ERC20, ERC20Burnable, Ownable {
Dynamic.Faung private Mu;
ERC20 private DaiToken;
ERC20 private USDCToken;
ERC20 private USDTToken;
ERC20 private G5Token;
ERC20 private PIToken;
constructor() ERC20(/*name short=*/ unicode"Random Number Generator", /*symbol long=*/ unicode"RNG") Ownable(msg.sender) {
DaiToken = ERC20(dai);
USDCToken = ERC20(usdc);
USDTToken = ERC20(usdt);
G5Token = ERC20(G5Contract);
PIToken = ERC20(PIContract);
Conjecture.Fa memory Rod = Conjecture.New(605841066431434, 824993723223339, 543871960643842);
Conjecture.Fa memory Cone = Conjecture.New(605841066431434, 706190044965693, 187758195120264);
Mu = Dynamic.New(Rod, Cone, 314267673176633, 300042286926212, 658285068338874);
Dynamic.Charge(Mu, Mu.Rod.Signal);
assert(Mu.Sigma > 4);
Dynamic.Induce(Mu);
Dynamic.Torque(Mu);
Dynamic.Amplify(Mu);
Dynamic.Sustain(Mu);
Dynamic.React(Mu);
Conjecture.Torque(Mu.Rod, Mu.Upsilon);
Conjecture.Amplify(Mu.Rod, Mu.Rod.Alpha);
Conjecture.Sustain(Mu.Rod, Mu.Rod.Alpha);
Conjecture.React(Mu.Rod, Mu.Rod.Alpha, Mu.Cone.Dynamo);
Conjecture.React(Mu.Cone, Mu.Rod.Alpha, Mu.Rod.Dynamo);
Mu.Upsilon = Mu.Upsilon ^ Mu.Ohm;
Conjecture.Torque(Mu.Cone, Mu.Rod.Kappa);
Conjecture.Amplify(Mu.Cone, Mu.Cone.Alpha);
Conjecture.Sustain(Mu.Cone, Mu.Cone.Alpha);
Conjecture.React(Mu.Rod, Mu.Cone.Alpha, Mu.Rod.Channel);
Conjecture.React(Mu.Cone, Mu.Cone.Alpha, Mu.Cone.Channel);
Conjecture.Torque(Mu.Cone, Mu.Rod.Eta);
Mu.Upsilon = Mu.Cone.Alpha;
Conjecture.Amplify(Mu.Cone, Mu.Upsilon);
Mu.Ohm = Mu.Cone.Alpha;
Conjecture.Sustain(Mu.Cone, Mu.Ohm);
Mu.Pi = Mu.Cone.Alpha;
Conjecture.React(Mu.Cone, Mu.Pi, Mu.Cone.Dynamo);
Mu.Omicron = Mu.Cone.Kappa;
Conjecture.React(Mu.Rod, Mu.Pi, Mu.Rod.Dynamo);
Mu.Omega = Mu.Omega ^ Mu.Rod.Kappa;
Mu.Upsilon = Mu.Upsilon ^ Mu.Ohm ^ Mu.Pi;
_mint(address(this), 1 * 10 ** decimals());
}
function View() public view returns(Dynamic.Faung memory) {
return Mu;
}
function AvailableForPurchase() public view returns(uint256) {
return balanceOf(address(this)) / (10 ** decimals());
}
function BuyWithDAI(uint32 amount) public {
assert(balanceOf(address(this)) >= amount * 10 ** decimals());
bool success1 = DaiToken.transferFrom(msg.sender, address(this), amount * 10 ** DaiToken.decimals());
require(success1, unicode"Need Approved DAI");
transfer(msg.sender, amount * 10 ** decimals());
}
function BuyWithUSDC(uint32 amount) public {
assert(balanceOf(address(this)) >= amount * 10 ** decimals());
bool success1 = USDCToken.transferFrom(msg.sender, address(this), amount * 10 ** USDCToken.decimals());
require(success1, unicode"Need Approved USDC");
transfer(msg.sender, amount * 10 ** decimals());
}
function BuyWithUSDT(uint32 amount) public {
assert(balanceOf(address(this)) >= amount * 10 ** decimals());
bool success1 = USDTToken.transferFrom(msg.sender, address(this), amount * 10 ** USDCToken.decimals());
require(success1, unicode"Need Approved USDT");
transfer(msg.sender, amount * 10 ** decimals());
}
function BuyWithG5(uint32 amount) public {
assert(balanceOf(address(this)) >= amount * 10 ** decimals());
bool success1 = G5Token.transferFrom(msg.sender, address(this), (amount * 10 ** G5Token.decimals()) / 4);
require(success1, unicode"Need Approved Gimme5");
transfer(msg.sender, amount * 10 ** decimals());
}
function BuyWithPI(uint32 amount) public {
assert(balanceOf(address(this)) >= amount * 10 ** decimals());
bool success1 = PIToken.transferFrom(msg.sender, address(this), (amount * 10 ** PIToken.decimals() / 212));
require(success1, unicode"Need Approved pINDEPENDENCE");
transfer(msg.sender, amount * 10 ** decimals());
}
function Generate() public returns(uint64) {
Conjecture.Amplify(Mu.Cone, Mu.Upsilon);
Mu.Ohm = Mu.Cone.Alpha;
Conjecture.Sustain(Mu.Cone, Mu.Ohm);
Mu.Pi = Mu.Cone.Alpha;
Conjecture.React(Mu.Cone, Mu.Pi, Mu.Cone.Dynamo);
Mu.Omicron = Mu.Cone.Kappa;
Conjecture.React(Mu.Rod, Mu.Pi, Mu.Rod.Dynamo);
Mu.Omega = Mu.Omega ^ Mu.Rod.Kappa;
Mu.Upsilon = Mu.Upsilon ^ Mu.Ohm ^ Mu.Pi;
if(totalSupply() <= (1111111111 * 10 ** decimals()))
_mint(address(this), 1 * 10 ** decimals());
return Mu.Upsilon;
}
}
Compiler Settings
{"remappings":[],"optimizer":{"runs":200,"enabled":false},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"shanghai","compilationTarget":{"rng_flattened.sol":"RNG"}}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"error","name":"ERC20InsufficientAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"allowance","internalType":"uint256"},{"type":"uint256","name":"needed","internalType":"uint256"}]},{"type":"error","name":"ERC20InsufficientBalance","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"uint256","name":"balance","internalType":"uint256"},{"type":"uint256","name":"needed","internalType":"uint256"}]},{"type":"error","name":"ERC20InvalidApprover","inputs":[{"type":"address","name":"approver","internalType":"address"}]},{"type":"error","name":"ERC20InvalidReceiver","inputs":[{"type":"address","name":"receiver","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSender","inputs":[{"type":"address","name":"sender","internalType":"address"}]},{"type":"error","name":"ERC20InvalidSpender","inputs":[{"type":"address","name":"spender","internalType":"address"}]},{"type":"error","name":"OwnableInvalidOwner","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"error","name":"OwnableUnauthorizedAccount","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"AvailableForPurchase","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"BuyWithDAI","inputs":[{"type":"uint32","name":"amount","internalType":"uint32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"BuyWithG5","inputs":[{"type":"uint32","name":"amount","internalType":"uint32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"BuyWithPI","inputs":[{"type":"uint32","name":"amount","internalType":"uint32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"BuyWithUSDC","inputs":[{"type":"uint32","name":"amount","internalType":"uint32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"BuyWithUSDT","inputs":[{"type":"uint32","name":"amount","internalType":"uint32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"uint64","name":"","internalType":"uint64"}],"name":"Generate","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"tuple","name":"","internalType":"struct Dynamic.Faung","components":[{"type":"tuple","name":"Rod","internalType":"struct Conjecture.Fa","components":[{"type":"uint64","name":"Base","internalType":"uint64"},{"type":"uint64","name":"Secret","internalType":"uint64"},{"type":"uint64","name":"Signal","internalType":"uint64"},{"type":"uint64","name":"Channel","internalType":"uint64"},{"type":"uint64","name":"Pole","internalType":"uint64"},{"type":"uint64","name":"Identity","internalType":"uint64"},{"type":"uint64","name":"Foundation","internalType":"uint64"},{"type":"uint64","name":"Element","internalType":"uint64"},{"type":"uint64","name":"Dynamo","internalType":"uint64"},{"type":"uint64","name":"Manifold","internalType":"uint64"},{"type":"uint64","name":"Ring","internalType":"uint64"},{"type":"uint64","name":"Barn","internalType":"uint64"},{"type":"uint64","name":"Coordinate","internalType":"uint64"},{"type":"uint64","name":"Tau","internalType":"uint64"},{"type":"uint64","name":"Eta","internalType":"uint64"},{"type":"uint64","name":"Kappa","internalType":"uint64"},{"type":"uint64","name":"Alpha","internalType":"uint64"},{"type":"uint8","name":"Nu","internalType":"uint8"}]},{"type":"tuple","name":"Cone","internalType":"struct Conjecture.Fa","components":[{"type":"uint64","name":"Base","internalType":"uint64"},{"type":"uint64","name":"Secret","internalType":"uint64"},{"type":"uint64","name":"Signal","internalType":"uint64"},{"type":"uint64","name":"Channel","internalType":"uint64"},{"type":"uint64","name":"Pole","internalType":"uint64"},{"type":"uint64","name":"Identity","internalType":"uint64"},{"type":"uint64","name":"Foundation","internalType":"uint64"},{"type":"uint64","name":"Element","internalType":"uint64"},{"type":"uint64","name":"Dynamo","internalType":"uint64"},{"type":"uint64","name":"Manifold","internalType":"uint64"},{"type":"uint64","name":"Ring","internalType":"uint64"},{"type":"uint64","name":"Barn","internalType":"uint64"},{"type":"uint64","name":"Coordinate","internalType":"uint64"},{"type":"uint64","name":"Tau","internalType":"uint64"},{"type":"uint64","name":"Eta","internalType":"uint64"},{"type":"uint64","name":"Kappa","internalType":"uint64"},{"type":"uint64","name":"Alpha","internalType":"uint64"},{"type":"uint8","name":"Nu","internalType":"uint8"}]},{"type":"uint64","name":"Phi","internalType":"uint64"},{"type":"uint64","name":"Eta","internalType":"uint64"},{"type":"uint64","name":"Mu","internalType":"uint64"},{"type":"uint64","name":"Xi","internalType":"uint64"},{"type":"uint64","name":"Sigma","internalType":"uint64"},{"type":"uint64","name":"Rho","internalType":"uint64"},{"type":"uint64","name":"Upsilon","internalType":"uint64"},{"type":"uint64","name":"Ohm","internalType":"uint64"},{"type":"uint64","name":"Pi","internalType":"uint64"},{"type":"uint64","name":"Omicron","internalType":"uint64"},{"type":"uint64","name":"Omega","internalType":"uint64"},{"type":"uint8","name":"Chi","internalType":"uint8"}]}],"name":"View","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
Contract Creation Code
0x608060405234801562000010575f80fd5b50336040518060400160405280601781526020017f52616e646f6d204e756d6265722047656e657261746f720000000000000000008152506040518060400160405280600381526020017f524e47000000000000000000000000000000000000000000000000000000000081525081600390816200008f919062002208565b508060049081620000a1919062002208565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000117575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200010e91906200232f565b60405180910390fd5b62000128816200141e60201b60201c565b50736b175474e89094c44da98b954eedeac495271d0f60135f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4860145f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dac17f958d2ee523a2206206994597c13d831ec760155f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732fc636e7fdf9f3e8d61033103052079781a6e7d260165f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a2262d7728c689526693ae893d0fd8a352c7073c60175f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73c6824f72ec5548221b71abdedf99f55df6646f886339d431c3660227025d8e13ca6602ee53d1d08d2b6601eea60f0479026040518463ffffffff1660e01b8152600401620003209392919062002420565b61024060405180830381865af41580156200033d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000363919062002706565b90505f73c6824f72ec5548221b71abdedf99f55df6646f886339d431c3660227025d8e13ca66028246aec62b3d65aac3dc8618886040518463ffffffff1660e01b8152600401620003b793929190620027b9565b61024060405180830381865af4158015620003d4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003fa919062002706565b905073c67db6c6a442b0e29f318d6c771da2f59a8a824f63332d3901838366011dd325062a39660110e309ee0984660256b4efa8c6ba6040518663ffffffff1660e01b81526004016200045295949392919062002a6f565b61060060405180830381865af41580156200046f573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000495919062002c42565b60065f820151815f015f820151815f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506020820151815f0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506040820151815f0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506060820151815f0160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506080820151816001015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060a08201518160010160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060c08201518160010160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060e08201518160010160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550610100820151816002015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506101208201518160020160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506101408201518160020160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506101608201518160020160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550610180820151816003015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506101a08201518160030160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506101c08201518160030160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506101e08201518160030160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550610200820151816004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506102208201518160040160086101000a81548160ff021916908360ff16021790555050506020820151816005015f820151815f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506020820151815f0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506040820151815f0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506060820151815f0160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506080820151816001015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060a08201518160010160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060c08201518160010160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060e08201518160010160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550610100820151816002015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506101208201518160020160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506101408201518160020160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506101608201518160020160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550610180820151816003015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506101a08201518160030160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506101c08201518160030160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506101e08201518160030160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550610200820151816004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506102208201518160040160086101000a81548160ff021916908360ff1602179055505050604082015181600a015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550606082015181600a0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550608082015181600a0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060a082015181600a0160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060c082015181600b015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060e082015181600b0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555061010082015181600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555061012082015181600b0160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555061014082015181600c015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555061016082015181600c0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555061018082015181600c0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506101a082015181600c0160186101000a81548160ff021916908360ff16021790555090505062000d836006805f015f0160109054906101000a900467ffffffffffffffff16620014e160201b60201c565b60046006600b015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff161162000db95762000db862002c73565b5b62000dcb60066200155b60201b60201c565b62000ddd6006620015cd60201b60201c565b62000def60066200164260201b60201c565b62000e016006620016b760201b60201c565b62000e1360066200172b60201b60201c565b62000e4160065f016006600b0160109054906101000a900467ffffffffffffffff166200184560201b60201c565b62000e7060065f0160065f016004015f9054906101000a900467ffffffffffffffff166200192060201b60201c565b62000e9f60065f0160065f016004015f9054906101000a900467ffffffffffffffff166200193660201b60201c565b62000eea60065f0160065f016004015f9054906101000a900467ffffffffffffffff1660066005016002015f9054906101000a900467ffffffffffffffff166200194c60201b60201c565b62000f35600660050160065f016004015f9054906101000a900467ffffffffffffffff1660065f016002015f9054906101000a900467ffffffffffffffff166200194c60201b60201c565b6006600b0160189054906101000a900467ffffffffffffffff166006600b0160109054906101000a900467ffffffffffffffff16186006600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555062000fc6600660050160065f0160030160189054906101000a900467ffffffffffffffff166200184560201b60201c565b62000ff7600660050160066005016004015f9054906101000a900467ffffffffffffffff166200192060201b60201c565b62001028600660050160066005016004015f9054906101000a900467ffffffffffffffff166200193660201b60201c565b6200107360065f0160066005016004015f9054906101000a900467ffffffffffffffff1660065f015f0160189054906101000a900467ffffffffffffffff166200194c60201b60201c565b620010c0600660050160066005016004015f9054906101000a900467ffffffffffffffff1660066005015f0160189054906101000a900467ffffffffffffffff166200194c60201b60201c565b620010f1600660050160065f0160030160109054906101000a900467ffffffffffffffff166200184560201b60201c565b60066005016004015f9054906101000a900467ffffffffffffffff166006600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506200116760066005016006600b0160109054906101000a900467ffffffffffffffff166200192060201b60201c565b60066005016004015f9054906101000a900467ffffffffffffffff166006600b0160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550620011dd60066005016006600b0160189054906101000a900467ffffffffffffffff166200193660201b60201c565b60066005016004015f9054906101000a900467ffffffffffffffff166006600c015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506200126d60066005016006600c015f9054906101000a900467ffffffffffffffff1660066005016002015f9054906101000a900467ffffffffffffffff166200194c60201b60201c565b600660050160030160189054906101000a900467ffffffffffffffff166006600c0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550620012fd60065f016006600c015f9054906101000a900467ffffffffffffffff1660065f016002015f9054906101000a900467ffffffffffffffff166200194c60201b60201c565b60065f0160030160189054906101000a900467ffffffffffffffff166006600c0160109054906101000a900467ffffffffffffffff16186006600c0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506006600c015f9054906101000a900467ffffffffffffffff166006600b0160189054906101000a900467ffffffffffffffff166006600b0160109054906101000a900467ffffffffffffffff1618186006600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506200141630620013ee62001b3660201b60201c565b600a620013fc919062002e1d565b60016200140a919062002e6d565b62001b3e60201b60201c565b505062002fd4565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8167ffffffffffffffff1603620014fe57620014fd62002c73565b5b62001513826005018262001bc860201b60201c565b816005016004015f9054906101000a900467ffffffffffffffff1682600b015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b62001586815f0182600b015f9054906101000a900467ffffffffffffffff1662001ca460201b60201c565b805f016004015f9054906101000a900467ffffffffffffffff1681600b0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b620015fa8160050182600b0160089054906101000a900467ffffffffffffffff166200184560201b60201c565b806005016004015f9054906101000a900467ffffffffffffffff1681600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b6200166f8160050182600b0160109054906101000a900467ffffffffffffffff166200192060201b60201c565b806005016004015f9054906101000a900467ffffffffffffffff1681600b0160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b620016e48160050182600b0160189054906101000a900467ffffffffffffffff166200193660201b60201c565b806005016004015f9054906101000a900467ffffffffffffffff1681600c015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b62001771815f0182600c015f9054906101000a900467ffffffffffffffff16836005015f0160189054906101000a900467ffffffffffffffff166200194c60201b60201c565b620017b78160050182600c015f9054906101000a900467ffffffffffffffff16835f015f0160189054906101000a900467ffffffffffffffff166200194c60201b60201c565b8060050160030160189054906101000a900467ffffffffffffffff1681600c0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550805f0160030160189054906101000a900467ffffffffffffffff1681600c0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555050565b73752c3d7dfc54417eab7be7404beef8d8e087efa46353df6e35828460010160189054906101000a900467ffffffffffffffff16855f0160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b8152600401620018b19392919062002ec8565b602060405180830381865af4158015620018cd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620018f3919062002f03565b826004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6200193282826200184560201b60201c565b5050565b6200194882826200184560201b60201c565b5050565b73752c3d7dfc54417eab7be7404beef8d8e087efa46353df6e3583855f0160189054906101000a900467ffffffffffffffff16846040518463ffffffff1660e01b8152600401620019a09392919062002ec8565b602060405180830381865af4158015620019bc573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620019e2919062002f03565b8360030160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555073752c3d7dfc54417eab7be7404beef8d8e087efa46353df6e358383865f0160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040162001a609392919062002ec8565b602060405180830381865af415801562001a7c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062001aa2919062002f03565b8360030160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8360030160109054906101000a900467ffffffffffffffff1667ffffffffffffffff161415801562001b2157505f8360030160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1614155b62001b315762001b3062002c73565b5b505050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001bb1575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162001ba891906200232f565b60405180910390fd5b62001bc45f838362001d8060201b60201c565b5050565b73752c3d7dfc54417eab7be7404beef8d8e087efa46353df6e358360020160189054906101000a900467ffffffffffffffff16838560020160109054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040162001c359392919062002ec8565b602060405180830381865af415801562001c51573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062001c77919062002f03565b826004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b73752c3d7dfc54417eab7be7404beef8d8e087efa46353df6e35828460020160089054906101000a900467ffffffffffffffff168560020160109054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040162001d119392919062002ec8565b602060405180830381865af415801562001d2d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062001d53919062002f03565b826004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362001dd4578060025f82825462001dc7919062002f33565b9250508190555062001ea5565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562001e60578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162001e579392919062002f7e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362001eee578060025f828254039250508190555062001f38565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162001f97919062002fb9565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200202057607f821691505b60208210810362002036576200203562001fdb565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200209a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200205d565b620020a686836200205d565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620020f0620020ea620020e484620020be565b620020c7565b620020be565b9050919050565b5f819050919050565b6200210b83620020d0565b620021236200211a82620020f7565b84845462002069565b825550505050565b5f90565b620021396200212b565b6200214681848462002100565b505050565b5b818110156200216d57620021615f826200212f565b6001810190506200214c565b5050565b601f821115620021bc5762002186816200203c565b62002191846200204e565b81016020851015620021a1578190505b620021b9620021b0856200204e565b8301826200214b565b50505b505050565b5f82821c905092915050565b5f620021de5f1984600802620021c1565b1980831691505092915050565b5f620021f88383620021cd565b9150826002028217905092915050565b620022138262001fa4565b67ffffffffffffffff8111156200222f576200222e62001fae565b5b6200223b825462002008565b6200224882828562002171565b5f60209050601f8311600181146200227e575f841562002269578287015190505b620022758582620021eb565b865550620022e4565b601f1984166200228e866200203c565b5f5b82811015620022b75784890151825560018201915060208501945060208101905062002290565b86831015620022d75784890151620022d3601f891682620021cd565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200231782620022ec565b9050919050565b62002329816200230b565b82525050565b5f602082019050620023445f8301846200231e565b92915050565b5f819050919050565b5f67ffffffffffffffff82169050919050565b5f62002386620023806200237a846200234a565b620020c7565b62002353565b9050919050565b620023988162002366565b82525050565b5f819050919050565b5f620023c7620023c1620023bb846200239e565b620020c7565b62002353565b9050919050565b620023d981620023a7565b82525050565b5f819050919050565b5f6200240862002402620023fc84620023df565b620020c7565b62002353565b9050919050565b6200241a81620023e8565b82525050565b5f606082019050620024355f8301866200238d565b620024446020830185620023ce565b6200245360408301846200240f565b949350505050565b5f604051905090565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b62002487826200246c565b810181811067ffffffffffffffff82111715620024a957620024a862001fae565b5b80604052505050565b5f620024bd6200245b565b9050620024cb82826200247c565b919050565b620024db8162002353565b8114620024e6575f80fd5b50565b5f81519050620024f981620024d0565b92915050565b5f60ff82169050919050565b6200251681620024ff565b811462002521575f80fd5b50565b5f8151905062002534816200250b565b92915050565b5f610240828403121562002553576200255262002468565b5b62002560610240620024b2565b90505f6200257184828501620024e9565b5f8301525060206200258684828501620024e9565b60208301525060406200259c84828501620024e9565b6040830152506060620025b284828501620024e9565b6060830152506080620025c884828501620024e9565b60808301525060a0620025de84828501620024e9565b60a08301525060c0620025f484828501620024e9565b60c08301525060e06200260a84828501620024e9565b60e0830152506101006200262184828501620024e9565b610100830152506101206200263984828501620024e9565b610120830152506101406200265184828501620024e9565b610140830152506101606200266984828501620024e9565b610160830152506101806200268184828501620024e9565b610180830152506101a06200269984828501620024e9565b6101a0830152506101c0620026b184828501620024e9565b6101c0830152506101e0620026c984828501620024e9565b6101e083015250610200620026e184828501620024e9565b61020083015250610220620026f98482850162002524565b6102208301525092915050565b5f61024082840312156200271f576200271e62002464565b5b5f6200272e848285016200253a565b91505092915050565b5f819050919050565b5f620027606200275a620027548462002737565b620020c7565b62002353565b9050919050565b620027728162002740565b82525050565b5f819050919050565b5f620027a16200279b620027958462002778565b620020c7565b62002353565b9050919050565b620027b38162002781565b82525050565b5f606082019050620027ce5f8301866200238d565b620027dd602083018562002767565b620027ec6040830184620027a8565b949350505050565b620027ff8162002353565b82525050565b6200281081620024ff565b82525050565b61024082015f8201516200282d5f850182620027f4565b506020820151620028426020850182620027f4565b506040820151620028576040850182620027f4565b5060608201516200286c6060850182620027f4565b506080820151620028816080850182620027f4565b5060a08201516200289660a0850182620027f4565b5060c0820151620028ab60c0850182620027f4565b5060e0820151620028c060e0850182620027f4565b50610100820151620028d7610100850182620027f4565b50610120820151620028ee610120850182620027f4565b5061014082015162002905610140850182620027f4565b506101608201516200291c610160850182620027f4565b5061018082015162002933610180850182620027f4565b506101a08201516200294a6101a0850182620027f4565b506101c0820151620029616101c0850182620027f4565b506101e0820151620029786101e0850182620027f4565b506102008201516200298f610200850182620027f4565b50610220820151620029a661022085018262002805565b50505050565b5f819050919050565b5f620029d5620029cf620029c984620029ac565b620020c7565b62002353565b9050919050565b620029e781620029b5565b82525050565b5f819050919050565b5f62002a1662002a1062002a0a84620029ed565b620020c7565b62002353565b9050919050565b62002a2881620029f6565b82525050565b5f819050919050565b5f62002a5762002a5162002a4b8462002a2e565b620020c7565b62002353565b9050919050565b62002a698162002a37565b82525050565b5f6104e08201905062002a855f83018862002816565b62002a9561024083018762002816565b62002aa5610480830186620029dc565b62002ab56104a083018562002a1d565b62002ac56104c083018462002a5e565b9695505050505050565b5f610600828403121562002ae85762002ae762002468565b5b62002af56101c0620024b2565b90505f62002b06848285016200253a565b5f8301525061024062002b1c848285016200253a565b60208301525061048062002b3384828501620024e9565b6040830152506104a062002b4a84828501620024e9565b6060830152506104c062002b6184828501620024e9565b6080830152506104e062002b7884828501620024e9565b60a08301525061050062002b8f84828501620024e9565b60c08301525061052062002ba684828501620024e9565b60e08301525061054062002bbd84828501620024e9565b6101008301525061056062002bd584828501620024e9565b6101208301525061058062002bed84828501620024e9565b610140830152506105a062002c0584828501620024e9565b610160830152506105c062002c1d84828501620024e9565b610180830152506105e062002c358482850162002524565b6101a08301525092915050565b5f610600828403121562002c5b5762002c5a62002464565b5b5f62002c6a8482850162002acf565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52600160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562002d2a5780860481111562002d025762002d0162002ca0565b5b600185161562002d125780820291505b808102905062002d228562002ccd565b945062002ce2565b94509492505050565b5f8262002d44576001905062002e16565b8162002d53575f905062002e16565b816001811462002d6c576002811462002d775762002dad565b600191505062002e16565b60ff84111562002d8c5762002d8b62002ca0565b5b8360020a91508482111562002da65762002da562002ca0565b5b5062002e16565b5060208310610133831016604e8410600b841016171562002de75782820a90508381111562002de15762002de062002ca0565b5b62002e16565b62002df6848484600162002cd9565b9250905081840481111562002e105762002e0f62002ca0565b5b81810290505b9392505050565b5f62002e2982620020be565b915062002e3683620024ff565b925062002e657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462002d33565b905092915050565b5f62002e7982620020be565b915062002e8683620020be565b925082820262002e9681620020be565b9150828204841483151762002eb05762002eaf62002ca0565b5b5092915050565b62002ec28162002353565b82525050565b5f60608201905062002edd5f83018662002eb7565b62002eec602083018562002eb7565b62002efb604083018462002eb7565b949350505050565b5f6020828403121562002f1b5762002f1a62002464565b5b5f62002f2a84828501620024e9565b91505092915050565b5f62002f3f82620020be565b915062002f4c83620020be565b925082820190508082111562002f675762002f6662002ca0565b5b92915050565b62002f7881620020be565b82525050565b5f60608201905062002f935f8301866200231e565b62002fa2602083018562002f6d565b62002fb1604083018462002f6d565b949350505050565b5f60208201905062002fce5f83018462002f6d565b92915050565b6137ef8062002fe25f395ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c806382bf4c54116100b6578063a5d16c291161007a578063a5d16c291461033c578063a9059cbb14610358578063d805b65014610388578063dd62ed3e146103a6578063f2fde38b146103d6578063fd2d8083146103f257610140565b806382bf4c54146102aa5780638da5cb5b146102c8578063919f5311146102e657806395d89b41146103025780639f7574b51461032057610140565b8063313ce56711610108578063313ce567146101fe57806342966c681461021c57806370a0823114610238578063715018a61461026857806379cc6790146102725780637d1f22ba1461028e57610140565b806306fdde0314610144578063095ea7b3146101625780631686f2651461019257806318160ddd146101b057806323b872dd146101ce575b5f80fd5b61014c61040e565b6040516101599190612b0b565b60405180910390f35b61017c60048036038101906101779190612bbc565b61049e565b6040516101899190612c14565b60405180910390f35b61019a6104c0565b6040516101a79190612f01565b60405180910390f35b6101b8610e10565b6040516101c59190612f2a565b60405180910390f35b6101e860048036038101906101e39190612f43565b610e19565b6040516101f59190612c14565b60405180910390f35b610206610e47565b6040516102139190612fa2565b60405180910390f35b61023660048036038101906102319190612fbb565b610e4f565b005b610252600480360381019061024d9190612fe6565b610e63565b60405161025f9190612f2a565b60405180910390f35b610270610ea8565b005b61028c60048036038101906102879190612bbc565b610ebb565b005b6102a860048036038101906102a3919061304a565b610edb565b005b6102b26110d6565b6040516102bf9190612f2a565b60405180910390f35b6102d0611103565b6040516102dd9190613084565b60405180910390f35b61030060048036038101906102fb919061304a565b61112b565b005b61030a611332565b6040516103179190612b0b565b60405180910390f35b61033a6004803603810190610335919061304a565b6113c2565b005b6103566004803603810190610351919061304a565b6115bd565b005b610372600480360381019061036d9190612bbc565b6117b8565b60405161037f9190612c14565b60405180910390f35b6103906117da565b60405161039d91906130ac565b60405180910390f35b6103c060048036038101906103bb91906130c5565b611ad5565b6040516103cd9190612f2a565b60405180910390f35b6103f060048036038101906103eb9190612fe6565b611b57565b005b61040c6004803603810190610407919061304a565b611bdb565b005b60606003805461041d90613130565b80601f016020809104026020016040519081016040528092919081815260200182805461044990613130565b80156104945780601f1061046b57610100808354040283529160200191610494565b820191905f5260205f20905b81548152906001019060200180831161047757829003601f168201915b5050505050905090565b5f806104a8611de2565b90506104b5818585611de9565b600191505092915050565b6104c861287b565b6006604051806101c00160405290815f8201604051806102400160405290815f82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600182015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600282015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600382015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600482015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016004820160089054906101000a900460ff1660ff1660ff1681525050815260200160058201604051806102400160405290815f82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600182015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600282015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600382015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600482015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016004820160089054906101000a900460ff1660ff1660ff16815250508152602001600a82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600a820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600a820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600a820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c820160189054906101000a900460ff1660ff1660ff1681525050905090565b5f600254905090565b5f80610e23611de2565b9050610e30858285611dfb565b610e3b858585611e8d565b60019150509392505050565b5f6012905090565b610e60610e5a611de2565b82611f7d565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610eb0611ffc565b610eb95f612083565b565b610ecd82610ec7611de2565b83611dfb565b610ed78282611f7d565b5050565b610ee3610e47565b600a610eef91906132bc565b8163ffffffff16610f009190613306565b610f0930610e63565b1015610f1857610f17613347565b5b5f60135f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd333060135f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fe6919061339e565b600a610ff291906132bc565b8663ffffffff166110039190613306565b6040518463ffffffff1660e01b8152600401611021939291906133c9565b6020604051808303815f875af115801561103d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110619190613428565b9050806110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a9061349d565b60405180910390fd5b6110d1336110af610e47565b600a6110bb91906132bc565b8463ffffffff166110cc9190613306565b6117b8565b505050565b5f6110df610e47565b600a6110eb91906132bc565b6110f430610e63565b6110fe91906134e8565b905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611133610e47565b600a61113f91906132bc565b8163ffffffff166111509190613306565b61115930610e63565b101561116857611167613347565b5b5f60165f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600460165f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611214573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611238919061339e565b600a61124491906132bc565b8763ffffffff166112559190613306565b61125f91906134e8565b6040518463ffffffff1660e01b815260040161127d939291906133c9565b6020604051808303815f875af1158015611299573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112bd9190613428565b9050806112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690613562565b60405180910390fd5b61132d3361130b610e47565b600a61131791906132bc565b8463ffffffff166113289190613306565b6117b8565b505050565b60606004805461134190613130565b80601f016020809104026020016040519081016040528092919081815260200182805461136d90613130565b80156113b85780601f1061138f576101008083540402835291602001916113b8565b820191905f5260205f20905b81548152906001019060200180831161139b57829003601f168201915b5050505050905090565b6113ca610e47565b600a6113d691906132bc565b8163ffffffff166113e79190613306565b6113f030610e63565b10156113ff576113fe613347565b5b5f60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd333060145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114cd919061339e565b600a6114d991906132bc565b8663ffffffff166114ea9190613306565b6040518463ffffffff1660e01b8152600401611508939291906133c9565b6020604051808303815f875af1158015611524573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115489190613428565b90508061158a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611581906135ca565b60405180910390fd5b6115b833611596610e47565b600a6115a291906132bc565b8463ffffffff166115b39190613306565b6117b8565b505050565b6115c5610e47565b600a6115d191906132bc565b8163ffffffff166115e29190613306565b6115eb30610e63565b10156115fa576115f9613347565b5b5f60145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd333060145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116c8919061339e565b600a6116d491906132bc565b8663ffffffff166116e59190613306565b6040518463ffffffff1660e01b8152600401611703939291906133c9565b6020604051808303815f875af115801561171f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117439190613428565b905080611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90613632565b60405180910390fd5b6117b333611791610e47565b600a61179d91906132bc565b8463ffffffff166117ae9190613306565b6117b8565b505050565b5f806117c2611de2565b90506117cf818585611e8d565b600191505092915050565b5f61180260066005016006600b0160109054906101000a900467ffffffffffffffff16612146565b60066005016004015f9054906101000a900467ffffffffffffffff166006600b0160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555061187060066005016006600b0160189054906101000a900467ffffffffffffffff16612154565b60066005016004015f9054906101000a900467ffffffffffffffff166006600c015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506118f860066005016006600c015f9054906101000a900467ffffffffffffffff1660066005016002015f9054906101000a900467ffffffffffffffff16612162565b600660050160030160189054906101000a900467ffffffffffffffff166006600c0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555061198060065f016006600c015f9054906101000a900467ffffffffffffffff1660065f016002015f9054906101000a900467ffffffffffffffff16612162565b60065f0160030160189054906101000a900467ffffffffffffffff166006600c0160109054906101000a900467ffffffffffffffff16186006600c0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506006600c015f9054906101000a900467ffffffffffffffff166006600b0160189054906101000a900467ffffffffffffffff166006600b0160109054906101000a900467ffffffffffffffff1618186006600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550611a64610e47565b600a611a7091906132bc565b63423a35c7611a7f9190613306565b611a87610e10565b11611ab657611ab530611a98610e47565b600a611aa491906132bc565b6001611ab09190613306565b61233e565b5b6006600b0160109054906101000a900467ffffffffffffffff16905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611b5f611ffc565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bcf575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611bc69190613084565b60405180910390fd5b611bd881612083565b50565b611be3610e47565b600a611bef91906132bc565b8163ffffffff16611c009190613306565b611c0930610e63565b1015611c1857611c17613347565b5b5f60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd333060d460175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ce8919061339e565b600a611cf491906132bc565b8763ffffffff16611d059190613306565b611d0f91906134e8565b6040518463ffffffff1660e01b8152600401611d2d939291906133c9565b6020604051808303815f875af1158015611d49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d6d9190613428565b905080611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da69061369a565b60405180910390fd5b611ddd33611dbb610e47565b600a611dc791906132bc565b8463ffffffff16611dd89190613306565b6117b8565b505050565b5f33905090565b611df683838360016123bd565b505050565b5f611e068484611ad5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e875781811015611e78578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611e6f939291906136b8565b60405180910390fd5b611e8684848484035f6123bd565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611efd575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611ef49190613084565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f6d575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611f649190613084565b60405180910390fd5b611f7883838361258c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fed575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611fe49190613084565b60405180910390fd5b611ff8825f8361258c565b5050565b612004611de2565b73ffffffffffffffffffffffffffffffffffffffff16612022611103565b73ffffffffffffffffffffffffffffffffffffffff161461208157612045611de2565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016120789190613084565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61215082826127a5565b5050565b61215e82826127a5565b5050565b73752c3d7dfc54417eab7be7404beef8d8e087efa46353df6e3583855f0160189054906101000a900467ffffffffffffffff16846040518463ffffffff1660e01b81526004016121b4939291906136fc565b602060405180830381865af41580156121cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f3919061375b565b8360030160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555073752c3d7dfc54417eab7be7404beef8d8e087efa46353df6e358383865f0160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040161226f939291906136fc565b602060405180830381865af415801561228a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ae919061375b565b8360030160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8360030160109054906101000a900467ffffffffffffffff1667ffffffffffffffff161415801561232c57505f8360030160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1614155b61233957612338613347565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ae575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016123a59190613084565b60405180910390fd5b6123b95f838361258c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361242d575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016124249190613084565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361249d575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016124949190613084565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015612586578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161257d9190612f2a565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125dc578060025f8282546125d09190613786565b925050819055506126aa565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612665578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161265c939291906136b8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126f1578060025f828254039250508190555061273b565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127989190612f2a565b60405180910390a3505050565b73752c3d7dfc54417eab7be7404beef8d8e087efa46353df6e35828460010160189054906101000a900467ffffffffffffffff16855f0160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040161280f939291906136fc565b602060405180830381865af415801561282a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061284e919061375b565b826004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b604051806101c0016040528061288f61295b565b815260200161289c61295b565b81526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f60ff1681525090565b6040518061024001604052805f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f60ff1681525090565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612ab8578082015181840152602081019050612a9d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612add82612a81565b612ae78185612a8b565b9350612af7818560208601612a9b565b612b0081612ac3565b840191505092915050565b5f6020820190508181035f830152612b238184612ad3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612b5882612b2f565b9050919050565b612b6881612b4e565b8114612b72575f80fd5b50565b5f81359050612b8381612b5f565b92915050565b5f819050919050565b612b9b81612b89565b8114612ba5575f80fd5b50565b5f81359050612bb681612b92565b92915050565b5f8060408385031215612bd257612bd1612b2b565b5b5f612bdf85828601612b75565b9250506020612bf085828601612ba8565b9150509250929050565b5f8115159050919050565b612c0e81612bfa565b82525050565b5f602082019050612c275f830184612c05565b92915050565b5f67ffffffffffffffff82169050919050565b612c4981612c2d565b82525050565b5f60ff82169050919050565b612c6481612c4f565b82525050565b61024082015f820151612c7f5f850182612c40565b506020820151612c926020850182612c40565b506040820151612ca56040850182612c40565b506060820151612cb86060850182612c40565b506080820151612ccb6080850182612c40565b5060a0820151612cde60a0850182612c40565b5060c0820151612cf160c0850182612c40565b5060e0820151612d0460e0850182612c40565b50610100820151612d19610100850182612c40565b50610120820151612d2e610120850182612c40565b50610140820151612d43610140850182612c40565b50610160820151612d58610160850182612c40565b50610180820151612d6d610180850182612c40565b506101a0820151612d826101a0850182612c40565b506101c0820151612d976101c0850182612c40565b506101e0820151612dac6101e0850182612c40565b50610200820151612dc1610200850182612c40565b50610220820151612dd6610220850182612c5b565b50505050565b61060082015f820151612df15f850182612c6a565b506020820151612e05610240850182612c6a565b506040820151612e19610480850182612c40565b506060820151612e2d6104a0850182612c40565b506080820151612e416104c0850182612c40565b5060a0820151612e556104e0850182612c40565b5060c0820151612e69610500850182612c40565b5060e0820151612e7d610520850182612c40565b50610100820151612e92610540850182612c40565b50610120820151612ea7610560850182612c40565b50610140820151612ebc610580850182612c40565b50610160820151612ed16105a0850182612c40565b50610180820151612ee66105c0850182612c40565b506101a0820151612efb6105e0850182612c5b565b50505050565b5f61060082019050612f155f830184612ddc565b92915050565b612f2481612b89565b82525050565b5f602082019050612f3d5f830184612f1b565b92915050565b5f805f60608486031215612f5a57612f59612b2b565b5b5f612f6786828701612b75565b9350506020612f7886828701612b75565b9250506040612f8986828701612ba8565b9150509250925092565b612f9c81612c4f565b82525050565b5f602082019050612fb55f830184612f93565b92915050565b5f60208284031215612fd057612fcf612b2b565b5b5f612fdd84828501612ba8565b91505092915050565b5f60208284031215612ffb57612ffa612b2b565b5b5f61300884828501612b75565b91505092915050565b5f63ffffffff82169050919050565b61302981613011565b8114613033575f80fd5b50565b5f8135905061304481613020565b92915050565b5f6020828403121561305f5761305e612b2b565b5b5f61306c84828501613036565b91505092915050565b61307e81612b4e565b82525050565b5f6020820190506130975f830184613075565b92915050565b6130a681612c2d565b82525050565b5f6020820190506130bf5f83018461309d565b92915050565b5f80604083850312156130db576130da612b2b565b5b5f6130e885828601612b75565b92505060206130f985828601612b75565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061314757607f821691505b60208210810361315a57613159613103565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156131e2578086048111156131be576131bd613160565b5b60018516156131cd5780820291505b80810290506131db8561318d565b94506131a2565b94509492505050565b5f826131fa57600190506132b5565b81613207575f90506132b5565b816001811461321d576002811461322757613256565b60019150506132b5565b60ff84111561323957613238613160565b5b8360020a9150848211156132505761324f613160565b5b506132b5565b5060208310610133831016604e8410600b841016171561328b5782820a90508381111561328657613285613160565b5b6132b5565b6132988484846001613199565b925090508184048111156132af576132ae613160565b5b81810290505b9392505050565b5f6132c682612b89565b91506132d183612c4f565b92506132fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846131eb565b905092915050565b5f61331082612b89565b915061331b83612b89565b925082820261332981612b89565b915082820484148315176133405761333f613160565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52600160045260245ffd5b61337d81612c4f565b8114613387575f80fd5b50565b5f8151905061339881613374565b92915050565b5f602082840312156133b3576133b2612b2b565b5b5f6133c08482850161338a565b91505092915050565b5f6060820190506133dc5f830186613075565b6133e96020830185613075565b6133f66040830184612f1b565b949350505050565b61340781612bfa565b8114613411575f80fd5b50565b5f81519050613422816133fe565b92915050565b5f6020828403121561343d5761343c612b2b565b5b5f61344a84828501613414565b91505092915050565b7f4e65656420417070726f766564204441490000000000000000000000000000005f82015250565b5f613487601183612a8b565b915061349282613453565b602082019050919050565b5f6020820190508181035f8301526134b48161347b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6134f282612b89565b91506134fd83612b89565b92508261350d5761350c6134bb565b5b828204905092915050565b7f4e65656420417070726f7665642047696d6d65350000000000000000000000005f82015250565b5f61354c601483612a8b565b915061355782613518565b602082019050919050565b5f6020820190508181035f83015261357981613540565b9050919050565b7f4e65656420417070726f766564205553445400000000000000000000000000005f82015250565b5f6135b4601283612a8b565b91506135bf82613580565b602082019050919050565b5f6020820190508181035f8301526135e1816135a8565b9050919050565b7f4e65656420417070726f766564205553444300000000000000000000000000005f82015250565b5f61361c601283612a8b565b9150613627826135e8565b602082019050919050565b5f6020820190508181035f83015261364981613610565b9050919050565b7f4e65656420417070726f7665642070494e444550454e44454e434500000000005f82015250565b5f613684601b83612a8b565b915061368f82613650565b602082019050919050565b5f6020820190508181035f8301526136b181613678565b9050919050565b5f6060820190506136cb5f830186613075565b6136d86020830185612f1b565b6136e56040830184612f1b565b949350505050565b6136f681612c2d565b82525050565b5f60608201905061370f5f8301866136ed565b61371c60208301856136ed565b61372960408301846136ed565b949350505050565b61373a81612c2d565b8114613744575f80fd5b50565b5f8151905061375581613731565b92915050565b5f602082840312156137705761376f612b2b565b5b5f61377d84828501613747565b91505092915050565b5f61379082612b89565b915061379b83612b89565b92508282019050808211156137b3576137b2613160565b5b9291505056fea2646970667358221220507d1a378c7e0d8f4f7df91e45bd30511e07925b73303b50e4a121bab574365264736f6c63430008150033
Deployed ByteCode
0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c806382bf4c54116100b6578063a5d16c291161007a578063a5d16c291461033c578063a9059cbb14610358578063d805b65014610388578063dd62ed3e146103a6578063f2fde38b146103d6578063fd2d8083146103f257610140565b806382bf4c54146102aa5780638da5cb5b146102c8578063919f5311146102e657806395d89b41146103025780639f7574b51461032057610140565b8063313ce56711610108578063313ce567146101fe57806342966c681461021c57806370a0823114610238578063715018a61461026857806379cc6790146102725780637d1f22ba1461028e57610140565b806306fdde0314610144578063095ea7b3146101625780631686f2651461019257806318160ddd146101b057806323b872dd146101ce575b5f80fd5b61014c61040e565b6040516101599190612b0b565b60405180910390f35b61017c60048036038101906101779190612bbc565b61049e565b6040516101899190612c14565b60405180910390f35b61019a6104c0565b6040516101a79190612f01565b60405180910390f35b6101b8610e10565b6040516101c59190612f2a565b60405180910390f35b6101e860048036038101906101e39190612f43565b610e19565b6040516101f59190612c14565b60405180910390f35b610206610e47565b6040516102139190612fa2565b60405180910390f35b61023660048036038101906102319190612fbb565b610e4f565b005b610252600480360381019061024d9190612fe6565b610e63565b60405161025f9190612f2a565b60405180910390f35b610270610ea8565b005b61028c60048036038101906102879190612bbc565b610ebb565b005b6102a860048036038101906102a3919061304a565b610edb565b005b6102b26110d6565b6040516102bf9190612f2a565b60405180910390f35b6102d0611103565b6040516102dd9190613084565b60405180910390f35b61030060048036038101906102fb919061304a565b61112b565b005b61030a611332565b6040516103179190612b0b565b60405180910390f35b61033a6004803603810190610335919061304a565b6113c2565b005b6103566004803603810190610351919061304a565b6115bd565b005b610372600480360381019061036d9190612bbc565b6117b8565b60405161037f9190612c14565b60405180910390f35b6103906117da565b60405161039d91906130ac565b60405180910390f35b6103c060048036038101906103bb91906130c5565b611ad5565b6040516103cd9190612f2a565b60405180910390f35b6103f060048036038101906103eb9190612fe6565b611b57565b005b61040c6004803603810190610407919061304a565b611bdb565b005b60606003805461041d90613130565b80601f016020809104026020016040519081016040528092919081815260200182805461044990613130565b80156104945780601f1061046b57610100808354040283529160200191610494565b820191905f5260205f20905b81548152906001019060200180831161047757829003601f168201915b5050505050905090565b5f806104a8611de2565b90506104b5818585611de9565b600191505092915050565b6104c861287b565b6006604051806101c00160405290815f8201604051806102400160405290815f82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600182015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600282015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600382015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600482015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016004820160089054906101000a900460ff1660ff1660ff1681525050815260200160058201604051806102400160405290815f82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020015f820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600182015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016001820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600282015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016002820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600382015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016003820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600482015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016004820160089054906101000a900460ff1660ff1660ff16815250508152602001600a82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600a820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600a820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600a820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600b820160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c82015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c820160109054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152602001600c820160189054906101000a900460ff1660ff1660ff1681525050905090565b5f600254905090565b5f80610e23611de2565b9050610e30858285611dfb565b610e3b858585611e8d565b60019150509392505050565b5f6012905090565b610e60610e5a611de2565b82611f7d565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610eb0611ffc565b610eb95f612083565b565b610ecd82610ec7611de2565b83611dfb565b610ed78282611f7d565b5050565b610ee3610e47565b600a610eef91906132bc565b8163ffffffff16610f009190613306565b610f0930610e63565b1015610f1857610f17613347565b5b5f60135f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd333060135f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610fc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fe6919061339e565b600a610ff291906132bc565b8663ffffffff166110039190613306565b6040518463ffffffff1660e01b8152600401611021939291906133c9565b6020604051808303815f875af115801561103d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110619190613428565b9050806110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a9061349d565b60405180910390fd5b6110d1336110af610e47565b600a6110bb91906132bc565b8463ffffffff166110cc9190613306565b6117b8565b505050565b5f6110df610e47565b600a6110eb91906132bc565b6110f430610e63565b6110fe91906134e8565b905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611133610e47565b600a61113f91906132bc565b8163ffffffff166111509190613306565b61115930610e63565b101561116857611167613347565b5b5f60165f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330600460165f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611214573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611238919061339e565b600a61124491906132bc565b8763ffffffff166112559190613306565b61125f91906134e8565b6040518463ffffffff1660e01b815260040161127d939291906133c9565b6020604051808303815f875af1158015611299573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112bd9190613428565b9050806112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690613562565b60405180910390fd5b61132d3361130b610e47565b600a61131791906132bc565b8463ffffffff166113289190613306565b6117b8565b505050565b60606004805461134190613130565b80601f016020809104026020016040519081016040528092919081815260200182805461136d90613130565b80156113b85780601f1061138f576101008083540402835291602001916113b8565b820191905f5260205f20905b81548152906001019060200180831161139b57829003601f168201915b5050505050905090565b6113ca610e47565b600a6113d691906132bc565b8163ffffffff166113e79190613306565b6113f030610e63565b10156113ff576113fe613347565b5b5f60155f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd333060145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114cd919061339e565b600a6114d991906132bc565b8663ffffffff166114ea9190613306565b6040518463ffffffff1660e01b8152600401611508939291906133c9565b6020604051808303815f875af1158015611524573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115489190613428565b90508061158a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611581906135ca565b60405180910390fd5b6115b833611596610e47565b600a6115a291906132bc565b8463ffffffff166115b39190613306565b6117b8565b505050565b6115c5610e47565b600a6115d191906132bc565b8163ffffffff166115e29190613306565b6115eb30610e63565b10156115fa576115f9613347565b5b5f60145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd333060145f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116c8919061339e565b600a6116d491906132bc565b8663ffffffff166116e59190613306565b6040518463ffffffff1660e01b8152600401611703939291906133c9565b6020604051808303815f875af115801561171f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117439190613428565b905080611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90613632565b60405180910390fd5b6117b333611791610e47565b600a61179d91906132bc565b8463ffffffff166117ae9190613306565b6117b8565b505050565b5f806117c2611de2565b90506117cf818585611e8d565b600191505092915050565b5f61180260066005016006600b0160109054906101000a900467ffffffffffffffff16612146565b60066005016004015f9054906101000a900467ffffffffffffffff166006600b0160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555061187060066005016006600b0160189054906101000a900467ffffffffffffffff16612154565b60066005016004015f9054906101000a900467ffffffffffffffff166006600c015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506118f860066005016006600c015f9054906101000a900467ffffffffffffffff1660066005016002015f9054906101000a900467ffffffffffffffff16612162565b600660050160030160189054906101000a900467ffffffffffffffff166006600c0160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555061198060065f016006600c015f9054906101000a900467ffffffffffffffff1660065f016002015f9054906101000a900467ffffffffffffffff16612162565b60065f0160030160189054906101000a900467ffffffffffffffff166006600c0160109054906101000a900467ffffffffffffffff16186006600c0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506006600c015f9054906101000a900467ffffffffffffffff166006600b0160189054906101000a900467ffffffffffffffff166006600b0160109054906101000a900467ffffffffffffffff1618186006600b0160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550611a64610e47565b600a611a7091906132bc565b63423a35c7611a7f9190613306565b611a87610e10565b11611ab657611ab530611a98610e47565b600a611aa491906132bc565b6001611ab09190613306565b61233e565b5b6006600b0160109054906101000a900467ffffffffffffffff16905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611b5f611ffc565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bcf575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611bc69190613084565b60405180910390fd5b611bd881612083565b50565b611be3610e47565b600a611bef91906132bc565b8163ffffffff16611c009190613306565b611c0930610e63565b1015611c1857611c17613347565b5b5f60175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd333060d460175f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ce8919061339e565b600a611cf491906132bc565b8763ffffffff16611d059190613306565b611d0f91906134e8565b6040518463ffffffff1660e01b8152600401611d2d939291906133c9565b6020604051808303815f875af1158015611d49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d6d9190613428565b905080611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da69061369a565b60405180910390fd5b611ddd33611dbb610e47565b600a611dc791906132bc565b8463ffffffff16611dd89190613306565b6117b8565b505050565b5f33905090565b611df683838360016123bd565b505050565b5f611e068484611ad5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e875781811015611e78578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611e6f939291906136b8565b60405180910390fd5b611e8684848484035f6123bd565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611efd575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611ef49190613084565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f6d575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611f649190613084565b60405180910390fd5b611f7883838361258c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fed575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611fe49190613084565b60405180910390fd5b611ff8825f8361258c565b5050565b612004611de2565b73ffffffffffffffffffffffffffffffffffffffff16612022611103565b73ffffffffffffffffffffffffffffffffffffffff161461208157612045611de2565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016120789190613084565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61215082826127a5565b5050565b61215e82826127a5565b5050565b73752c3d7dfc54417eab7be7404beef8d8e087efa46353df6e3583855f0160189054906101000a900467ffffffffffffffff16846040518463ffffffff1660e01b81526004016121b4939291906136fc565b602060405180830381865af41580156121cf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121f3919061375b565b8360030160106101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555073752c3d7dfc54417eab7be7404beef8d8e087efa46353df6e358383865f0160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040161226f939291906136fc565b602060405180830381865af415801561228a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122ae919061375b565b8360030160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505f8360030160109054906101000a900467ffffffffffffffff1667ffffffffffffffff161415801561232c57505f8360030160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1614155b61233957612338613347565b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123ae575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016123a59190613084565b60405180910390fd5b6123b95f838361258c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361242d575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016124249190613084565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361249d575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016124949190613084565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015612586578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161257d9190612f2a565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125dc578060025f8282546125d09190613786565b925050819055506126aa565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612665578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161265c939291906136b8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126f1578060025f828254039250508190555061273b565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127989190612f2a565b60405180910390a3505050565b73752c3d7dfc54417eab7be7404beef8d8e087efa46353df6e35828460010160189054906101000a900467ffffffffffffffff16855f0160189054906101000a900467ffffffffffffffff166040518463ffffffff1660e01b815260040161280f939291906136fc565b602060405180830381865af415801561282a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061284e919061375b565b826004015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b604051806101c0016040528061288f61295b565b815260200161289c61295b565b81526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f60ff1681525090565b6040518061024001604052805f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f60ff1681525090565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612ab8578082015181840152602081019050612a9d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612add82612a81565b612ae78185612a8b565b9350612af7818560208601612a9b565b612b0081612ac3565b840191505092915050565b5f6020820190508181035f830152612b238184612ad3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612b5882612b2f565b9050919050565b612b6881612b4e565b8114612b72575f80fd5b50565b5f81359050612b8381612b5f565b92915050565b5f819050919050565b612b9b81612b89565b8114612ba5575f80fd5b50565b5f81359050612bb681612b92565b92915050565b5f8060408385031215612bd257612bd1612b2b565b5b5f612bdf85828601612b75565b9250506020612bf085828601612ba8565b9150509250929050565b5f8115159050919050565b612c0e81612bfa565b82525050565b5f602082019050612c275f830184612c05565b92915050565b5f67ffffffffffffffff82169050919050565b612c4981612c2d565b82525050565b5f60ff82169050919050565b612c6481612c4f565b82525050565b61024082015f820151612c7f5f850182612c40565b506020820151612c926020850182612c40565b506040820151612ca56040850182612c40565b506060820151612cb86060850182612c40565b506080820151612ccb6080850182612c40565b5060a0820151612cde60a0850182612c40565b5060c0820151612cf160c0850182612c40565b5060e0820151612d0460e0850182612c40565b50610100820151612d19610100850182612c40565b50610120820151612d2e610120850182612c40565b50610140820151612d43610140850182612c40565b50610160820151612d58610160850182612c40565b50610180820151612d6d610180850182612c40565b506101a0820151612d826101a0850182612c40565b506101c0820151612d976101c0850182612c40565b506101e0820151612dac6101e0850182612c40565b50610200820151612dc1610200850182612c40565b50610220820151612dd6610220850182612c5b565b50505050565b61060082015f820151612df15f850182612c6a565b506020820151612e05610240850182612c6a565b506040820151612e19610480850182612c40565b506060820151612e2d6104a0850182612c40565b506080820151612e416104c0850182612c40565b5060a0820151612e556104e0850182612c40565b5060c0820151612e69610500850182612c40565b5060e0820151612e7d610520850182612c40565b50610100820151612e92610540850182612c40565b50610120820151612ea7610560850182612c40565b50610140820151612ebc610580850182612c40565b50610160820151612ed16105a0850182612c40565b50610180820151612ee66105c0850182612c40565b506101a0820151612efb6105e0850182612c5b565b50505050565b5f61060082019050612f155f830184612ddc565b92915050565b612f2481612b89565b82525050565b5f602082019050612f3d5f830184612f1b565b92915050565b5f805f60608486031215612f5a57612f59612b2b565b5b5f612f6786828701612b75565b9350506020612f7886828701612b75565b9250506040612f8986828701612ba8565b9150509250925092565b612f9c81612c4f565b82525050565b5f602082019050612fb55f830184612f93565b92915050565b5f60208284031215612fd057612fcf612b2b565b5b5f612fdd84828501612ba8565b91505092915050565b5f60208284031215612ffb57612ffa612b2b565b5b5f61300884828501612b75565b91505092915050565b5f63ffffffff82169050919050565b61302981613011565b8114613033575f80fd5b50565b5f8135905061304481613020565b92915050565b5f6020828403121561305f5761305e612b2b565b5b5f61306c84828501613036565b91505092915050565b61307e81612b4e565b82525050565b5f6020820190506130975f830184613075565b92915050565b6130a681612c2d565b82525050565b5f6020820190506130bf5f83018461309d565b92915050565b5f80604083850312156130db576130da612b2b565b5b5f6130e885828601612b75565b92505060206130f985828601612b75565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061314757607f821691505b60208210810361315a57613159613103565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156131e2578086048111156131be576131bd613160565b5b60018516156131cd5780820291505b80810290506131db8561318d565b94506131a2565b94509492505050565b5f826131fa57600190506132b5565b81613207575f90506132b5565b816001811461321d576002811461322757613256565b60019150506132b5565b60ff84111561323957613238613160565b5b8360020a9150848211156132505761324f613160565b5b506132b5565b5060208310610133831016604e8410600b841016171561328b5782820a90508381111561328657613285613160565b5b6132b5565b6132988484846001613199565b925090508184048111156132af576132ae613160565b5b81810290505b9392505050565b5f6132c682612b89565b91506132d183612c4f565b92506132fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846131eb565b905092915050565b5f61331082612b89565b915061331b83612b89565b925082820261332981612b89565b915082820484148315176133405761333f613160565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52600160045260245ffd5b61337d81612c4f565b8114613387575f80fd5b50565b5f8151905061339881613374565b92915050565b5f602082840312156133b3576133b2612b2b565b5b5f6133c08482850161338a565b91505092915050565b5f6060820190506133dc5f830186613075565b6133e96020830185613075565b6133f66040830184612f1b565b949350505050565b61340781612bfa565b8114613411575f80fd5b50565b5f81519050613422816133fe565b92915050565b5f6020828403121561343d5761343c612b2b565b5b5f61344a84828501613414565b91505092915050565b7f4e65656420417070726f766564204441490000000000000000000000000000005f82015250565b5f613487601183612a8b565b915061349282613453565b602082019050919050565b5f6020820190508181035f8301526134b48161347b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6134f282612b89565b91506134fd83612b89565b92508261350d5761350c6134bb565b5b828204905092915050565b7f4e65656420417070726f7665642047696d6d65350000000000000000000000005f82015250565b5f61354c601483612a8b565b915061355782613518565b602082019050919050565b5f6020820190508181035f83015261357981613540565b9050919050565b7f4e65656420417070726f766564205553445400000000000000000000000000005f82015250565b5f6135b4601283612a8b565b91506135bf82613580565b602082019050919050565b5f6020820190508181035f8301526135e1816135a8565b9050919050565b7f4e65656420417070726f766564205553444300000000000000000000000000005f82015250565b5f61361c601283612a8b565b9150613627826135e8565b602082019050919050565b5f6020820190508181035f83015261364981613610565b9050919050565b7f4e65656420417070726f7665642070494e444550454e44454e434500000000005f82015250565b5f613684601b83612a8b565b915061368f82613650565b602082019050919050565b5f6020820190508181035f8301526136b181613678565b9050919050565b5f6060820190506136cb5f830186613075565b6136d86020830185612f1b565b6136e56040830184612f1b565b949350505050565b6136f681612c2d565b82525050565b5f60608201905061370f5f8301866136ed565b61371c60208301856136ed565b61372960408301846136ed565b949350505050565b61373a81612c2d565b8114613744575f80fd5b50565b5f8151905061375581613731565b92915050565b5f602082840312156137705761376f612b2b565b5b5f61377d84828501613747565b91505092915050565b5f61379082612b89565b915061379b83612b89565b92508282019050808211156137b3576137b2613160565b5b9291505056fea2646970667358221220507d1a378c7e0d8f4f7df91e45bd30511e07925b73303b50e4a121bab574365264736f6c63430008150033