Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0xe4fb5f674bf69a46bf69dd695c2000866938f6be3070a1e2d300d5bc6d4e21e6 | Transfer | (pending) | 5 days ago | IN | 0 ETH | (Pending) | |||
Approve | 21426340 | 3 days ago | IN | 0 ETH | 0.00057924 | ||||
Transfer | 21377709 | 9 days ago | IN | 0 ETH | 0.00043873 | ||||
Transfer | 21377488 | 9 days ago | IN | 0 ETH | 0.00069266 | ||||
Transfer | 21357406 | 12 days ago | IN | 0 ETH | 0.00031967 | ||||
Transfer | 21357403 | 12 days ago | IN | 0 ETH | 0.00035996 | ||||
Transfer | 21357226 | 12 days ago | IN | 0 ETH | 0.00052316 | ||||
Transfer | 21355316 | 13 days ago | IN | 0 ETH | 0.00037228 | ||||
Transfer | 21355304 | 13 days ago | IN | 0 ETH | 0.00044489 | ||||
Transfer | 21355124 | 13 days ago | IN | 0 ETH | 0.00056673 | ||||
Transfer | 21326577 | 17 days ago | IN | 0 ETH | 0.00067755 | ||||
Transfer | 21326390 | 17 days ago | IN | 0 ETH | 0.00074448 | ||||
Transfer | 21319820 | 18 days ago | IN | 0 ETH | 0.00058971 | ||||
Transfer | 21319591 | 18 days ago | IN | 0 ETH | 0.0009924 | ||||
Transfer | 21313563 | 18 days ago | IN | 0 ETH | 0.00050064 | ||||
Transfer | 21313563 | 18 days ago | IN | 0 ETH | 0.00050064 | ||||
Transfer | 21313368 | 18 days ago | IN | 0 ETH | 0.00078518 | ||||
Transfer | 21313344 | 18 days ago | IN | 0 ETH | 0.00083128 | ||||
Transfer | 21301020 | 20 days ago | IN | 0 ETH | 0.00048466 | ||||
Transfer | 21300333 | 20 days ago | IN | 0 ETH | 0.00045938 | ||||
Transfer | 21298465 | 21 days ago | IN | 0 ETH | 0.00024611 | ||||
Transfer | 21298256 | 21 days ago | IN | 0 ETH | 0.00031336 | ||||
Transfer | 21297508 | 21 days ago | IN | 0 ETH | 0.00028304 | ||||
Transfer | 21297315 | 21 days ago | IN | 0 ETH | 0.00056279 | ||||
Transfer | 21290498 | 22 days ago | IN | 0 ETH | 0.00026332 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
AzziToken
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-08-13 */ // 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/utils/Pausable.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol) pragma solidity ^0.8.20; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { bool private _paused; /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Pausable.sol) pragma solidity ^0.8.20; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * IMPORTANT: This contract does not include public pause and unpause functions. In * addition to inheriting this contract, you must define both functions, invoking the * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will * make the contract pause mechanism of the contract unreachable, and thus unusable. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_update}. * * Requirements: * * - the contract must not be paused. */ function _update(address from, address to, uint256 value) internal virtual override whenNotPaused { super._update(from, to, 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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.20; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS } /** * @dev The signature derives the `address(0)`. */ error ECDSAInvalidSignature(); /** * @dev The signature has an invalid length. */ error ECDSAInvalidSignatureLength(uint256 length); /** * @dev The signature has an S value that is in the upper half order. */ error ECDSAInvalidSignatureS(bytes32 s); /** * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not * return address(0) without also returning an error description. Errors are documented using an enum (error type) * and a bytes32 providing additional information about the error. * * If no error is returned, then the address can be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length)); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) { unchecked { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); // We do not check for an overflow here since the shift operation results in 0 or 1. uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError, bytes32) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS, s); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature, bytes32(0)); } return (signer, RecoverError.NoError, bytes32(0)); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s); _throwError(error, errorArg); return recovered; } /** * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided. */ function _throwError(RecoverError error, bytes32 errorArg) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert ECDSAInvalidSignature(); } else if (error == RecoverError.InvalidSignatureLength) { revert ECDSAInvalidSignatureLength(uint256(errorArg)); } else if (error == RecoverError.InvalidSignatureS) { revert ECDSAInvalidSignatureS(errorArg); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol) pragma solidity ^0.8.20; /** * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing. * * The library provides methods for generating a hash of a message that conforms to the * https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] * specifications. */ library MessageHashUtils { /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing a bytes32 `messageHash` with * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with * keccak256, although any bytes32 value can be safely used because the final digest will * be re-hashed. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20) } } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing an arbitrary `message` with * `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) { return keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message)); } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x00` (data with intended validator). * * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended * `validator` address. Then hashing the result. * * See {ECDSA-recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked(hex"19_00", validator, data)); } /** * @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`). * * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with * `\x19\x01` and hashing the result. It corresponds to the hash signed by the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712. * * See {ECDSA-recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, hex"19_01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) digest := keccak256(ptr, 0x42) } } } // File: @openzeppelin/contracts/utils/StorageSlot.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.20; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(newImplementation.code.length > 0); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } } // File: @openzeppelin/contracts/utils/ShortStrings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/ShortStrings.sol) pragma solidity ^0.8.20; // | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | // | length | 0x BB | type ShortString is bytes32; /** * @dev This library provides functions to convert short memory strings * into a `ShortString` type that can be used as an immutable variable. * * Strings of arbitrary length can be optimized using this library if * they are short enough (up to 31 bytes) by packing them with their * length (1 byte) in a single EVM word (32 bytes). Additionally, a * fallback mechanism can be used for every other case. * * Usage example: * * ```solidity * contract Named { * using ShortStrings for *; * * ShortString private immutable _name; * string private _nameFallback; * * constructor(string memory contractName) { * _name = contractName.toShortStringWithFallback(_nameFallback); * } * * function name() external view returns (string memory) { * return _name.toStringWithFallback(_nameFallback); * } * } * ``` */ library ShortStrings { // Used as an identifier for strings longer than 31 bytes. bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF; error StringTooLong(string str); error InvalidShortString(); /** * @dev Encode a string of at most 31 chars into a `ShortString`. * * This will trigger a `StringTooLong` error is the input string is too long. */ function toShortString(string memory str) internal pure returns (ShortString) { bytes memory bstr = bytes(str); if (bstr.length > 31) { revert StringTooLong(str); } return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length)); } /** * @dev Decode a `ShortString` back to a "normal" string. */ function toString(ShortString sstr) internal pure returns (string memory) { uint256 len = byteLength(sstr); // using `new string(len)` would work locally but is not memory safe. string memory str = new string(32); /// @solidity memory-safe-assembly assembly { mstore(str, len) mstore(add(str, 0x20), sstr) } return str; } /** * @dev Return the length of a `ShortString`. */ function byteLength(ShortString sstr) internal pure returns (uint256) { uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF; if (result > 31) { revert InvalidShortString(); } return result; } /** * @dev Encode a string into a `ShortString`, or write it to storage if it is too long. */ function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) { if (bytes(value).length < 32) { return toShortString(value); } else { StorageSlot.getStringSlot(store).value = value; return ShortString.wrap(FALLBACK_SENTINEL); } } /** * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}. */ function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) { if (ShortString.unwrap(value) != FALLBACK_SENTINEL) { return toString(value); } else { return store; } } /** * @dev Return the length of a string that was encoded to `ShortString` or written to storage using * {setWithFallback}. * * WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of * actual characters as the UTF-8 encoding of a single character can span over multiple bytes. */ function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) { if (ShortString.unwrap(value) != FALLBACK_SENTINEL) { return byteLength(value); } else { return bytes(store).length; } } } // File: @openzeppelin/contracts/interfaces/IERC5267.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol) pragma solidity ^0.8.20; interface IERC5267 { /** * @dev MAY be emitted to signal that the domain could have changed. */ event EIP712DomainChanged(); /** * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712 * signature. */ function eip712Domain() external view returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ); } // File: @openzeppelin/contracts/utils/cryptography/EIP712.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.20; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose * encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract * does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to * produce the hash of their typed data using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain * separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the * separator from the immutable values, which is cheaper than accessing a cached version in cold storage. * * @custom:oz-upgrades-unsafe-allow state-variable-immutable */ abstract contract EIP712 is IERC5267 { using ShortStrings for *; bytes32 private constant TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _cachedDomainSeparator; uint256 private immutable _cachedChainId; address private immutable _cachedThis; bytes32 private immutable _hashedName; bytes32 private immutable _hashedVersion; ShortString private immutable _name; ShortString private immutable _version; string private _nameFallback; string private _versionFallback; /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { _name = name.toShortStringWithFallback(_nameFallback); _version = version.toShortStringWithFallback(_versionFallback); _hashedName = keccak256(bytes(name)); _hashedVersion = keccak256(bytes(version)); _cachedChainId = block.chainid; _cachedDomainSeparator = _buildDomainSeparator(); _cachedThis = address(this); } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _cachedThis && block.chainid == _cachedChainId) { return _cachedDomainSeparator; } else { return _buildDomainSeparator(); } } function _buildDomainSeparator() private view returns (bytes32) { return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev See {IERC-5267}. */ function eip712Domain() public view virtual returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { return ( hex"0f", // 01111 _EIP712Name(), _EIP712Version(), block.chainid, address(this), bytes32(0), new uint256[](0) ); } /** * @dev The name parameter for the EIP712 domain. * * NOTE: By default this function reads _name which is an immutable value. * It only reads from storage if necessary (in case the value is too large to fit in a ShortString). */ // solhint-disable-next-line func-name-mixedcase function _EIP712Name() internal view returns (string memory) { return _name.toStringWithFallback(_nameFallback); } /** * @dev The version parameter for the EIP712 domain. * * NOTE: By default this function reads _version which is an immutable value. * It only reads from storage if necessary (in case the value is too large to fit in a ShortString). */ // solhint-disable-next-line func-name-mixedcase function _EIP712Version() internal view returns (string memory) { return _version.toStringWithFallback(_versionFallback); } } // File: @openzeppelin/contracts/utils/Nonces.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol) pragma solidity ^0.8.20; /** * @dev Provides tracking nonces for addresses. Nonces will only increment. */ abstract contract Nonces { /** * @dev The nonce used for an `account` is not the expected current nonce. */ error InvalidAccountNonce(address account, uint256 currentNonce); mapping(address account => uint256) private _nonces; /** * @dev Returns the next unused nonce for an address. */ function nonces(address owner) public view virtual returns (uint256) { return _nonces[owner]; } /** * @dev Consumes a nonce. * * Returns the current value and increments nonce. */ function _useNonce(address owner) internal virtual returns (uint256) { // For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be // decremented or reset. This guarantees that the nonce never overflows. unchecked { // It is important to do x++ and not ++x here. return _nonces[owner]++; } } /** * @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`. */ function _useCheckedNonce(address owner, uint256 nonce) internal virtual { uint256 current = _useNonce(owner); if (nonce != current) { revert InvalidAccountNonce(owner, current); } } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces { bytes32 private constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev Permit deadline has expired. */ error ERC2612ExpiredSignature(uint256 deadline); /** * @dev Mismatched signature. */ error ERC2612InvalidSigner(address signer, address owner); /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ constructor(string memory name) EIP712(name, "1") {} /** * @inheritdoc IERC20Permit */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { if (block.timestamp > deadline) { revert ERC2612ExpiredSignature(deadline); } bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); if (signer != owner) { revert ERC2612InvalidSigner(signer, owner); } _approve(owner, spender, value); } /** * @inheritdoc IERC20Permit */ function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) { return super.nonces(owner); } /** * @inheritdoc IERC20Permit */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view virtual returns (bytes32) { return _domainSeparatorV4(); } } // File: @openzeppelin/contracts/governance/utils/IVotes.sol // OpenZeppelin Contracts (last updated v5.0.0) (governance/utils/IVotes.sol) pragma solidity ^0.8.20; /** * @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts. */ interface IVotes { /** * @dev The signature used has expired. */ error VotesExpiredSignature(uint256 expiry); /** * @dev Emitted when an account changes their delegate. */ event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /** * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of voting units. */ event DelegateVotesChanged(address indexed delegate, uint256 previousVotes, uint256 newVotes); /** * @dev Returns the current amount of votes that `account` has. */ function getVotes(address account) external view returns (uint256); /** * @dev Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is * configured to use block numbers, this will return the value at the end of the corresponding block. */ function getPastVotes(address account, uint256 timepoint) external view returns (uint256); /** * @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is * configured to use block numbers, this will return the value at the end of the corresponding block. * * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. * Votes that have not been delegated are still part of total supply, even though they would not participate in a * vote. */ function getPastTotalSupply(uint256 timepoint) external view returns (uint256); /** * @dev Returns the delegate that `account` has chosen. */ function delegates(address account) external view returns (address); /** * @dev Delegates votes from the sender to `delegatee`. */ function delegate(address delegatee) external; /** * @dev Delegates votes from signer to `delegatee`. */ function delegateBySig(address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) external; } // File: @openzeppelin/contracts/interfaces/IERC6372.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC6372.sol) pragma solidity ^0.8.20; interface IERC6372 { /** * @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based checkpoints (and voting). */ function clock() external view returns (uint48); /** * @dev Description of the clock */ // solhint-disable-next-line func-name-mixedcase function CLOCK_MODE() external view returns (string memory); } // File: @openzeppelin/contracts/interfaces/IERC5805.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5805.sol) pragma solidity ^0.8.20; interface IERC5805 is IERC6372, IVotes {} // File: @openzeppelin/contracts/utils/structs/Checkpoints.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/structs/Checkpoints.sol) // This file was procedurally generated from scripts/generate/templates/Checkpoints.js. pragma solidity ^0.8.20; /** * @dev This library defines the `Trace*` struct, for checkpointing values as they change at different points in * time, and later looking up past values by block number. See {Votes} as an example. * * To create a history of checkpoints define a variable type `Checkpoints.Trace*` in your contract, and store a new * checkpoint for the current transaction block using the {push} function. */ library Checkpoints { /** * @dev A value was attempted to be inserted on a past checkpoint. */ error CheckpointUnorderedInsertion(); struct Trace224 { Checkpoint224[] _checkpoints; } struct Checkpoint224 { uint32 _key; uint224 _value; } /** * @dev Pushes a (`key`, `value`) pair into a Trace224 so that it is stored as the checkpoint. * * Returns previous value and new value. * * IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint32).max` key set will disable the * library. */ function push(Trace224 storage self, uint32 key, uint224 value) internal returns (uint224, uint224) { return _insert(self._checkpoints, key, value); } /** * @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if * there is none. */ function lowerLookup(Trace224 storage self, uint32 key) internal view returns (uint224) { uint256 len = self._checkpoints.length; uint256 pos = _lowerBinaryLookup(self._checkpoints, key, 0, len); return pos == len ? 0 : _unsafeAccess(self._checkpoints, pos)._value; } /** * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero * if there is none. */ function upperLookup(Trace224 storage self, uint32 key) internal view returns (uint224) { uint256 len = self._checkpoints.length; uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len); return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value; } /** * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero * if there is none. * * NOTE: This is a variant of {upperLookup} that is optimised to find "recent" checkpoint (checkpoints with high * keys). */ function upperLookupRecent(Trace224 storage self, uint32 key) internal view returns (uint224) { uint256 len = self._checkpoints.length; uint256 low = 0; uint256 high = len; if (len > 5) { uint256 mid = len - Math.sqrt(len); if (key < _unsafeAccess(self._checkpoints, mid)._key) { high = mid; } else { low = mid + 1; } } uint256 pos = _upperBinaryLookup(self._checkpoints, key, low, high); return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value; } /** * @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints. */ function latest(Trace224 storage self) internal view returns (uint224) { uint256 pos = self._checkpoints.length; return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value; } /** * @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value * in the most recent checkpoint. */ function latestCheckpoint(Trace224 storage self) internal view returns (bool exists, uint32 _key, uint224 _value) { uint256 pos = self._checkpoints.length; if (pos == 0) { return (false, 0, 0); } else { Checkpoint224 memory ckpt = _unsafeAccess(self._checkpoints, pos - 1); return (true, ckpt._key, ckpt._value); } } /** * @dev Returns the number of checkpoint. */ function length(Trace224 storage self) internal view returns (uint256) { return self._checkpoints.length; } /** * @dev Returns checkpoint at given position. */ function at(Trace224 storage self, uint32 pos) internal view returns (Checkpoint224 memory) { return self._checkpoints[pos]; } /** * @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint, * or by updating the last one. */ function _insert(Checkpoint224[] storage self, uint32 key, uint224 value) private returns (uint224, uint224) { uint256 pos = self.length; if (pos > 0) { // Copying to memory is important here. Checkpoint224 memory last = _unsafeAccess(self, pos - 1); // Checkpoint keys must be non-decreasing. if (last._key > key) { revert CheckpointUnorderedInsertion(); } // Update or push new checkpoint if (last._key == key) { _unsafeAccess(self, pos - 1)._value = value; } else { self.push(Checkpoint224({_key: key, _value: value})); } return (last._value, value); } else { self.push(Checkpoint224({_key: key, _value: value})); return (0, value); } } /** * @dev Return the index of the last (most recent) checkpoint with key lower or equal than the search key, or `high` * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive * `high`. * * WARNING: `high` should not be greater than the array's length. */ function _upperBinaryLookup( Checkpoint224[] storage self, uint32 key, uint256 low, uint256 high ) private view returns (uint256) { while (low < high) { uint256 mid = Math.average(low, high); if (_unsafeAccess(self, mid)._key > key) { high = mid; } else { low = mid + 1; } } return high; } /** * @dev Return the index of the first (oldest) checkpoint with key is greater or equal than the search key, or * `high` if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and * exclusive `high`. * * WARNING: `high` should not be greater than the array's length. */ function _lowerBinaryLookup( Checkpoint224[] storage self, uint32 key, uint256 low, uint256 high ) private view returns (uint256) { while (low < high) { uint256 mid = Math.average(low, high); if (_unsafeAccess(self, mid)._key < key) { low = mid + 1; } else { high = mid; } } return high; } /** * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds. */ function _unsafeAccess( Checkpoint224[] storage self, uint256 pos ) private pure returns (Checkpoint224 storage result) { assembly { mstore(0, self.slot) result.slot := add(keccak256(0, 0x20), pos) } } struct Trace208 { Checkpoint208[] _checkpoints; } struct Checkpoint208 { uint48 _key; uint208 _value; } /** * @dev Pushes a (`key`, `value`) pair into a Trace208 so that it is stored as the checkpoint. * * Returns previous value and new value. * * IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint48).max` key set will disable the * library. */ function push(Trace208 storage self, uint48 key, uint208 value) internal returns (uint208, uint208) { return _insert(self._checkpoints, key, value); } /** * @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if * there is none. */ function lowerLookup(Trace208 storage self, uint48 key) internal view returns (uint208) { uint256 len = self._checkpoints.length; uint256 pos = _lowerBinaryLookup(self._checkpoints, key, 0, len); return pos == len ? 0 : _unsafeAccess(self._checkpoints, pos)._value; } /** * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero * if there is none. */ function upperLookup(Trace208 storage self, uint48 key) internal view returns (uint208) { uint256 len = self._checkpoints.length; uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len); return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value; } /** * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero * if there is none. * * NOTE: This is a variant of {upperLookup} that is optimised to find "recent" checkpoint (checkpoints with high * keys). */ function upperLookupRecent(Trace208 storage self, uint48 key) internal view returns (uint208) { uint256 len = self._checkpoints.length; uint256 low = 0; uint256 high = len; if (len > 5) { uint256 mid = len - Math.sqrt(len); if (key < _unsafeAccess(self._checkpoints, mid)._key) { high = mid; } else { low = mid + 1; } } uint256 pos = _upperBinaryLookup(self._checkpoints, key, low, high); return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value; } /** * @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints. */ function latest(Trace208 storage self) internal view returns (uint208) { uint256 pos = self._checkpoints.length; return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value; } /** * @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value * in the most recent checkpoint. */ function latestCheckpoint(Trace208 storage self) internal view returns (bool exists, uint48 _key, uint208 _value) { uint256 pos = self._checkpoints.length; if (pos == 0) { return (false, 0, 0); } else { Checkpoint208 memory ckpt = _unsafeAccess(self._checkpoints, pos - 1); return (true, ckpt._key, ckpt._value); } } /** * @dev Returns the number of checkpoint. */ function length(Trace208 storage self) internal view returns (uint256) { return self._checkpoints.length; } /** * @dev Returns checkpoint at given position. */ function at(Trace208 storage self, uint32 pos) internal view returns (Checkpoint208 memory) { return self._checkpoints[pos]; } /** * @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint, * or by updating the last one. */ function _insert(Checkpoint208[] storage self, uint48 key, uint208 value) private returns (uint208, uint208) { uint256 pos = self.length; if (pos > 0) { // Copying to memory is important here. Checkpoint208 memory last = _unsafeAccess(self, pos - 1); // Checkpoint keys must be non-decreasing. if (last._key > key) { revert CheckpointUnorderedInsertion(); } // Update or push new checkpoint if (last._key == key) { _unsafeAccess(self, pos - 1)._value = value; } else { self.push(Checkpoint208({_key: key, _value: value})); } return (last._value, value); } else { self.push(Checkpoint208({_key: key, _value: value})); return (0, value); } } /** * @dev Return the index of the last (most recent) checkpoint with key lower or equal than the search key, or `high` * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive * `high`. * * WARNING: `high` should not be greater than the array's length. */ function _upperBinaryLookup( Checkpoint208[] storage self, uint48 key, uint256 low, uint256 high ) private view returns (uint256) { while (low < high) { uint256 mid = Math.average(low, high); if (_unsafeAccess(self, mid)._key > key) { high = mid; } else { low = mid + 1; } } return high; } /** * @dev Return the index of the first (oldest) checkpoint with key is greater or equal than the search key, or * `high` if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and * exclusive `high`. * * WARNING: `high` should not be greater than the array's length. */ function _lowerBinaryLookup( Checkpoint208[] storage self, uint48 key, uint256 low, uint256 high ) private view returns (uint256) { while (low < high) { uint256 mid = Math.average(low, high); if (_unsafeAccess(self, mid)._key < key) { low = mid + 1; } else { high = mid; } } return high; } /** * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds. */ function _unsafeAccess( Checkpoint208[] storage self, uint256 pos ) private pure returns (Checkpoint208 storage result) { assembly { mstore(0, self.slot) result.slot := add(keccak256(0, 0x20), pos) } } struct Trace160 { Checkpoint160[] _checkpoints; } struct Checkpoint160 { uint96 _key; uint160 _value; } /** * @dev Pushes a (`key`, `value`) pair into a Trace160 so that it is stored as the checkpoint. * * Returns previous value and new value. * * IMPORTANT: Never accept `key` as a user input, since an arbitrary `type(uint96).max` key set will disable the * library. */ function push(Trace160 storage self, uint96 key, uint160 value) internal returns (uint160, uint160) { return _insert(self._checkpoints, key, value); } /** * @dev Returns the value in the first (oldest) checkpoint with key greater or equal than the search key, or zero if * there is none. */ function lowerLookup(Trace160 storage self, uint96 key) internal view returns (uint160) { uint256 len = self._checkpoints.length; uint256 pos = _lowerBinaryLookup(self._checkpoints, key, 0, len); return pos == len ? 0 : _unsafeAccess(self._checkpoints, pos)._value; } /** * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero * if there is none. */ function upperLookup(Trace160 storage self, uint96 key) internal view returns (uint160) { uint256 len = self._checkpoints.length; uint256 pos = _upperBinaryLookup(self._checkpoints, key, 0, len); return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value; } /** * @dev Returns the value in the last (most recent) checkpoint with key lower or equal than the search key, or zero * if there is none. * * NOTE: This is a variant of {upperLookup} that is optimised to find "recent" checkpoint (checkpoints with high * keys). */ function upperLookupRecent(Trace160 storage self, uint96 key) internal view returns (uint160) { uint256 len = self._checkpoints.length; uint256 low = 0; uint256 high = len; if (len > 5) { uint256 mid = len - Math.sqrt(len); if (key < _unsafeAccess(self._checkpoints, mid)._key) { high = mid; } else { low = mid + 1; } } uint256 pos = _upperBinaryLookup(self._checkpoints, key, low, high); return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value; } /** * @dev Returns the value in the most recent checkpoint, or zero if there are no checkpoints. */ function latest(Trace160 storage self) internal view returns (uint160) { uint256 pos = self._checkpoints.length; return pos == 0 ? 0 : _unsafeAccess(self._checkpoints, pos - 1)._value; } /** * @dev Returns whether there is a checkpoint in the structure (i.e. it is not empty), and if so the key and value * in the most recent checkpoint. */ function latestCheckpoint(Trace160 storage self) internal view returns (bool exists, uint96 _key, uint160 _value) { uint256 pos = self._checkpoints.length; if (pos == 0) { return (false, 0, 0); } else { Checkpoint160 memory ckpt = _unsafeAccess(self._checkpoints, pos - 1); return (true, ckpt._key, ckpt._value); } } /** * @dev Returns the number of checkpoint. */ function length(Trace160 storage self) internal view returns (uint256) { return self._checkpoints.length; } /** * @dev Returns checkpoint at given position. */ function at(Trace160 storage self, uint32 pos) internal view returns (Checkpoint160 memory) { return self._checkpoints[pos]; } /** * @dev Pushes a (`key`, `value`) pair into an ordered list of checkpoints, either by inserting a new checkpoint, * or by updating the last one. */ function _insert(Checkpoint160[] storage self, uint96 key, uint160 value) private returns (uint160, uint160) { uint256 pos = self.length; if (pos > 0) { // Copying to memory is important here. Checkpoint160 memory last = _unsafeAccess(self, pos - 1); // Checkpoint keys must be non-decreasing. if (last._key > key) { revert CheckpointUnorderedInsertion(); } // Update or push new checkpoint if (last._key == key) { _unsafeAccess(self, pos - 1)._value = value; } else { self.push(Checkpoint160({_key: key, _value: value})); } return (last._value, value); } else { self.push(Checkpoint160({_key: key, _value: value})); return (0, value); } } /** * @dev Return the index of the last (most recent) checkpoint with key lower or equal than the search key, or `high` * if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and exclusive * `high`. * * WARNING: `high` should not be greater than the array's length. */ function _upperBinaryLookup( Checkpoint160[] storage self, uint96 key, uint256 low, uint256 high ) private view returns (uint256) { while (low < high) { uint256 mid = Math.average(low, high); if (_unsafeAccess(self, mid)._key > key) { high = mid; } else { low = mid + 1; } } return high; } /** * @dev Return the index of the first (oldest) checkpoint with key is greater or equal than the search key, or * `high` if there is none. `low` and `high` define a section where to do the search, with inclusive `low` and * exclusive `high`. * * WARNING: `high` should not be greater than the array's length. */ function _lowerBinaryLookup( Checkpoint160[] storage self, uint96 key, uint256 low, uint256 high ) private view returns (uint256) { while (low < high) { uint256 mid = Math.average(low, high); if (_unsafeAccess(self, mid)._key < key) { low = mid + 1; } else { high = mid; } } return high; } /** * @dev Access an element of the array without performing bounds check. The position is assumed to be within bounds. */ function _unsafeAccess( Checkpoint160[] storage self, uint256 pos ) private pure returns (Checkpoint160 storage result) { assembly { mstore(0, self.slot) result.slot := add(keccak256(0, 0x20), pos) } } } // File: @openzeppelin/contracts/utils/math/SafeCast.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SafeCast.sol) // This file was procedurally generated from scripts/generate/templates/SafeCast.js. pragma solidity ^0.8.20; /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeCast { /** * @dev Value doesn't fit in an uint of `bits` size. */ error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value); /** * @dev An int value doesn't fit in an uint of `bits` size. */ error SafeCastOverflowedIntToUint(int256 value); /** * @dev Value doesn't fit in an int of `bits` size. */ error SafeCastOverflowedIntDowncast(uint8 bits, int256 value); /** * @dev An uint value doesn't fit in an int of `bits` size. */ error SafeCastOverflowedUintToInt(uint256 value); /** * @dev Returns the downcasted uint248 from uint256, reverting on * overflow (when the input is greater than largest uint248). * * Counterpart to Solidity's `uint248` operator. * * Requirements: * * - input must fit into 248 bits */ function toUint248(uint256 value) internal pure returns (uint248) { if (value > type(uint248).max) { revert SafeCastOverflowedUintDowncast(248, value); } return uint248(value); } /** * @dev Returns the downcasted uint240 from uint256, reverting on * overflow (when the input is greater than largest uint240). * * Counterpart to Solidity's `uint240` operator. * * Requirements: * * - input must fit into 240 bits */ function toUint240(uint256 value) internal pure returns (uint240) { if (value > type(uint240).max) { revert SafeCastOverflowedUintDowncast(240, value); } return uint240(value); } /** * @dev Returns the downcasted uint232 from uint256, reverting on * overflow (when the input is greater than largest uint232). * * Counterpart to Solidity's `uint232` operator. * * Requirements: * * - input must fit into 232 bits */ function toUint232(uint256 value) internal pure returns (uint232) { if (value > type(uint232).max) { revert SafeCastOverflowedUintDowncast(232, value); } return uint232(value); } /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { if (value > type(uint224).max) { revert SafeCastOverflowedUintDowncast(224, value); } return uint224(value); } /** * @dev Returns the downcasted uint216 from uint256, reverting on * overflow (when the input is greater than largest uint216). * * Counterpart to Solidity's `uint216` operator. * * Requirements: * * - input must fit into 216 bits */ function toUint216(uint256 value) internal pure returns (uint216) { if (value > type(uint216).max) { revert SafeCastOverflowedUintDowncast(216, value); } return uint216(value); } /** * @dev Returns the downcasted uint208 from uint256, reverting on * overflow (when the input is greater than largest uint208). * * Counterpart to Solidity's `uint208` operator. * * Requirements: * * - input must fit into 208 bits */ function toUint208(uint256 value) internal pure returns (uint208) { if (value > type(uint208).max) { revert SafeCastOverflowedUintDowncast(208, value); } return uint208(value); } /** * @dev Returns the downcasted uint200 from uint256, reverting on * overflow (when the input is greater than largest uint200). * * Counterpart to Solidity's `uint200` operator. * * Requirements: * * - input must fit into 200 bits */ function toUint200(uint256 value) internal pure returns (uint200) { if (value > type(uint200).max) { revert SafeCastOverflowedUintDowncast(200, value); } return uint200(value); } /** * @dev Returns the downcasted uint192 from uint256, reverting on * overflow (when the input is greater than largest uint192). * * Counterpart to Solidity's `uint192` operator. * * Requirements: * * - input must fit into 192 bits */ function toUint192(uint256 value) internal pure returns (uint192) { if (value > type(uint192).max) { revert SafeCastOverflowedUintDowncast(192, value); } return uint192(value); } /** * @dev Returns the downcasted uint184 from uint256, reverting on * overflow (when the input is greater than largest uint184). * * Counterpart to Solidity's `uint184` operator. * * Requirements: * * - input must fit into 184 bits */ function toUint184(uint256 value) internal pure returns (uint184) { if (value > type(uint184).max) { revert SafeCastOverflowedUintDowncast(184, value); } return uint184(value); } /** * @dev Returns the downcasted uint176 from uint256, reverting on * overflow (when the input is greater than largest uint176). * * Counterpart to Solidity's `uint176` operator. * * Requirements: * * - input must fit into 176 bits */ function toUint176(uint256 value) internal pure returns (uint176) { if (value > type(uint176).max) { revert SafeCastOverflowedUintDowncast(176, value); } return uint176(value); } /** * @dev Returns the downcasted uint168 from uint256, reverting on * overflow (when the input is greater than largest uint168). * * Counterpart to Solidity's `uint168` operator. * * Requirements: * * - input must fit into 168 bits */ function toUint168(uint256 value) internal pure returns (uint168) { if (value > type(uint168).max) { revert SafeCastOverflowedUintDowncast(168, value); } return uint168(value); } /** * @dev Returns the downcasted uint160 from uint256, reverting on * overflow (when the input is greater than largest uint160). * * Counterpart to Solidity's `uint160` operator. * * Requirements: * * - input must fit into 160 bits */ function toUint160(uint256 value) internal pure returns (uint160) { if (value > type(uint160).max) { revert SafeCastOverflowedUintDowncast(160, value); } return uint160(value); } /** * @dev Returns the downcasted uint152 from uint256, reverting on * overflow (when the input is greater than largest uint152). * * Counterpart to Solidity's `uint152` operator. * * Requirements: * * - input must fit into 152 bits */ function toUint152(uint256 value) internal pure returns (uint152) { if (value > type(uint152).max) { revert SafeCastOverflowedUintDowncast(152, value); } return uint152(value); } /** * @dev Returns the downcasted uint144 from uint256, reverting on * overflow (when the input is greater than largest uint144). * * Counterpart to Solidity's `uint144` operator. * * Requirements: * * - input must fit into 144 bits */ function toUint144(uint256 value) internal pure returns (uint144) { if (value > type(uint144).max) { revert SafeCastOverflowedUintDowncast(144, value); } return uint144(value); } /** * @dev Returns the downcasted uint136 from uint256, reverting on * overflow (when the input is greater than largest uint136). * * Counterpart to Solidity's `uint136` operator. * * Requirements: * * - input must fit into 136 bits */ function toUint136(uint256 value) internal pure returns (uint136) { if (value > type(uint136).max) { revert SafeCastOverflowedUintDowncast(136, value); } return uint136(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { if (value > type(uint128).max) { revert SafeCastOverflowedUintDowncast(128, value); } return uint128(value); } /** * @dev Returns the downcasted uint120 from uint256, reverting on * overflow (when the input is greater than largest uint120). * * Counterpart to Solidity's `uint120` operator. * * Requirements: * * - input must fit into 120 bits */ function toUint120(uint256 value) internal pure returns (uint120) { if (value > type(uint120).max) { revert SafeCastOverflowedUintDowncast(120, value); } return uint120(value); } /** * @dev Returns the downcasted uint112 from uint256, reverting on * overflow (when the input is greater than largest uint112). * * Counterpart to Solidity's `uint112` operator. * * Requirements: * * - input must fit into 112 bits */ function toUint112(uint256 value) internal pure returns (uint112) { if (value > type(uint112).max) { revert SafeCastOverflowedUintDowncast(112, value); } return uint112(value); } /** * @dev Returns the downcasted uint104 from uint256, reverting on * overflow (when the input is greater than largest uint104). * * Counterpart to Solidity's `uint104` operator. * * Requirements: * * - input must fit into 104 bits */ function toUint104(uint256 value) internal pure returns (uint104) { if (value > type(uint104).max) { revert SafeCastOverflowedUintDowncast(104, value); } return uint104(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { if (value > type(uint96).max) { revert SafeCastOverflowedUintDowncast(96, value); } return uint96(value); } /** * @dev Returns the downcasted uint88 from uint256, reverting on * overflow (when the input is greater than largest uint88). * * Counterpart to Solidity's `uint88` operator. * * Requirements: * * - input must fit into 88 bits */ function toUint88(uint256 value) internal pure returns (uint88) { if (value > type(uint88).max) { revert SafeCastOverflowedUintDowncast(88, value); } return uint88(value); } /** * @dev Returns the downcasted uint80 from uint256, reverting on * overflow (when the input is greater than largest uint80). * * Counterpart to Solidity's `uint80` operator. * * Requirements: * * - input must fit into 80 bits */ function toUint80(uint256 value) internal pure returns (uint80) { if (value > type(uint80).max) { revert SafeCastOverflowedUintDowncast(80, value); } return uint80(value); } /** * @dev Returns the downcasted uint72 from uint256, reverting on * overflow (when the input is greater than largest uint72). * * Counterpart to Solidity's `uint72` operator. * * Requirements: * * - input must fit into 72 bits */ function toUint72(uint256 value) internal pure returns (uint72) { if (value > type(uint72).max) { revert SafeCastOverflowedUintDowncast(72, value); } return uint72(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { if (value > type(uint64).max) { revert SafeCastOverflowedUintDowncast(64, value); } return uint64(value); } /** * @dev Returns the downcasted uint56 from uint256, reverting on * overflow (when the input is greater than largest uint56). * * Counterpart to Solidity's `uint56` operator. * * Requirements: * * - input must fit into 56 bits */ function toUint56(uint256 value) internal pure returns (uint56) { if (value > type(uint56).max) { revert SafeCastOverflowedUintDowncast(56, value); } return uint56(value); } /** * @dev Returns the downcasted uint48 from uint256, reverting on * overflow (when the input is greater than largest uint48). * * Counterpart to Solidity's `uint48` operator. * * Requirements: * * - input must fit into 48 bits */ function toUint48(uint256 value) internal pure returns (uint48) { if (value > type(uint48).max) { revert SafeCastOverflowedUintDowncast(48, value); } return uint48(value); } /** * @dev Returns the downcasted uint40 from uint256, reverting on * overflow (when the input is greater than largest uint40). * * Counterpart to Solidity's `uint40` operator. * * Requirements: * * - input must fit into 40 bits */ function toUint40(uint256 value) internal pure returns (uint40) { if (value > type(uint40).max) { revert SafeCastOverflowedUintDowncast(40, value); } return uint40(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { if (value > type(uint32).max) { revert SafeCastOverflowedUintDowncast(32, value); } return uint32(value); } /** * @dev Returns the downcasted uint24 from uint256, reverting on * overflow (when the input is greater than largest uint24). * * Counterpart to Solidity's `uint24` operator. * * Requirements: * * - input must fit into 24 bits */ function toUint24(uint256 value) internal pure returns (uint24) { if (value > type(uint24).max) { revert SafeCastOverflowedUintDowncast(24, value); } return uint24(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { if (value > type(uint16).max) { revert SafeCastOverflowedUintDowncast(16, value); } return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits */ function toUint8(uint256 value) internal pure returns (uint8) { if (value > type(uint8).max) { revert SafeCastOverflowedUintDowncast(8, value); } return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { if (value < 0) { revert SafeCastOverflowedIntToUint(value); } return uint256(value); } /** * @dev Returns the downcasted int248 from int256, reverting on * overflow (when the input is less than smallest int248 or * greater than largest int248). * * Counterpart to Solidity's `int248` operator. * * Requirements: * * - input must fit into 248 bits */ function toInt248(int256 value) internal pure returns (int248 downcasted) { downcasted = int248(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(248, value); } } /** * @dev Returns the downcasted int240 from int256, reverting on * overflow (when the input is less than smallest int240 or * greater than largest int240). * * Counterpart to Solidity's `int240` operator. * * Requirements: * * - input must fit into 240 bits */ function toInt240(int256 value) internal pure returns (int240 downcasted) { downcasted = int240(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(240, value); } } /** * @dev Returns the downcasted int232 from int256, reverting on * overflow (when the input is less than smallest int232 or * greater than largest int232). * * Counterpart to Solidity's `int232` operator. * * Requirements: * * - input must fit into 232 bits */ function toInt232(int256 value) internal pure returns (int232 downcasted) { downcasted = int232(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(232, value); } } /** * @dev Returns the downcasted int224 from int256, reverting on * overflow (when the input is less than smallest int224 or * greater than largest int224). * * Counterpart to Solidity's `int224` operator. * * Requirements: * * - input must fit into 224 bits */ function toInt224(int256 value) internal pure returns (int224 downcasted) { downcasted = int224(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(224, value); } } /** * @dev Returns the downcasted int216 from int256, reverting on * overflow (when the input is less than smallest int216 or * greater than largest int216). * * Counterpart to Solidity's `int216` operator. * * Requirements: * * - input must fit into 216 bits */ function toInt216(int256 value) internal pure returns (int216 downcasted) { downcasted = int216(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(216, value); } } /** * @dev Returns the downcasted int208 from int256, reverting on * overflow (when the input is less than smallest int208 or * greater than largest int208). * * Counterpart to Solidity's `int208` operator. * * Requirements: * * - input must fit into 208 bits */ function toInt208(int256 value) internal pure returns (int208 downcasted) { downcasted = int208(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(208, value); } } /** * @dev Returns the downcasted int200 from int256, reverting on * overflow (when the input is less than smallest int200 or * greater than largest int200). * * Counterpart to Solidity's `int200` operator. * * Requirements: * * - input must fit into 200 bits */ function toInt200(int256 value) internal pure returns (int200 downcasted) { downcasted = int200(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(200, value); } } /** * @dev Returns the downcasted int192 from int256, reverting on * overflow (when the input is less than smallest int192 or * greater than largest int192). * * Counterpart to Solidity's `int192` operator. * * Requirements: * * - input must fit into 192 bits */ function toInt192(int256 value) internal pure returns (int192 downcasted) { downcasted = int192(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(192, value); } } /** * @dev Returns the downcasted int184 from int256, reverting on * overflow (when the input is less than smallest int184 or * greater than largest int184). * * Counterpart to Solidity's `int184` operator. * * Requirements: * * - input must fit into 184 bits */ function toInt184(int256 value) internal pure returns (int184 downcasted) { downcasted = int184(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(184, value); } } /** * @dev Returns the downcasted int176 from int256, reverting on * overflow (when the input is less than smallest int176 or * greater than largest int176). * * Counterpart to Solidity's `int176` operator. * * Requirements: * * - input must fit into 176 bits */ function toInt176(int256 value) internal pure returns (int176 downcasted) { downcasted = int176(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(176, value); } } /** * @dev Returns the downcasted int168 from int256, reverting on * overflow (when the input is less than smallest int168 or * greater than largest int168). * * Counterpart to Solidity's `int168` operator. * * Requirements: * * - input must fit into 168 bits */ function toInt168(int256 value) internal pure returns (int168 downcasted) { downcasted = int168(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(168, value); } } /** * @dev Returns the downcasted int160 from int256, reverting on * overflow (when the input is less than smallest int160 or * greater than largest int160). * * Counterpart to Solidity's `int160` operator. * * Requirements: * * - input must fit into 160 bits */ function toInt160(int256 value) internal pure returns (int160 downcasted) { downcasted = int160(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(160, value); } } /** * @dev Returns the downcasted int152 from int256, reverting on * overflow (when the input is less than smallest int152 or * greater than largest int152). * * Counterpart to Solidity's `int152` operator. * * Requirements: * * - input must fit into 152 bits */ function toInt152(int256 value) internal pure returns (int152 downcasted) { downcasted = int152(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(152, value); } } /** * @dev Returns the downcasted int144 from int256, reverting on * overflow (when the input is less than smallest int144 or * greater than largest int144). * * Counterpart to Solidity's `int144` operator. * * Requirements: * * - input must fit into 144 bits */ function toInt144(int256 value) internal pure returns (int144 downcasted) { downcasted = int144(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(144, value); } } /** * @dev Returns the downcasted int136 from int256, reverting on * overflow (when the input is less than smallest int136 or * greater than largest int136). * * Counterpart to Solidity's `int136` operator. * * Requirements: * * - input must fit into 136 bits */ function toInt136(int256 value) internal pure returns (int136 downcasted) { downcasted = int136(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(136, value); } } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits */ function toInt128(int256 value) internal pure returns (int128 downcasted) { downcasted = int128(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(128, value); } } /** * @dev Returns the downcasted int120 from int256, reverting on * overflow (when the input is less than smallest int120 or * greater than largest int120). * * Counterpart to Solidity's `int120` operator. * * Requirements: * * - input must fit into 120 bits */ function toInt120(int256 value) internal pure returns (int120 downcasted) { downcasted = int120(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(120, value); } } /** * @dev Returns the downcasted int112 from int256, reverting on * overflow (when the input is less than smallest int112 or * greater than largest int112). * * Counterpart to Solidity's `int112` operator. * * Requirements: * * - input must fit into 112 bits */ function toInt112(int256 value) internal pure returns (int112 downcasted) { downcasted = int112(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(112, value); } } /** * @dev Returns the downcasted int104 from int256, reverting on * overflow (when the input is less than smallest int104 or * greater than largest int104). * * Counterpart to Solidity's `int104` operator. * * Requirements: * * - input must fit into 104 bits */ function toInt104(int256 value) internal pure returns (int104 downcasted) { downcasted = int104(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(104, value); } } /** * @dev Returns the downcasted int96 from int256, reverting on * overflow (when the input is less than smallest int96 or * greater than largest int96). * * Counterpart to Solidity's `int96` operator. * * Requirements: * * - input must fit into 96 bits */ function toInt96(int256 value) internal pure returns (int96 downcasted) { downcasted = int96(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(96, value); } } /** * @dev Returns the downcasted int88 from int256, reverting on * overflow (when the input is less than smallest int88 or * greater than largest int88). * * Counterpart to Solidity's `int88` operator. * * Requirements: * * - input must fit into 88 bits */ function toInt88(int256 value) internal pure returns (int88 downcasted) { downcasted = int88(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(88, value); } } /** * @dev Returns the downcasted int80 from int256, reverting on * overflow (when the input is less than smallest int80 or * greater than largest int80). * * Counterpart to Solidity's `int80` operator. * * Requirements: * * - input must fit into 80 bits */ function toInt80(int256 value) internal pure returns (int80 downcasted) { downcasted = int80(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(80, value); } } /** * @dev Returns the downcasted int72 from int256, reverting on * overflow (when the input is less than smallest int72 or * greater than largest int72). * * Counterpart to Solidity's `int72` operator. * * Requirements: * * - input must fit into 72 bits */ function toInt72(int256 value) internal pure returns (int72 downcasted) { downcasted = int72(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(72, value); } } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits */ function toInt64(int256 value) internal pure returns (int64 downcasted) { downcasted = int64(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(64, value); } } /** * @dev Returns the downcasted int56 from int256, reverting on * overflow (when the input is less than smallest int56 or * greater than largest int56). * * Counterpart to Solidity's `int56` operator. * * Requirements: * * - input must fit into 56 bits */ function toInt56(int256 value) internal pure returns (int56 downcasted) { downcasted = int56(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(56, value); } } /** * @dev Returns the downcasted int48 from int256, reverting on * overflow (when the input is less than smallest int48 or * greater than largest int48). * * Counterpart to Solidity's `int48` operator. * * Requirements: * * - input must fit into 48 bits */ function toInt48(int256 value) internal pure returns (int48 downcasted) { downcasted = int48(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(48, value); } } /** * @dev Returns the downcasted int40 from int256, reverting on * overflow (when the input is less than smallest int40 or * greater than largest int40). * * Counterpart to Solidity's `int40` operator. * * Requirements: * * - input must fit into 40 bits */ function toInt40(int256 value) internal pure returns (int40 downcasted) { downcasted = int40(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(40, value); } } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits */ function toInt32(int256 value) internal pure returns (int32 downcasted) { downcasted = int32(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(32, value); } } /** * @dev Returns the downcasted int24 from int256, reverting on * overflow (when the input is less than smallest int24 or * greater than largest int24). * * Counterpart to Solidity's `int24` operator. * * Requirements: * * - input must fit into 24 bits */ function toInt24(int256 value) internal pure returns (int24 downcasted) { downcasted = int24(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(24, value); } } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits */ function toInt16(int256 value) internal pure returns (int16 downcasted) { downcasted = int16(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(16, value); } } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits */ function toInt8(int256 value) internal pure returns (int8 downcasted) { downcasted = int8(value); if (downcasted != value) { revert SafeCastOverflowedIntDowncast(8, value); } } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive if (value > uint256(type(int256).max)) { revert SafeCastOverflowedUintToInt(value); } return int256(value); } } // File: @openzeppelin/contracts/utils/types/Time.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/types/Time.sol) pragma solidity ^0.8.20; /** * @dev This library provides helpers for manipulating time-related objects. * * It uses the following types: * - `uint48` for timepoints * - `uint32` for durations * * While the library doesn't provide specific types for timepoints and duration, it does provide: * - a `Delay` type to represent duration that can be programmed to change value automatically at a given point * - additional helper functions */ library Time { using Time for *; /** * @dev Get the block timestamp as a Timepoint. */ function timestamp() internal view returns (uint48) { return SafeCast.toUint48(block.timestamp); } /** * @dev Get the block number as a Timepoint. */ function blockNumber() internal view returns (uint48) { return SafeCast.toUint48(block.number); } // ==================================================== Delay ===================================================== /** * @dev A `Delay` is a uint32 duration that can be programmed to change value automatically at a given point in the * future. The "effect" timepoint describes when the transitions happens from the "old" value to the "new" value. * This allows updating the delay applied to some operation while keeping some guarantees. * * In particular, the {update} function guarantees that if the delay is reduced, the old delay still applies for * some time. For example if the delay is currently 7 days to do an upgrade, the admin should not be able to set * the delay to 0 and upgrade immediately. If the admin wants to reduce the delay, the old delay (7 days) should * still apply for some time. * * * The `Delay` type is 112 bits long, and packs the following: * * ``` * | [uint48]: effect date (timepoint) * | | [uint32]: value before (duration) * ↓ ↓ ↓ [uint32]: value after (duration) * 0xAAAAAAAAAAAABBBBBBBBCCCCCCCC * ``` * * NOTE: The {get} and {withUpdate} functions operate using timestamps. Block number based delays are not currently * supported. */ type Delay is uint112; /** * @dev Wrap a duration into a Delay to add the one-step "update in the future" feature */ function toDelay(uint32 duration) internal pure returns (Delay) { return Delay.wrap(duration); } /** * @dev Get the value at a given timepoint plus the pending value and effect timepoint if there is a scheduled * change after this timepoint. If the effect timepoint is 0, then the pending value should not be considered. */ function _getFullAt(Delay self, uint48 timepoint) private pure returns (uint32, uint32, uint48) { (uint32 valueBefore, uint32 valueAfter, uint48 effect) = self.unpack(); return effect <= timepoint ? (valueAfter, 0, 0) : (valueBefore, valueAfter, effect); } /** * @dev Get the current value plus the pending value and effect timepoint if there is a scheduled change. If the * effect timepoint is 0, then the pending value should not be considered. */ function getFull(Delay self) internal view returns (uint32, uint32, uint48) { return _getFullAt(self, timestamp()); } /** * @dev Get the current value. */ function get(Delay self) internal view returns (uint32) { (uint32 delay, , ) = self.getFull(); return delay; } /** * @dev Update a Delay object so that it takes a new duration after a timepoint that is automatically computed to * enforce the old delay at the moment of the update. Returns the updated Delay object and the timestamp when the * new delay becomes effective. */ function withUpdate( Delay self, uint32 newValue, uint32 minSetback ) internal view returns (Delay updatedDelay, uint48 effect) { uint32 value = self.get(); uint32 setback = uint32(Math.max(minSetback, value > newValue ? value - newValue : 0)); effect = timestamp() + setback; return (pack(value, newValue, effect), effect); } /** * @dev Split a delay into its components: valueBefore, valueAfter and effect (transition timepoint). */ function unpack(Delay self) internal pure returns (uint32 valueBefore, uint32 valueAfter, uint48 effect) { uint112 raw = Delay.unwrap(self); valueAfter = uint32(raw); valueBefore = uint32(raw >> 32); effect = uint48(raw >> 64); return (valueBefore, valueAfter, effect); } /** * @dev pack the components into a Delay object. */ function pack(uint32 valueBefore, uint32 valueAfter, uint48 effect) internal pure returns (Delay) { return Delay.wrap((uint112(effect) << 64) | (uint112(valueBefore) << 32) | uint112(valueAfter)); } } // File: @openzeppelin/contracts/governance/utils/Votes.sol // OpenZeppelin Contracts (last updated v5.0.0) (governance/utils/Votes.sol) pragma solidity ^0.8.20; /** * @dev This is a base abstract contract that tracks voting units, which are a measure of voting power that can be * transferred, and provides a system of vote delegation, where an account can delegate its voting units to a sort of * "representative" that will pool delegated voting units from different accounts and can then use it to vote in * decisions. In fact, voting units _must_ be delegated in order to count as actual votes, and an account has to * delegate those votes to itself if it wishes to participate in decisions and does not have a trusted representative. * * This contract is often combined with a token contract such that voting units correspond to token units. For an * example, see {ERC721Votes}. * * The full history of delegate votes is tracked on-chain so that governance protocols can consider votes as distributed * at a particular block number to protect against flash loans and double voting. The opt-in delegate system makes the * cost of this history tracking optional. * * When using this module the derived contract must implement {_getVotingUnits} (for example, make it return * {ERC721-balanceOf}), and can use {_transferVotingUnits} to track a change in the distribution of those units (in the * previous example, it would be included in {ERC721-_update}). */ abstract contract Votes is Context, EIP712, Nonces, IERC5805 { using Checkpoints for Checkpoints.Trace208; bytes32 private constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); mapping(address account => address) private _delegatee; mapping(address delegatee => Checkpoints.Trace208) private _delegateCheckpoints; Checkpoints.Trace208 private _totalCheckpoints; /** * @dev The clock was incorrectly modified. */ error ERC6372InconsistentClock(); /** * @dev Lookup to future votes is not available. */ error ERC5805FutureLookup(uint256 timepoint, uint48 clock); /** * @dev Clock used for flagging checkpoints. Can be overridden to implement timestamp based * checkpoints (and voting), in which case {CLOCK_MODE} should be overridden as well to match. */ function clock() public view virtual returns (uint48) { return Time.blockNumber(); } /** * @dev Machine-readable description of the clock as specified in EIP-6372. */ // solhint-disable-next-line func-name-mixedcase function CLOCK_MODE() public view virtual returns (string memory) { // Check that the clock was not modified if (clock() != Time.blockNumber()) { revert ERC6372InconsistentClock(); } return "mode=blocknumber&from=default"; } /** * @dev Returns the current amount of votes that `account` has. */ function getVotes(address account) public view virtual returns (uint256) { return _delegateCheckpoints[account].latest(); } /** * @dev Returns the amount of votes that `account` had at a specific moment in the past. If the `clock()` is * configured to use block numbers, this will return the value at the end of the corresponding block. * * Requirements: * * - `timepoint` must be in the past. If operating using block numbers, the block must be already mined. */ function getPastVotes(address account, uint256 timepoint) public view virtual returns (uint256) { uint48 currentTimepoint = clock(); if (timepoint >= currentTimepoint) { revert ERC5805FutureLookup(timepoint, currentTimepoint); } return _delegateCheckpoints[account].upperLookupRecent(SafeCast.toUint48(timepoint)); } /** * @dev Returns the total supply of votes available at a specific moment in the past. If the `clock()` is * configured to use block numbers, this will return the value at the end of the corresponding block. * * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. * Votes that have not been delegated are still part of total supply, even though they would not participate in a * vote. * * Requirements: * * - `timepoint` must be in the past. If operating using block numbers, the block must be already mined. */ function getPastTotalSupply(uint256 timepoint) public view virtual returns (uint256) { uint48 currentTimepoint = clock(); if (timepoint >= currentTimepoint) { revert ERC5805FutureLookup(timepoint, currentTimepoint); } return _totalCheckpoints.upperLookupRecent(SafeCast.toUint48(timepoint)); } /** * @dev Returns the current total supply of votes. */ function _getTotalSupply() internal view virtual returns (uint256) { return _totalCheckpoints.latest(); } /** * @dev Returns the delegate that `account` has chosen. */ function delegates(address account) public view virtual returns (address) { return _delegatee[account]; } /** * @dev Delegates votes from the sender to `delegatee`. */ function delegate(address delegatee) public virtual { address account = _msgSender(); _delegate(account, delegatee); } /** * @dev Delegates votes from signer to `delegatee`. */ function delegateBySig( address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) public virtual { if (block.timestamp > expiry) { revert VotesExpiredSignature(expiry); } address signer = ECDSA.recover( _hashTypedDataV4(keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry))), v, r, s ); _useCheckedNonce(signer, nonce); _delegate(signer, delegatee); } /** * @dev Delegate all of `account`'s voting units to `delegatee`. * * Emits events {IVotes-DelegateChanged} and {IVotes-DelegateVotesChanged}. */ function _delegate(address account, address delegatee) internal virtual { address oldDelegate = delegates(account); _delegatee[account] = delegatee; emit DelegateChanged(account, oldDelegate, delegatee); _moveDelegateVotes(oldDelegate, delegatee, _getVotingUnits(account)); } /** * @dev Transfers, mints, or burns voting units. To register a mint, `from` should be zero. To register a burn, `to` * should be zero. Total supply of voting units will be adjusted with mints and burns. */ function _transferVotingUnits(address from, address to, uint256 amount) internal virtual { if (from == address(0)) { _push(_totalCheckpoints, _add, SafeCast.toUint208(amount)); } if (to == address(0)) { _push(_totalCheckpoints, _subtract, SafeCast.toUint208(amount)); } _moveDelegateVotes(delegates(from), delegates(to), amount); } /** * @dev Moves delegated votes from one delegate to another. */ function _moveDelegateVotes(address from, address to, uint256 amount) private { if (from != to && amount > 0) { if (from != address(0)) { (uint256 oldValue, uint256 newValue) = _push( _delegateCheckpoints[from], _subtract, SafeCast.toUint208(amount) ); emit DelegateVotesChanged(from, oldValue, newValue); } if (to != address(0)) { (uint256 oldValue, uint256 newValue) = _push( _delegateCheckpoints[to], _add, SafeCast.toUint208(amount) ); emit DelegateVotesChanged(to, oldValue, newValue); } } } /** * @dev Get number of checkpoints for `account`. */ function _numCheckpoints(address account) internal view virtual returns (uint32) { return SafeCast.toUint32(_delegateCheckpoints[account].length()); } /** * @dev Get the `pos`-th checkpoint for `account`. */ function _checkpoints( address account, uint32 pos ) internal view virtual returns (Checkpoints.Checkpoint208 memory) { return _delegateCheckpoints[account].at(pos); } function _push( Checkpoints.Trace208 storage store, function(uint208, uint208) view returns (uint208) op, uint208 delta ) private returns (uint208, uint208) { return store.push(clock(), op(store.latest(), delta)); } function _add(uint208 a, uint208 b) private pure returns (uint208) { return a + b; } function _subtract(uint208 a, uint208 b) private pure returns (uint208) { return a - b; } /** * @dev Must return the voting units held by an account. */ function _getVotingUnits(address) internal view virtual returns (uint256); } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Votes.sol) pragma solidity ^0.8.20; /** * @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's, * and supports token supply up to 2^208^ - 1, while COMP is limited to 2^96^ - 1. * * NOTE: This contract does not provide interface compatibility with Compound's COMP token. * * This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either * by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting * power can be queried through the public accessors {getVotes} and {getPastVotes}. * * By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it * requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked. */ abstract contract ERC20Votes is ERC20, Votes { /** * @dev Total supply cap has been exceeded, introducing a risk of votes overflowing. */ error ERC20ExceededSafeSupply(uint256 increasedSupply, uint256 cap); /** * @dev Maximum token supply. Defaults to `type(uint208).max` (2^208^ - 1). * * This maximum is enforced in {_update}. It limits the total supply of the token, which is otherwise a uint256, * so that checkpoints can be stored in the Trace208 structure used by {{Votes}}. Increasing this value will not * remove the underlying limitation, and will cause {_update} to fail because of a math overflow in * {_transferVotingUnits}. An override could be used to further restrict the total supply (to a lower value) if * additional logic requires it. When resolving override conflicts on this function, the minimum should be * returned. */ function _maxSupply() internal view virtual returns (uint256) { return type(uint208).max; } /** * @dev Move voting power when tokens are transferred. * * Emits a {IVotes-DelegateVotesChanged} event. */ function _update(address from, address to, uint256 value) internal virtual override { super._update(from, to, value); if (from == address(0)) { uint256 supply = totalSupply(); uint256 cap = _maxSupply(); if (supply > cap) { revert ERC20ExceededSafeSupply(supply, cap); } } _transferVotingUnits(from, to, value); } /** * @dev Returns the voting units of an `account`. * * WARNING: Overriding this function may compromise the internal vote accounting. * `ERC20Votes` assumes tokens map to voting units 1:1 and this is not easy to change. */ function _getVotingUnits(address account) internal view virtual override returns (uint256) { return balanceOf(account); } /** * @dev Get number of checkpoints for `account`. */ function numCheckpoints(address account) public view virtual returns (uint32) { return _numCheckpoints(account); } /** * @dev Get the `pos`-th checkpoint for `account`. */ function checkpoints(address account, uint32 pos) public view virtual returns (Checkpoints.Checkpoint208 memory) { return _checkpoints(account, pos); } } // File: Azzi Token.sol pragma solidity ^0.8.20; contract AzziToken is ERC20, ERC20Burnable, ERC20Pausable, Ownable, ERC20Permit, ERC20Votes { uint256 private constant _totalSupply = 20000000000000 * 10 ** 18; mapping(address => uint256) private _lockupExpirations; mapping(address => uint256) private _lockedBalances; event LockupSet(address indexed account, uint256 expiration, uint256 amount); event LockupReleased(address indexed account, uint256 amount); constructor(address initialOwner) ERC20("Azzi Token", "AZZI") Ownable(initialOwner) ERC20Permit("Azzi Token") { _mint(initialOwner, _totalSupply); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } function mintMulti(address[] memory _accounts, uint256[] memory _amounts) external onlyOwner returns (bool) { require( _accounts.length == _amounts.length, "arrays must have same length" ); for (uint256 i = 0; i < _accounts.length; i++) { require(_amounts[i] > 0, "amount must be greater than 0"); _mint(_accounts[i], _amounts[i]); } return true; } function transferMulti(address[] memory _accounts, uint256[] memory _amounts) external returns (bool) { require(_accounts.length == _amounts.length, "arrays must have same length"); for (uint256 i = 0; i < _accounts.length; i++) { require(_amounts[i] > 0, "amount must be greater than 0"); _transfer(_msgSender(), _accounts[i], _amounts[i]); } return true; } function setLockup(address account, uint256 lockupTimeInMinutes, uint256 amount) external onlyOwner { require(lockupTimeInMinutes > 0, "Lockup time should be greater than zero"); require(amount <= balanceOf(account), "Lockup amount exceeds account balance"); uint256 lockupTimeInSeconds = lockupTimeInMinutes * 60; _lockupExpirations[account] = block.timestamp + lockupTimeInSeconds; _lockedBalances[account] = amount; emit LockupSet(account, _lockupExpirations[account], amount); } function releaseLockup(address account, uint256 amount) external onlyOwner { require(isLocked(account), "Account is not locked"); require(amount <= _lockedBalances[account], "Release amount exceeds locked balance"); _lockedBalances[account] -= amount; if (_lockedBalances[account] == 0) { _lockupExpirations[account] = 0; } emit LockupReleased(account, amount); } function isLocked(address account) public view returns (bool) { return block.timestamp < _lockupExpirations[account] && _lockedBalances[account] > 0; } function lockedBalance(address account) public view returns (uint256) { return _lockedBalances[account]; } function lockedInfo(address account) public view returns (uint256, uint256) { uint256 remainingTime = _lockupExpirations[account] > block.timestamp ? _lockupExpirations[account] - block.timestamp : 0; return (_lockedBalances[account], remainingTime); } function clock() public view override returns (uint48) { return uint48(block.timestamp); } function CLOCK_MODE() public pure override returns (string memory) { return "mode=timestamp"; } function _update(address from, address to, uint256 amount) internal override(ERC20, ERC20Pausable, ERC20Votes) { require(!isLocked(from) || balanceOf(from) - _lockedBalances[from] >= amount, "Token transfer is locked or insufficient unlocked balance"); super._update(from, to, amount); } function nonces(address owner) public view override(ERC20Permit, Nonces) returns (uint256) { return super.nonces(owner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CheckpointUnorderedInsertion","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"uint256","name":"increasedSupply","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"ERC20ExceededSafeSupply","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"},{"internalType":"uint48","name":"clock","type":"uint48"}],"name":"ERC5805FutureLookup","type":"error"},{"inputs":[],"name":"ERC6372InconsistentClock","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","type":"error"},{"inputs":[{"internalType":"uint256","name":"expiry","type":"uint256"}],"name":"VotesExpiredSignature","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousVotes","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVotes","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LockupReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"expiration","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LockupSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"CLOCK_MODE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint48","name":"_key","type":"uint48"},{"internalType":"uint208","name":"_value","type":"uint208"}],"internalType":"struct Checkpoints.Checkpoint208","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clock","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"timepoint","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"lockedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"lockedInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"mintMulti","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"releaseLockup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"lockupTimeInMinutes","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setLockup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"transferMulti","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61016060405234801562000011575f80fd5b5060405162006a0b38038062006a0b833981810160405281019062000037919062001400565b6040518060400160405280600a81526020017f417a7a6920546f6b656e00000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250836040518060400160405280600a81526020017f417a7a6920546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f415a5a4900000000000000000000000000000000000000000000000000000000815250816003908162000122919062001694565b50806004908162000134919062001694565b5050505f60055f6101000a81548160ff0219169083151502179055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001c3575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001ba919062001789565b60405180910390fd5b620001d481620002ac60201b60201c565b50620001eb6006836200037160201b90919060201c565b6101208181525050620002096007826200037160201b90919060201c565b6101408181525050818051906020012060e08181525050808051906020012061010081815250504660a0818152505062000248620003c660201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050505050620002a5816cfc6f7c40458122964d000000006200042260201b60201c565b5062001c6f565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60208351101562000396576200038e83620004ac60201b60201c565b9050620003c0565b82620003a8836200051660201b60201c565b5f019081620003b8919062001694565b5060ff5f1b90505b92915050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60e05161010051463060405160200162000407959493929190620017cf565b60405160208183030381529060405280519060200120905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000495575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200048c919062001789565b60405180910390fd5b620004a85f83836200051f60201b60201c565b5050565b5f80829050601f81511115620004fb57826040517f305a27a9000000000000000000000000000000000000000000000000000000008152600401620004f29190620018b4565b60405180910390fd5b805181620005099062001905565b5f1c175f1b915050919050565b5f819050919050565b6200053083620005f160201b60201c565b158062000597575080600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205462000588856200068260201b60201c565b620005949190620019a1565b10155b620005d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d09062001a4f565b60405180910390fd5b620005ec838383620006c760201b60201c565b505050565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054421080156200067b57505f600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054115b9050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b620006da8383836200079960201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000781575f6200071f620007c160201b60201c565b90505f62000732620007ca60201b60201c565b9050808211156200077e5781816040517f1cb15d260000000000000000000000000000000000000000000000000000000081526004016200077592919062001a6f565b60405180910390fd5b50505b62000794838383620007ed60201b60201c565b505050565b620007a9620008f160201b60201c565b620007bc8383836200093b60201b60201c565b505050565b5f600254905090565b5f79ffffffffffffffffffffffffffffffffffffffffffffffffffff8016905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620008535762000850600b62000b5f60201b6200189817620008448462000b7660201b60201c565b62000be660201b60201c565b50505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008b957620008b6600b62000c3560201b620018ad17620008aa8462000b7660201b60201c565b62000be660201b60201c565b50505b620008ec620008ce8462000c4c60201b60201c565b620008df8462000c4c60201b60201c565b8362000cb160201b60201c565b505050565b6200090162000f5b60201b60201c565b1562000939576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200098f578060025f82825462000982919062001a9a565b9250508190555062000a60565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000a1b578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000a129392919062001ad4565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000aa9578060025f828254039250508190555062000af3565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b52919062001b0f565b60405180910390a3505050565b5f818362000b6e919062001b4f565b905092915050565b5f79ffffffffffffffffffffffffffffffffffffffffffffffffffff801682111562000bde5760d0826040517f6dfcc65000000000000000000000000000000000000000000000000000000000815260040162000bd592919062001bf0565b60405180910390fd5b819050919050565b5f8062000c2962000bfc62000f7060201b60201c565b62000c1862000c118862000f7760201b60201c565b868860201c565b8762000fe560201b9092919060201c565b91509150935093915050565b5f818362000c44919062001c1b565b905092915050565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562000ced57505f81115b1562000f56575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000e24575f8062000d93600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2062000c3560201b620018ad1762000d878662000b7660201b60201c565b62000be660201b60201c565b79ffffffffffffffffffffffffffffffffffffffffffffffffffff16915079ffffffffffffffffffffffffffffffffffffffffffffffffffff1691508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405162000e1992919062001a6f565b60405180910390a250505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000f55575f8062000ec4600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2062000b5f60201b620018981762000eb88662000b7660201b60201c565b62000be660201b60201c565b79ffffffffffffffffffffffffffffffffffffffffffffffffffff16915079ffffffffffffffffffffffffffffffffffffffffffffffffffff1691508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405162000f4a92919062001a6f565b60405180910390a250505b5b505050565b5f60055f9054906101000a900460ff16905090565b5f42905090565b5f80825f018054905090505f811462000fdb5762000fac835f0160018362000fa09190620019a1565b6200100860201b60201c565b5f0160069054906101000a900479ffffffffffffffffffffffffffffffffffffffffffffffffffff1662000fdd565b5f5b915050919050565b5f8062000ffc855f0185856200101a60201b60201c565b91509150935093915050565b5f825f528160205f2001905092915050565b5f805f858054905090505f811115620012b3575f6200104e87600184620010429190620019a1565b6200100860201b60201c565b6040518060400160405290815f82015f9054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020015f820160069054906101000a900479ffffffffffffffffffffffffffffffffffffffffffffffffffff1679ffffffffffffffffffffffffffffffffffffffffffffffffffff1679ffffffffffffffffffffffffffffffffffffffffffffffffffff168152505090508565ffffffffffff16815f015165ffffffffffff1611156200113a576040517f2520601d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8565ffffffffffff16815f015165ffffffffffff1603620011c8578462001176886001856200116a9190620019a1565b6200100860201b60201c565b5f0160066101000a81548179ffffffffffffffffffffffffffffffffffffffffffffffffffff021916908379ffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550620012a1565b8660405180604001604052808865ffffffffffff1681526020018779ffffffffffffffffffffffffffffffffffffffffffffffffffff16815250908060018154018082558091505060019003905f5260205f20015f909190919091505f820151815f015f6101000a81548165ffffffffffff021916908365ffffffffffff1602179055506020820151815f0160066101000a81548179ffffffffffffffffffffffffffffffffffffffffffffffffffff021916908379ffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b80602001518593509350505062001393565b8560405180604001604052808765ffffffffffff1681526020018679ffffffffffffffffffffffffffffffffffffffffffffffffffff16815250908060018154018082558091505060019003905f5260205f20015f909190919091505f820151815f015f6101000a81548165ffffffffffff021916908365ffffffffffff1602179055506020820151815f0160066101000a81548179ffffffffffffffffffffffffffffffffffffffffffffffffffff021916908379ffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505f8492509250505b935093915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620013ca826200139f565b9050919050565b620013dc81620013be565b8114620013e7575f80fd5b50565b5f81519050620013fa81620013d1565b92915050565b5f602082840312156200141857620014176200139b565b5b5f6200142784828501620013ea565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620014ac57607f821691505b602082108103620014c257620014c162001467565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620015267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620014e9565b620015328683620014e9565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200157c6200157662001570846200154a565b62001553565b6200154a565b9050919050565b5f819050919050565b62001597836200155c565b620015af620015a68262001583565b848454620014f5565b825550505050565b5f90565b620015c5620015b7565b620015d28184846200158c565b505050565b5b81811015620015f957620015ed5f82620015bb565b600181019050620015d8565b5050565b601f82111562001648576200161281620014c8565b6200161d84620014da565b810160208510156200162d578190505b620016456200163c85620014da565b830182620015d7565b50505b505050565b5f82821c905092915050565b5f6200166a5f19846008026200164d565b1980831691505092915050565b5f62001684838362001659565b9150826002028217905092915050565b6200169f8262001430565b67ffffffffffffffff811115620016bb57620016ba6200143a565b5b620016c7825462001494565b620016d4828285620015fd565b5f60209050601f8311600181146200170a575f8415620016f5578287015190505b62001701858262001677565b86555062001770565b601f1984166200171a86620014c8565b5f5b8281101562001743578489015182556001820191506020850194506020810190506200171c565b868310156200176357848901516200175f601f89168262001659565b8355505b6001600288020188555050505b505050505050565b6200178381620013be565b82525050565b5f6020820190506200179e5f83018462001778565b92915050565b5f819050919050565b620017b881620017a4565b82525050565b620017c9816200154a565b82525050565b5f60a082019050620017e45f830188620017ad565b620017f36020830187620017ad565b620018026040830186620017ad565b620018116060830185620017be565b62001820608083018462001778565b9695505050505050565b5f82825260208201905092915050565b5f5b83811015620018595780820151818401526020810190506200183c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f620018808262001430565b6200188c81856200182a565b93506200189e8185602086016200183a565b620018a98162001864565b840191505092915050565b5f6020820190508181035f830152620018ce818462001874565b905092915050565b5f81519050919050565b5f819050602082019050919050565b5f620018fc8251620017a4565b80915050919050565b5f6200191182620018d6565b826200191d84620018e0565b90506200192a81620018ef565b925060208210156200196d57620019687fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83602003600802620014e9565b831692505b5050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620019ad826200154a565b9150620019ba836200154a565b9250828203905081811115620019d557620019d462001974565b5b92915050565b7f546f6b656e207472616e73666572206973206c6f636b6564206f7220696e73755f8201527f6666696369656e7420756e6c6f636b65642062616c616e636500000000000000602082015250565b5f62001a376039836200182a565b915062001a4482620019db565b604082019050919050565b5f6020820190508181035f83015262001a688162001a29565b9050919050565b5f60408201905062001a845f830185620017be565b62001a936020830184620017be565b9392505050565b5f62001aa6826200154a565b915062001ab3836200154a565b925082820190508082111562001ace5762001acd62001974565b5b92915050565b5f60608201905062001ae95f83018662001778565b62001af86020830185620017be565b62001b076040830184620017be565b949350505050565b5f60208201905062001b245f830184620017be565b92915050565b5f79ffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62001b5b8262001b2a565b915062001b688362001b2a565b9250828201905079ffffffffffffffffffffffffffffffffffffffffffffffffffff81111562001b9d5762001b9c62001974565b5b92915050565b5f819050919050565b5f60ff82169050919050565b5f62001bd862001bd262001bcc8462001ba3565b62001553565b62001bac565b9050919050565b62001bea8162001bb8565b82525050565b5f60408201905062001c055f83018562001bdf565b62001c146020830184620017be565b9392505050565b5f62001c278262001b2a565b915062001c348362001b2a565b9250828203905079ffffffffffffffffffffffffffffffffffffffffffffffffffff81111562001c695762001c6862001974565b5b92915050565b60805160a05160c05160e051610100516101205161014051614d4a62001cc15f395f61212001525f6120e501525f6125cc01525f6125ab01525f611a6001525f611ab601525f611adf0152614d4a5ff3fe608060405234801561000f575f80fd5b506004361061023b575f3560e01c8063715018a6116101395780639ae697bf116100b6578063dd62ed3e1161007a578063dd62ed3e146106f3578063ef6a610f14610723578063f1127ed814610754578063f2fde38b14610784578063f326f0d7146107a05761023b565b80639ae697bf1461063f578063a9059cbb1461066f578063b9d88cbf1461069f578063c3cda520146106bb578063d505accf146106d75761023b565b80638da5cb5b116100fd5780638da5cb5b146105855780638e539e8c146105a357806391ddadf4146105d357806395d89b41146105f15780639ab24eb01461060f5761023b565b8063715018a61461050157806379cc67901461050b5780637ecebe00146105275780638456cb591461055757806384b0196e146105615761023b565b806340c10f19116101c7578063587cde1e1161018b578063587cde1e146104375780635c19a95c146104675780635c975abb146104835780636fcfff45146104a157806370a08231146104d15761023b565b806340c10f191461038157806342966c681461039d57806346e4959d146103b95780634a4fbeec146103e95780634bf5d7e9146104195761023b565b8063313ce5671161020e578063313ce567146102db57806335bce6e4146102f95780633644e515146103295780633a46b1a8146103475780633f4ba83a146103775761023b565b806306fdde031461023f578063095ea7b31461025d57806318160ddd1461028d57806323b872dd146102ab575b5f80fd5b6102476107bc565b60405161025491906139cf565b60405180910390f35b61027760048036038101906102729190613a8d565b61084c565b6040516102849190613ae5565b60405180910390f35b61029561086e565b6040516102a29190613b0d565b60405180910390f35b6102c560048036038101906102c09190613b26565b610877565b6040516102d29190613ae5565b60405180910390f35b6102e36108a5565b6040516102f09190613b91565b60405180910390f35b610313600480360381019061030e9190613daa565b6108ad565b6040516103209190613ae5565b60405180910390f35b6103316109bd565b60405161033e9190613e38565b60405180910390f35b610361600480360381019061035c9190613a8d565b6109cb565b60405161036e9190613b0d565b60405180910390f35b61037f610aa1565b005b61039b60048036038101906103969190613a8d565b610ab3565b005b6103b760048036038101906103b29190613e51565b610ac9565b005b6103d360048036038101906103ce9190613daa565b610add565b6040516103e09190613ae5565b60405180910390f35b61040360048036038101906103fe9190613e7c565b610bed565b6040516104109190613ae5565b60405180910390f35b610421610c7d565b60405161042e91906139cf565b60405180910390f35b610451600480360381019061044c9190613e7c565b610cba565b60405161045e9190613eb6565b60405180910390f35b610481600480360381019061047c9190613e7c565b610d1f565b005b61048b610d38565b6040516104989190613ae5565b60405180910390f35b6104bb60048036038101906104b69190613e7c565b610d4d565b6040516104c89190613eed565b60405180910390f35b6104eb60048036038101906104e69190613e7c565b610d5e565b6040516104f89190613b0d565b60405180910390f35b610509610da3565b005b61052560048036038101906105209190613a8d565b610db6565b005b610541600480360381019061053c9190613e7c565b610dd6565b60405161054e9190613b0d565b60405180910390f35b61055f610de7565b005b610569610df9565b60405161057c9796959493929190613ff7565b60405180910390f35b61058d610e9e565b60405161059a9190613eb6565b60405180910390f35b6105bd60048036038101906105b89190613e51565b610ec7565b6040516105ca9190613b0d565b60405180910390f35b6105db610f61565b6040516105e89190614099565b60405180910390f35b6105f9610f68565b60405161060691906139cf565b60405180910390f35b61062960048036038101906106249190613e7c565b610ff8565b6040516106369190613b0d565b60405180910390f35b61065960048036038101906106549190613e7c565b611061565b6040516106669190613b0d565b60405180910390f35b61068960048036038101906106849190613a8d565b6110a7565b6040516106969190613ae5565b60405180910390f35b6106b960048036038101906106b49190613a8d565b6110c9565b005b6106d560048036038101906106d09190614106565b6112c5565b005b6106f160048036038101906106ec919061418f565b61138a565b005b61070d6004803603810190610708919061422c565b6114cf565b60405161071a9190613b0d565b60405180910390f35b61073d60048036038101906107389190613e7c565b611551565b60405161074b92919061426a565b60405180910390f35b61076e600480360381019061076991906142bb565b611633565b60405161077b9190614369565b60405180910390f35b61079e60048036038101906107999190613e7c565b61164d565b005b6107ba60048036038101906107b59190614382565b6116d1565b005b6060600380546107cb906143ff565b80601f01602080910402602001604051908101604052809291908181526020018280546107f7906143ff565b80156108425780601f1061081957610100808354040283529160200191610842565b820191905f5260205f20905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b5f806108566118c2565b90506108638185856118c9565b600191505092915050565b5f600254905090565b5f806108816118c2565b905061088e8582856118db565b61089985858561196d565b60019150509392505050565b5f6012905090565b5f81518351146108f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e990614479565b60405180910390fd5b5f5b83518110156109b2575f83828151811061091157610910614497565b5b602002602001015111610959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109509061450e565b60405180910390fd5b61099f6109646118c2565b85838151811061097757610976614497565b5b602002602001015185848151811061099257610991614497565b5b602002602001015161196d565b80806109aa90614559565b9150506108f4565b506001905092915050565b5f6109c6611a5d565b905090565b5f806109d5610f61565b90508065ffffffffffff168310610a255782816040517fecd3f81e000000000000000000000000000000000000000000000000000000008152600401610a1c9291906145a0565b60405180910390fd5b610a7c610a3184611b13565b600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20611b6c90919063ffffffff16565b79ffffffffffffffffffffffffffffffffffffffffffffffffffff1691505092915050565b610aa9611c59565b610ab1611ce0565b565b610abb611c59565b610ac58282611d41565b5050565b610ada610ad46118c2565b82611dc0565b50565b5f610ae6611c59565b8151835114610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190614479565b60405180910390fd5b5f5b8351811015610be2575f838281518110610b4957610b48614497565b5b602002602001015111610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b889061450e565b60405180910390fd5b610bcf848281518110610ba757610ba6614497565b5b6020026020010151848381518110610bc257610bc1614497565b5b6020026020010151611d41565b8080610bda90614559565b915050610b2c565b506001905092915050565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205442108015610c7657505f600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054115b9050919050565b60606040518060400160405280600e81526020017f6d6f64653d74696d657374616d70000000000000000000000000000000000000815250905090565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610d286118c2565b9050610d348183611e3f565b5050565b5f60055f9054906101000a900460ff16905090565b5f610d5782611f4f565b9050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610dab611c59565b610db45f611fa4565b565b610dc882610dc26118c2565b836118db565b610dd28282611dc0565b5050565b5f610de082612069565b9050919050565b610def611c59565b610df761207a565b565b5f6060805f805f6060610e0a6120dc565b610e12612117565b46305f801b5f67ffffffffffffffff811115610e3157610e30613bae565b5b604051908082528060200260200182016040528015610e5f5781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f80610ed1610f61565b90508065ffffffffffff168310610f215782816040517fecd3f81e000000000000000000000000000000000000000000000000000000008152600401610f189291906145a0565b60405180910390fd5b610f3d610f2d84611b13565b600b611b6c90919063ffffffff16565b79ffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b5f42905090565b606060048054610f77906143ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa3906143ff565b8015610fee5780601f10610fc557610100808354040283529160200191610fee565b820191905f5260205f20905b815481529060010190602001808311610fd157829003601f168201915b5050505050905090565b5f61103e600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20612152565b79ffffffffffffffffffffffffffffffffffffffffffffffffffff169050919050565b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f806110b16118c2565b90506110be81858561196d565b600191505092915050565b6110d1611c59565b6110da82610bed565b611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090614611565b60405180910390fd5b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054811115611199576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111909061469f565b60405180910390fd5b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111e591906146bd565b925050819055505f600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403611273575f600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8173ffffffffffffffffffffffffffffffffffffffff167fb0c715c0c11d60097909f29f581b2dd96b3797d6803e72dce93cb0784921a67f826040516112b99190613b0d565b60405180910390a25050565b8342111561130a57836040517f4683af0e0000000000000000000000000000000000000000000000000000000081526004016113019190613b0d565b60405180910390fd5b5f61136b6113637fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf89898960405160200161134894939291906146f0565b604051602081830303815290604052805190602001206121b4565b8585856121cd565b905061137781876121fb565b6113818188611e3f565b50505050505050565b834211156113cf57836040517f627913020000000000000000000000000000000000000000000000000000000081526004016113c69190613b0d565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886113fd8c612252565b8960405160200161141396959493929190614733565b6040516020818303038152906040528051906020012090505f611435826121b4565b90505f611444828787876121cd565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114b857808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016114af929190614792565b60405180910390fd5b6114c38a8a8a6118c9565b50505050505050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f805f42600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541161159e575f6115e8565b42600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546115e791906146bd565b5b9050600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054819250925050915091565b61163b613909565b61164583836122a5565b905092915050565b611655611c59565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116c5575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016116bc9190613eb6565b60405180910390fd5b6116ce81611fa4565b50565b6116d9611c59565b5f821161171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290614829565b60405180910390fd5b61172483610d5e565b811115611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d906148b7565b60405180910390fd5b5f603c8361177491906148d5565b905080426117829190614916565b600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555081600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508373ffffffffffffffffffffffffffffffffffffffff167f86f2e10d5622d896b3f56e66c1a60639ca21a4674480f054bec2cb9ba62f40cb600c5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20548460405161188a92919061426a565b60405180910390a250505050565b5f81836118a59190614949565b905092915050565b5f81836118ba9190614996565b905092915050565b5f33905090565b6118d68383836001612304565b505050565b5f6118e684846114cf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119675781811015611958578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161194f939291906149e3565b60405180910390fd5b61196684848484035f612304565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119dd575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016119d49190613eb6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a4d575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611a449190613eb6565b60405180910390fd5b611a588383836124d3565b505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015611ad857507f000000000000000000000000000000000000000000000000000000000000000046145b15611b05577f00000000000000000000000000000000000000000000000000000000000000009050611b10565b611b0d612587565b90505b90565b5f65ffffffffffff8016821115611b64576030826040517f6dfcc650000000000000000000000000000000000000000000000000000000008152600401611b5b929190614a5a565b60405180910390fd5b819050919050565b5f80835f018054905090505f808290506005831115611bed575f611b8f8461261c565b84611b9a91906146bd565b9050611ba8875f0182612712565b5f015f9054906101000a900465ffffffffffff1665ffffffffffff168665ffffffffffff161015611bdb57809150611beb565b600181611be89190614916565b92505b505b5f611bfc875f01878585612724565b90505f8114611c4b57611c1d875f01600183611c1891906146bd565b612712565b5f0160069054906101000a900479ffffffffffffffffffffffffffffffffffffffffffffffffffff16611c4d565b5f5b94505050505092915050565b611c616118c2565b73ffffffffffffffffffffffffffffffffffffffff16611c7f610e9e565b73ffffffffffffffffffffffffffffffffffffffff1614611cde57611ca26118c2565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611cd59190613eb6565b60405180910390fd5b565b611ce8612799565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d2a6118c2565b604051611d379190613eb6565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611db1575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611da89190613eb6565b60405180910390fd5b611dbc5f83836124d3565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e30575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611e279190613eb6565b60405180910390fd5b611e3b825f836124d3565b5050565b5f611e4983610cba565b90508160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4611f4a8183611f45866127d9565b6127ea565b505050565b5f611f9d611f98600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20612a5a565b612a69565b9050919050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f61207382612ac0565b9050919050565b612082612b06565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120c56118c2565b6040516120d29190613eb6565b60405180910390a1565b606061211260067f0000000000000000000000000000000000000000000000000000000000000000612b4790919063ffffffff16565b905090565b606061214d60077f0000000000000000000000000000000000000000000000000000000000000000612b4790919063ffffffff16565b905090565b5f80825f018054905090505f81146121aa5761217c835f0160018361217791906146bd565b612712565b5f0160069054906101000a900479ffffffffffffffffffffffffffffffffffffffffffffffffffff166121ac565b5f5b915050919050565b5f6121c66121c0611a5d565b83612bf4565b9050919050565b5f805f806121dd88888888612c34565b9250925092506121ed8282612d1b565b829350505050949350505050565b5f61220583612252565b905080821461224d5782816040517f752d88c0000000000000000000000000000000000000000000000000000000008152600401612244929190614a81565b60405180910390fd5b505050565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b6122ad613909565b6122fc82600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20612e7d90919063ffffffff16565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612374575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161236b9190613eb6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123e4575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016123db9190613eb6565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156124cd578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516124c49190613b0d565b60405180910390a35b50505050565b6124dc83610bed565b1580612538575080600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461252b85610d5e565b61253591906146bd565b10155b612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e90614b18565b60405180910390fd5b612582838383612f4c565b505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000004630604051602001612601959493929190614b36565b60405160208183030381529060405280519060200120905090565b5f80820361262c575f905061270d565b5f600161263884612ffa565b901c6001901b9050600181848161265257612651614b87565b5b048201901c9050600181848161266b5761266a614b87565b5b048201901c9050600181848161268457612683614b87565b5b048201901c9050600181848161269d5761269c614b87565b5b048201901c905060018184816126b6576126b5614b87565b5b048201901c905060018184816126cf576126ce614b87565b5b048201901c905060018184816126e8576126e7614b87565b5b048201901c90506127098182858161270357612702614b87565b5b046130d1565b9150505b919050565b5f825f528160205f2001905092915050565b5f5b8183101561278e575f61273984846130e9565b90508465ffffffffffff1661274e8783612712565b5f015f9054906101000a900465ffffffffffff1665ffffffffffff16111561277857809250612788565b6001816127859190614916565b93505b50612726565b819050949350505050565b6127a1610d38565b6127d7576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f6127e382610d5e565b9050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561282557505f81115b15612a55575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461293f575f806128b0600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206118ad6128ab8661310e565b61317b565b79ffffffffffffffffffffffffffffffffffffffffffffffffffff16915079ffffffffffffffffffffffffffffffffffffffffffffffffffff1691508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405161293492919061426a565b60405180910390a250505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a54575f806129c5600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206118986129c08661310e565b61317b565b79ffffffffffffffffffffffffffffffffffffffffffffffffffff16915079ffffffffffffffffffffffffffffffffffffffffffffffffffff1691508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612a4992919061426a565b60405180910390a250505b5b505050565b5f815f01805490509050919050565b5f63ffffffff8016821115612ab8576020826040517f6dfcc650000000000000000000000000000000000000000000000000000000008152600401612aaf929190614bed565b60405180910390fd5b819050919050565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b612b0e610d38565b15612b45576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b606060ff5f1b8314612b6357612b5c836131ba565b9050612bee565b818054612b6f906143ff565b80601f0160208091040260200160405190810160405280929190818152602001828054612b9b906143ff565b8015612be65780601f10612bbd57610100808354040283529160200191612be6565b820191905f5260205f20905b815481529060010190602001808311612bc957829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c1115612c70575f600385925092509250612d11565b5f6001888888886040515f8152602001604052604051612c939493929190614c14565b6020604051602081039080840390855afa158015612cb3573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612d04575f60015f801b93509350935050612d11565b805f805f1b935093509350505b9450945094915050565b5f6003811115612d2e57612d2d614c57565b5b826003811115612d4157612d40614c57565b5b0315612e795760016003811115612d5b57612d5a614c57565b5b826003811115612d6e57612d6d614c57565b5b03612da5576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60026003811115612db957612db8614c57565b5b826003811115612dcc57612dcb614c57565b5b03612e1057805f1c6040517ffce698f7000000000000000000000000000000000000000000000000000000008152600401612e079190613b0d565b60405180910390fd5b600380811115612e2357612e22614c57565b5b826003811115612e3657612e35614c57565b5b03612e7857806040517fd78bce0c000000000000000000000000000000000000000000000000000000008152600401612e6f9190613e38565b60405180910390fd5b5b5050565b612e85613909565b825f018263ffffffff1681548110612ea057612e9f614497565b5b905f5260205f20016040518060400160405290815f82015f9054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020015f820160069054906101000a900479ffffffffffffffffffffffffffffffffffffffffffffffffffff1679ffffffffffffffffffffffffffffffffffffffffffffffffffff1679ffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b612f5783838361322c565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fea575f612f9361086e565b90505f612f9e613244565b905080821115612fe75781816040517f1cb15d26000000000000000000000000000000000000000000000000000000008152600401612fde92919061426a565b60405180910390fd5b50505b612ff5838383613267565b505050565b5f805f90505f608084901c111561301957608083901c92506080810190505b5f604084901c111561303357604083901c92506040810190505b5f602084901c111561304d57602083901c92506020810190505b5f601084901c111561306757601083901c92506010810190505b5f600884901c111561308157600883901c92506008810190505b5f600484901c111561309b57600483901c92506004810190505b5f600284901c11156130b557600283901c92506002810190505b5f600184901c11156130c8576001810190505b80915050919050565b5f8183106130df57816130e1565b825b905092915050565b5f60028284186130f99190614c84565b8284166131069190614916565b905092915050565b5f79ffffffffffffffffffffffffffffffffffffffffffffffffffff80168211156131735760d0826040517f6dfcc65000000000000000000000000000000000000000000000000000000000815260040161316a929190614ced565b60405180910390fd5b819050919050565b5f806131ae613188610f61565b61319e61319488612152565b868863ffffffff16565b8761331f9092919063ffffffff16565b91509150935093915050565b60605f6131c68361333a565b90505f602067ffffffffffffffff8111156131e4576131e3613bae565b5b6040519080825280601f01601f1916602001820160405280156132165781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b613234612b06565b61323f838383613388565b505050565b5f79ffffffffffffffffffffffffffffffffffffffffffffffffffff8016905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036132b3576132b0600b6118986132ab8461310e565b61317b565b50505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036132ff576132fc600b6118ad6132f78461310e565b61317b565b50505b61331a61330b84610cba565b61331484610cba565b836127ea565b505050565b5f8061332e855f0185856135a1565b91509150935093915050565b5f8060ff835f1c169050601f81111561337f576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036133d8578060025f8282546133cc9190614916565b925050819055506134a6565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613461578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401613458939291906149e3565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036134ed578060025f8282540392505081905550613537565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516135949190613b0d565b60405180910390a3505050565b5f805f858054905090505f811115613821575f6135ca876001846135c591906146bd565b612712565b6040518060400160405290815f82015f9054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020015f820160069054906101000a900479ffffffffffffffffffffffffffffffffffffffffffffffffffff1679ffffffffffffffffffffffffffffffffffffffffffffffffffff1679ffffffffffffffffffffffffffffffffffffffffffffffffffff168152505090508565ffffffffffff16815f015165ffffffffffff1611156136b5576040517f2520601d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8565ffffffffffff16815f015165ffffffffffff160361373757846136e6886001856136e191906146bd565b612712565b5f0160066101000a81548179ffffffffffffffffffffffffffffffffffffffffffffffffffff021916908379ffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550613810565b8660405180604001604052808865ffffffffffff1681526020018779ffffffffffffffffffffffffffffffffffffffffffffffffffff16815250908060018154018082558091505060019003905f5260205f20015f909190919091505f820151815f015f6101000a81548165ffffffffffff021916908365ffffffffffff1602179055506020820151815f0160066101000a81548179ffffffffffffffffffffffffffffffffffffffffffffffffffff021916908379ffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b806020015185935093505050613901565b8560405180604001604052808765ffffffffffff1681526020018679ffffffffffffffffffffffffffffffffffffffffffffffffffff16815250908060018154018082558091505060019003905f5260205f20015f909190919091505f820151815f015f6101000a81548165ffffffffffff021916908365ffffffffffff1602179055506020820151815f0160066101000a81548179ffffffffffffffffffffffffffffffffffffffffffffffffffff021916908379ffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505f8492509250505b935093915050565b60405180604001604052805f65ffffffffffff1681526020015f79ffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561397c578082015181840152602081019050613961565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6139a182613945565b6139ab818561394f565b93506139bb81856020860161395f565b6139c481613987565b840191505092915050565b5f6020820190508181035f8301526139e78184613997565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613a2982613a00565b9050919050565b613a3981613a1f565b8114613a43575f80fd5b50565b5f81359050613a5481613a30565b92915050565b5f819050919050565b613a6c81613a5a565b8114613a76575f80fd5b50565b5f81359050613a8781613a63565b92915050565b5f8060408385031215613aa357613aa26139f8565b5b5f613ab085828601613a46565b9250506020613ac185828601613a79565b9150509250929050565b5f8115159050919050565b613adf81613acb565b82525050565b5f602082019050613af85f830184613ad6565b92915050565b613b0781613a5a565b82525050565b5f602082019050613b205f830184613afe565b92915050565b5f805f60608486031215613b3d57613b3c6139f8565b5b5f613b4a86828701613a46565b9350506020613b5b86828701613a46565b9250506040613b6c86828701613a79565b9150509250925092565b5f60ff82169050919050565b613b8b81613b76565b82525050565b5f602082019050613ba45f830184613b82565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613be482613987565b810181811067ffffffffffffffff82111715613c0357613c02613bae565b5b80604052505050565b5f613c156139ef565b9050613c218282613bdb565b919050565b5f67ffffffffffffffff821115613c4057613c3f613bae565b5b602082029050602081019050919050565b5f80fd5b5f613c67613c6284613c26565b613c0c565b90508083825260208201905060208402830185811115613c8a57613c89613c51565b5b835b81811015613cb35780613c9f8882613a46565b845260208401935050602081019050613c8c565b5050509392505050565b5f82601f830112613cd157613cd0613baa565b5b8135613ce1848260208601613c55565b91505092915050565b5f67ffffffffffffffff821115613d0457613d03613bae565b5b602082029050602081019050919050565b5f613d27613d2284613cea565b613c0c565b90508083825260208201905060208402830185811115613d4a57613d49613c51565b5b835b81811015613d735780613d5f8882613a79565b845260208401935050602081019050613d4c565b5050509392505050565b5f82601f830112613d9157613d90613baa565b5b8135613da1848260208601613d15565b91505092915050565b5f8060408385031215613dc057613dbf6139f8565b5b5f83013567ffffffffffffffff811115613ddd57613ddc6139fc565b5b613de985828601613cbd565b925050602083013567ffffffffffffffff811115613e0a57613e096139fc565b5b613e1685828601613d7d565b9150509250929050565b5f819050919050565b613e3281613e20565b82525050565b5f602082019050613e4b5f830184613e29565b92915050565b5f60208284031215613e6657613e656139f8565b5b5f613e7384828501613a79565b91505092915050565b5f60208284031215613e9157613e906139f8565b5b5f613e9e84828501613a46565b91505092915050565b613eb081613a1f565b82525050565b5f602082019050613ec95f830184613ea7565b92915050565b5f63ffffffff82169050919050565b613ee781613ecf565b82525050565b5f602082019050613f005f830184613ede565b92915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b613f3a81613f06565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613f7281613a5a565b82525050565b5f613f838383613f69565b60208301905092915050565b5f602082019050919050565b5f613fa582613f40565b613faf8185613f4a565b9350613fba83613f5a565b805f5b83811015613fea578151613fd18882613f78565b9750613fdc83613f8f565b925050600181019050613fbd565b5085935050505092915050565b5f60e08201905061400a5f83018a613f31565b818103602083015261401c8189613997565b905081810360408301526140308188613997565b905061403f6060830187613afe565b61404c6080830186613ea7565b61405960a0830185613e29565b81810360c083015261406b8184613f9b565b905098975050505050505050565b5f65ffffffffffff82169050919050565b61409381614079565b82525050565b5f6020820190506140ac5f83018461408a565b92915050565b6140bb81613b76565b81146140c5575f80fd5b50565b5f813590506140d6816140b2565b92915050565b6140e581613e20565b81146140ef575f80fd5b50565b5f81359050614100816140dc565b92915050565b5f805f805f8060c087890312156141205761411f6139f8565b5b5f61412d89828a01613a46565b965050602061413e89828a01613a79565b955050604061414f89828a01613a79565b945050606061416089828a016140c8565b935050608061417189828a016140f2565b92505060a061418289828a016140f2565b9150509295509295509295565b5f805f805f805f60e0888a0312156141aa576141a96139f8565b5b5f6141b78a828b01613a46565b97505060206141c88a828b01613a46565b96505060406141d98a828b01613a79565b95505060606141ea8a828b01613a79565b94505060806141fb8a828b016140c8565b93505060a061420c8a828b016140f2565b92505060c061421d8a828b016140f2565b91505092959891949750929550565b5f8060408385031215614242576142416139f8565b5b5f61424f85828601613a46565b925050602061426085828601613a46565b9150509250929050565b5f60408201905061427d5f830185613afe565b61428a6020830184613afe565b9392505050565b61429a81613ecf565b81146142a4575f80fd5b50565b5f813590506142b581614291565b92915050565b5f80604083850312156142d1576142d06139f8565b5b5f6142de85828601613a46565b92505060206142ef858286016142a7565b9150509250929050565b61430281614079565b82525050565b5f79ffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b61433681614308565b82525050565b604082015f8201516143505f8501826142f9565b506020820151614363602085018261432d565b50505050565b5f60408201905061437c5f83018461433c565b92915050565b5f805f60608486031215614399576143986139f8565b5b5f6143a686828701613a46565b93505060206143b786828701613a79565b92505060406143c886828701613a79565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061441657607f821691505b602082108103614429576144286143d2565b5b50919050565b7f617272617973206d75737420686176652073616d65206c656e677468000000005f82015250565b5f614463601c8361394f565b915061446e8261442f565b602082019050919050565b5f6020820190508181035f83015261449081614457565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f616d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f6144f8601d8361394f565b9150614503826144c4565b602082019050919050565b5f6020820190508181035f830152614525816144ec565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61456382613a5a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145955761459461452c565b5b600182019050919050565b5f6040820190506145b35f830185613afe565b6145c0602083018461408a565b9392505050565b7f4163636f756e74206973206e6f74206c6f636b656400000000000000000000005f82015250565b5f6145fb60158361394f565b9150614606826145c7565b602082019050919050565b5f6020820190508181035f830152614628816145ef565b9050919050565b7f52656c6561736520616d6f756e742065786365656473206c6f636b65642062615f8201527f6c616e6365000000000000000000000000000000000000000000000000000000602082015250565b5f61468960258361394f565b91506146948261462f565b604082019050919050565b5f6020820190508181035f8301526146b68161467d565b9050919050565b5f6146c782613a5a565b91506146d283613a5a565b92508282039050818111156146ea576146e961452c565b5b92915050565b5f6080820190506147035f830187613e29565b6147106020830186613ea7565b61471d6040830185613afe565b61472a6060830184613afe565b95945050505050565b5f60c0820190506147465f830189613e29565b6147536020830188613ea7565b6147606040830187613ea7565b61476d6060830186613afe565b61477a6080830185613afe565b61478760a0830184613afe565b979650505050505050565b5f6040820190506147a55f830185613ea7565b6147b26020830184613ea7565b9392505050565b7f4c6f636b75702074696d652073686f756c6420626520677265617465722074685f8201527f616e207a65726f00000000000000000000000000000000000000000000000000602082015250565b5f61481360278361394f565b915061481e826147b9565b604082019050919050565b5f6020820190508181035f83015261484081614807565b9050919050565b7f4c6f636b757020616d6f756e742065786365656473206163636f756e742062615f8201527f6c616e6365000000000000000000000000000000000000000000000000000000602082015250565b5f6148a160258361394f565b91506148ac82614847565b604082019050919050565b5f6020820190508181035f8301526148ce81614895565b9050919050565b5f6148df82613a5a565b91506148ea83613a5a565b92508282026148f881613a5a565b9150828204841483151761490f5761490e61452c565b5b5092915050565b5f61492082613a5a565b915061492b83613a5a565b92508282019050808211156149435761494261452c565b5b92915050565b5f61495382614308565b915061495e83614308565b9250828201905079ffffffffffffffffffffffffffffffffffffffffffffffffffff8111156149905761498f61452c565b5b92915050565b5f6149a082614308565b91506149ab83614308565b9250828203905079ffffffffffffffffffffffffffffffffffffffffffffffffffff8111156149dd576149dc61452c565b5b92915050565b5f6060820190506149f65f830186613ea7565b614a036020830185613afe565b614a106040830184613afe565b949350505050565b5f819050919050565b5f819050919050565b5f614a44614a3f614a3a84614a18565b614a21565b613b76565b9050919050565b614a5481614a2a565b82525050565b5f604082019050614a6d5f830185614a4b565b614a7a6020830184613afe565b9392505050565b5f604082019050614a945f830185613ea7565b614aa16020830184613afe565b9392505050565b7f546f6b656e207472616e73666572206973206c6f636b6564206f7220696e73755f8201527f6666696369656e7420756e6c6f636b65642062616c616e636500000000000000602082015250565b5f614b0260398361394f565b9150614b0d82614aa8565b604082019050919050565b5f6020820190508181035f830152614b2f81614af6565b9050919050565b5f60a082019050614b495f830188613e29565b614b566020830187613e29565b614b636040830186613e29565b614b706060830185613afe565b614b7d6080830184613ea7565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f819050919050565b5f614bd7614bd2614bcd84614bb4565b614a21565b613b76565b9050919050565b614be781614bbd565b82525050565b5f604082019050614c005f830185614bde565b614c0d6020830184613afe565b9392505050565b5f608082019050614c275f830187613e29565b614c346020830186613b82565b614c416040830185613e29565b614c4e6060830184613e29565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b5f614c8e82613a5a565b9150614c9983613a5a565b925082614ca957614ca8614b87565b5b828204905092915050565b5f819050919050565b5f614cd7614cd2614ccd84614cb4565b614a21565b613b76565b9050919050565b614ce781614cbd565b82525050565b5f604082019050614d005f830185614cde565b614d0d6020830184613afe565b939250505056fea264697066735822122062dd0b6e1f0122a6bfe0bb5ca3889d5848b8cf0a912cefa7984b567bd41b7d9764736f6c63430008140033000000000000000000000000dbe5022424bb742e1dfd94646797b66e58298624
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061023b575f3560e01c8063715018a6116101395780639ae697bf116100b6578063dd62ed3e1161007a578063dd62ed3e146106f3578063ef6a610f14610723578063f1127ed814610754578063f2fde38b14610784578063f326f0d7146107a05761023b565b80639ae697bf1461063f578063a9059cbb1461066f578063b9d88cbf1461069f578063c3cda520146106bb578063d505accf146106d75761023b565b80638da5cb5b116100fd5780638da5cb5b146105855780638e539e8c146105a357806391ddadf4146105d357806395d89b41146105f15780639ab24eb01461060f5761023b565b8063715018a61461050157806379cc67901461050b5780637ecebe00146105275780638456cb591461055757806384b0196e146105615761023b565b806340c10f19116101c7578063587cde1e1161018b578063587cde1e146104375780635c19a95c146104675780635c975abb146104835780636fcfff45146104a157806370a08231146104d15761023b565b806340c10f191461038157806342966c681461039d57806346e4959d146103b95780634a4fbeec146103e95780634bf5d7e9146104195761023b565b8063313ce5671161020e578063313ce567146102db57806335bce6e4146102f95780633644e515146103295780633a46b1a8146103475780633f4ba83a146103775761023b565b806306fdde031461023f578063095ea7b31461025d57806318160ddd1461028d57806323b872dd146102ab575b5f80fd5b6102476107bc565b60405161025491906139cf565b60405180910390f35b61027760048036038101906102729190613a8d565b61084c565b6040516102849190613ae5565b60405180910390f35b61029561086e565b6040516102a29190613b0d565b60405180910390f35b6102c560048036038101906102c09190613b26565b610877565b6040516102d29190613ae5565b60405180910390f35b6102e36108a5565b6040516102f09190613b91565b60405180910390f35b610313600480360381019061030e9190613daa565b6108ad565b6040516103209190613ae5565b60405180910390f35b6103316109bd565b60405161033e9190613e38565b60405180910390f35b610361600480360381019061035c9190613a8d565b6109cb565b60405161036e9190613b0d565b60405180910390f35b61037f610aa1565b005b61039b60048036038101906103969190613a8d565b610ab3565b005b6103b760048036038101906103b29190613e51565b610ac9565b005b6103d360048036038101906103ce9190613daa565b610add565b6040516103e09190613ae5565b60405180910390f35b61040360048036038101906103fe9190613e7c565b610bed565b6040516104109190613ae5565b60405180910390f35b610421610c7d565b60405161042e91906139cf565b60405180910390f35b610451600480360381019061044c9190613e7c565b610cba565b60405161045e9190613eb6565b60405180910390f35b610481600480360381019061047c9190613e7c565b610d1f565b005b61048b610d38565b6040516104989190613ae5565b60405180910390f35b6104bb60048036038101906104b69190613e7c565b610d4d565b6040516104c89190613eed565b60405180910390f35b6104eb60048036038101906104e69190613e7c565b610d5e565b6040516104f89190613b0d565b60405180910390f35b610509610da3565b005b61052560048036038101906105209190613a8d565b610db6565b005b610541600480360381019061053c9190613e7c565b610dd6565b60405161054e9190613b0d565b60405180910390f35b61055f610de7565b005b610569610df9565b60405161057c9796959493929190613ff7565b60405180910390f35b61058d610e9e565b60405161059a9190613eb6565b60405180910390f35b6105bd60048036038101906105b89190613e51565b610ec7565b6040516105ca9190613b0d565b60405180910390f35b6105db610f61565b6040516105e89190614099565b60405180910390f35b6105f9610f68565b60405161060691906139cf565b60405180910390f35b61062960048036038101906106249190613e7c565b610ff8565b6040516106369190613b0d565b60405180910390f35b61065960048036038101906106549190613e7c565b611061565b6040516106669190613b0d565b60405180910390f35b61068960048036038101906106849190613a8d565b6110a7565b6040516106969190613ae5565b60405180910390f35b6106b960048036038101906106b49190613a8d565b6110c9565b005b6106d560048036038101906106d09190614106565b6112c5565b005b6106f160048036038101906106ec919061418f565b61138a565b005b61070d6004803603810190610708919061422c565b6114cf565b60405161071a9190613b0d565b60405180910390f35b61073d60048036038101906107389190613e7c565b611551565b60405161074b92919061426a565b60405180910390f35b61076e600480360381019061076991906142bb565b611633565b60405161077b9190614369565b60405180910390f35b61079e60048036038101906107999190613e7c565b61164d565b005b6107ba60048036038101906107b59190614382565b6116d1565b005b6060600380546107cb906143ff565b80601f01602080910402602001604051908101604052809291908181526020018280546107f7906143ff565b80156108425780601f1061081957610100808354040283529160200191610842565b820191905f5260205f20905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b5f806108566118c2565b90506108638185856118c9565b600191505092915050565b5f600254905090565b5f806108816118c2565b905061088e8582856118db565b61089985858561196d565b60019150509392505050565b5f6012905090565b5f81518351146108f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e990614479565b60405180910390fd5b5f5b83518110156109b2575f83828151811061091157610910614497565b5b602002602001015111610959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109509061450e565b60405180910390fd5b61099f6109646118c2565b85838151811061097757610976614497565b5b602002602001015185848151811061099257610991614497565b5b602002602001015161196d565b80806109aa90614559565b9150506108f4565b506001905092915050565b5f6109c6611a5d565b905090565b5f806109d5610f61565b90508065ffffffffffff168310610a255782816040517fecd3f81e000000000000000000000000000000000000000000000000000000008152600401610a1c9291906145a0565b60405180910390fd5b610a7c610a3184611b13565b600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20611b6c90919063ffffffff16565b79ffffffffffffffffffffffffffffffffffffffffffffffffffff1691505092915050565b610aa9611c59565b610ab1611ce0565b565b610abb611c59565b610ac58282611d41565b5050565b610ada610ad46118c2565b82611dc0565b50565b5f610ae6611c59565b8151835114610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190614479565b60405180910390fd5b5f5b8351811015610be2575f838281518110610b4957610b48614497565b5b602002602001015111610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b889061450e565b60405180910390fd5b610bcf848281518110610ba757610ba6614497565b5b6020026020010151848381518110610bc257610bc1614497565b5b6020026020010151611d41565b8080610bda90614559565b915050610b2c565b506001905092915050565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205442108015610c7657505f600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054115b9050919050565b60606040518060400160405280600e81526020017f6d6f64653d74696d657374616d70000000000000000000000000000000000000815250905090565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f610d286118c2565b9050610d348183611e3f565b5050565b5f60055f9054906101000a900460ff16905090565b5f610d5782611f4f565b9050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610dab611c59565b610db45f611fa4565b565b610dc882610dc26118c2565b836118db565b610dd28282611dc0565b5050565b5f610de082612069565b9050919050565b610def611c59565b610df761207a565b565b5f6060805f805f6060610e0a6120dc565b610e12612117565b46305f801b5f67ffffffffffffffff811115610e3157610e30613bae565b5b604051908082528060200260200182016040528015610e5f5781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f80610ed1610f61565b90508065ffffffffffff168310610f215782816040517fecd3f81e000000000000000000000000000000000000000000000000000000008152600401610f189291906145a0565b60405180910390fd5b610f3d610f2d84611b13565b600b611b6c90919063ffffffff16565b79ffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b5f42905090565b606060048054610f77906143ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa3906143ff565b8015610fee5780601f10610fc557610100808354040283529160200191610fee565b820191905f5260205f20905b815481529060010190602001808311610fd157829003601f168201915b5050505050905090565b5f61103e600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20612152565b79ffffffffffffffffffffffffffffffffffffffffffffffffffff169050919050565b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f806110b16118c2565b90506110be81858561196d565b600191505092915050565b6110d1611c59565b6110da82610bed565b611119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111090614611565b60405180910390fd5b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054811115611199576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111909061469f565b60405180910390fd5b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111e591906146bd565b925050819055505f600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403611273575f600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8173ffffffffffffffffffffffffffffffffffffffff167fb0c715c0c11d60097909f29f581b2dd96b3797d6803e72dce93cb0784921a67f826040516112b99190613b0d565b60405180910390a25050565b8342111561130a57836040517f4683af0e0000000000000000000000000000000000000000000000000000000081526004016113019190613b0d565b60405180910390fd5b5f61136b6113637fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf89898960405160200161134894939291906146f0565b604051602081830303815290604052805190602001206121b4565b8585856121cd565b905061137781876121fb565b6113818188611e3f565b50505050505050565b834211156113cf57836040517f627913020000000000000000000000000000000000000000000000000000000081526004016113c69190613b0d565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886113fd8c612252565b8960405160200161141396959493929190614733565b6040516020818303038152906040528051906020012090505f611435826121b4565b90505f611444828787876121cd565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114b857808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016114af929190614792565b60405180910390fd5b6114c38a8a8a6118c9565b50505050505050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f805f42600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541161159e575f6115e8565b42600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546115e791906146bd565b5b9050600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054819250925050915091565b61163b613909565b61164583836122a5565b905092915050565b611655611c59565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116c5575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016116bc9190613eb6565b60405180910390fd5b6116ce81611fa4565b50565b6116d9611c59565b5f821161171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290614829565b60405180910390fd5b61172483610d5e565b811115611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d906148b7565b60405180910390fd5b5f603c8361177491906148d5565b905080426117829190614916565b600c5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555081600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508373ffffffffffffffffffffffffffffffffffffffff167f86f2e10d5622d896b3f56e66c1a60639ca21a4674480f054bec2cb9ba62f40cb600c5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20548460405161188a92919061426a565b60405180910390a250505050565b5f81836118a59190614949565b905092915050565b5f81836118ba9190614996565b905092915050565b5f33905090565b6118d68383836001612304565b505050565b5f6118e684846114cf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119675781811015611958578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161194f939291906149e3565b60405180910390fd5b61196684848484035f612304565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119dd575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016119d49190613eb6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a4d575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611a449190613eb6565b60405180910390fd5b611a588383836124d3565b505050565b5f7f000000000000000000000000f93662bcc14a8af613c3af90d43075d17986810673ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16148015611ad857507f000000000000000000000000000000000000000000000000000000000000000146145b15611b05577f8a2e5dd4515405e26f3a40b81556e541b388ba8d55e8953ad218438c32e7f2f89050611b10565b611b0d612587565b90505b90565b5f65ffffffffffff8016821115611b64576030826040517f6dfcc650000000000000000000000000000000000000000000000000000000008152600401611b5b929190614a5a565b60405180910390fd5b819050919050565b5f80835f018054905090505f808290506005831115611bed575f611b8f8461261c565b84611b9a91906146bd565b9050611ba8875f0182612712565b5f015f9054906101000a900465ffffffffffff1665ffffffffffff168665ffffffffffff161015611bdb57809150611beb565b600181611be89190614916565b92505b505b5f611bfc875f01878585612724565b90505f8114611c4b57611c1d875f01600183611c1891906146bd565b612712565b5f0160069054906101000a900479ffffffffffffffffffffffffffffffffffffffffffffffffffff16611c4d565b5f5b94505050505092915050565b611c616118c2565b73ffffffffffffffffffffffffffffffffffffffff16611c7f610e9e565b73ffffffffffffffffffffffffffffffffffffffff1614611cde57611ca26118c2565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611cd59190613eb6565b60405180910390fd5b565b611ce8612799565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d2a6118c2565b604051611d379190613eb6565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611db1575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401611da89190613eb6565b60405180910390fd5b611dbc5f83836124d3565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e30575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611e279190613eb6565b60405180910390fd5b611e3b825f836124d3565b5050565b5f611e4983610cba565b90508160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4611f4a8183611f45866127d9565b6127ea565b505050565b5f611f9d611f98600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20612a5a565b612a69565b9050919050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f61207382612ac0565b9050919050565b612082612b06565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120c56118c2565b6040516120d29190613eb6565b60405180910390a1565b606061211260067f417a7a6920546f6b656e0000000000000000000000000000000000000000000a612b4790919063ffffffff16565b905090565b606061214d60077f3100000000000000000000000000000000000000000000000000000000000001612b4790919063ffffffff16565b905090565b5f80825f018054905090505f81146121aa5761217c835f0160018361217791906146bd565b612712565b5f0160069054906101000a900479ffffffffffffffffffffffffffffffffffffffffffffffffffff166121ac565b5f5b915050919050565b5f6121c66121c0611a5d565b83612bf4565b9050919050565b5f805f806121dd88888888612c34565b9250925092506121ed8282612d1b565b829350505050949350505050565b5f61220583612252565b905080821461224d5782816040517f752d88c0000000000000000000000000000000000000000000000000000000008152600401612244929190614a81565b60405180910390fd5b505050565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b6122ad613909565b6122fc82600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20612e7d90919063ffffffff16565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612374575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161236b9190613eb6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123e4575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016123db9190613eb6565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156124cd578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516124c49190613b0d565b60405180910390a35b50505050565b6124dc83610bed565b1580612538575080600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461252b85610d5e565b61253591906146bd565b10155b612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e90614b18565b60405180910390fd5b612582838383612f4c565b505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f1fc1106ec4361d2ca1bea470e8e23e37c0a152423cf5ed402334283de4d3889e7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc64630604051602001612601959493929190614b36565b60405160208183030381529060405280519060200120905090565b5f80820361262c575f905061270d565b5f600161263884612ffa565b901c6001901b9050600181848161265257612651614b87565b5b048201901c9050600181848161266b5761266a614b87565b5b048201901c9050600181848161268457612683614b87565b5b048201901c9050600181848161269d5761269c614b87565b5b048201901c905060018184816126b6576126b5614b87565b5b048201901c905060018184816126cf576126ce614b87565b5b048201901c905060018184816126e8576126e7614b87565b5b048201901c90506127098182858161270357612702614b87565b5b046130d1565b9150505b919050565b5f825f528160205f2001905092915050565b5f5b8183101561278e575f61273984846130e9565b90508465ffffffffffff1661274e8783612712565b5f015f9054906101000a900465ffffffffffff1665ffffffffffff16111561277857809250612788565b6001816127859190614916565b93505b50612726565b819050949350505050565b6127a1610d38565b6127d7576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f6127e382610d5e565b9050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561282557505f81115b15612a55575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461293f575f806128b0600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206118ad6128ab8661310e565b61317b565b79ffffffffffffffffffffffffffffffffffffffffffffffffffff16915079ffffffffffffffffffffffffffffffffffffffffffffffffffff1691508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405161293492919061426a565b60405180910390a250505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a54575f806129c5600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206118986129c08661310e565b61317b565b79ffffffffffffffffffffffffffffffffffffffffffffffffffff16915079ffffffffffffffffffffffffffffffffffffffffffffffffffff1691508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612a4992919061426a565b60405180910390a250505b5b505050565b5f815f01805490509050919050565b5f63ffffffff8016821115612ab8576020826040517f6dfcc650000000000000000000000000000000000000000000000000000000008152600401612aaf929190614bed565b60405180910390fd5b819050919050565b5f60085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b612b0e610d38565b15612b45576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b606060ff5f1b8314612b6357612b5c836131ba565b9050612bee565b818054612b6f906143ff565b80601f0160208091040260200160405190810160405280929190818152602001828054612b9b906143ff565b8015612be65780601f10612bbd57610100808354040283529160200191612be6565b820191905f5260205f20905b815481529060010190602001808311612bc957829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c1115612c70575f600385925092509250612d11565b5f6001888888886040515f8152602001604052604051612c939493929190614c14565b6020604051602081039080840390855afa158015612cb3573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612d04575f60015f801b93509350935050612d11565b805f805f1b935093509350505b9450945094915050565b5f6003811115612d2e57612d2d614c57565b5b826003811115612d4157612d40614c57565b5b0315612e795760016003811115612d5b57612d5a614c57565b5b826003811115612d6e57612d6d614c57565b5b03612da5576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60026003811115612db957612db8614c57565b5b826003811115612dcc57612dcb614c57565b5b03612e1057805f1c6040517ffce698f7000000000000000000000000000000000000000000000000000000008152600401612e079190613b0d565b60405180910390fd5b600380811115612e2357612e22614c57565b5b826003811115612e3657612e35614c57565b5b03612e7857806040517fd78bce0c000000000000000000000000000000000000000000000000000000008152600401612e6f9190613e38565b60405180910390fd5b5b5050565b612e85613909565b825f018263ffffffff1681548110612ea057612e9f614497565b5b905f5260205f20016040518060400160405290815f82015f9054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020015f820160069054906101000a900479ffffffffffffffffffffffffffffffffffffffffffffffffffff1679ffffffffffffffffffffffffffffffffffffffffffffffffffff1679ffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b612f5783838361322c565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612fea575f612f9361086e565b90505f612f9e613244565b905080821115612fe75781816040517f1cb15d26000000000000000000000000000000000000000000000000000000008152600401612fde92919061426a565b60405180910390fd5b50505b612ff5838383613267565b505050565b5f805f90505f608084901c111561301957608083901c92506080810190505b5f604084901c111561303357604083901c92506040810190505b5f602084901c111561304d57602083901c92506020810190505b5f601084901c111561306757601083901c92506010810190505b5f600884901c111561308157600883901c92506008810190505b5f600484901c111561309b57600483901c92506004810190505b5f600284901c11156130b557600283901c92506002810190505b5f600184901c11156130c8576001810190505b80915050919050565b5f8183106130df57816130e1565b825b905092915050565b5f60028284186130f99190614c84565b8284166131069190614916565b905092915050565b5f79ffffffffffffffffffffffffffffffffffffffffffffffffffff80168211156131735760d0826040517f6dfcc65000000000000000000000000000000000000000000000000000000000815260040161316a929190614ced565b60405180910390fd5b819050919050565b5f806131ae613188610f61565b61319e61319488612152565b868863ffffffff16565b8761331f9092919063ffffffff16565b91509150935093915050565b60605f6131c68361333a565b90505f602067ffffffffffffffff8111156131e4576131e3613bae565b5b6040519080825280601f01601f1916602001820160405280156132165781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b613234612b06565b61323f838383613388565b505050565b5f79ffffffffffffffffffffffffffffffffffffffffffffffffffff8016905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036132b3576132b0600b6118986132ab8461310e565b61317b565b50505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036132ff576132fc600b6118ad6132f78461310e565b61317b565b50505b61331a61330b84610cba565b61331484610cba565b836127ea565b505050565b5f8061332e855f0185856135a1565b91509150935093915050565b5f8060ff835f1c169050601f81111561337f576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036133d8578060025f8282546133cc9190614916565b925050819055506134a6565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015613461578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401613458939291906149e3565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036134ed578060025f8282540392505081905550613537565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516135949190613b0d565b60405180910390a3505050565b5f805f858054905090505f811115613821575f6135ca876001846135c591906146bd565b612712565b6040518060400160405290815f82015f9054906101000a900465ffffffffffff1665ffffffffffff1665ffffffffffff1681526020015f820160069054906101000a900479ffffffffffffffffffffffffffffffffffffffffffffffffffff1679ffffffffffffffffffffffffffffffffffffffffffffffffffff1679ffffffffffffffffffffffffffffffffffffffffffffffffffff168152505090508565ffffffffffff16815f015165ffffffffffff1611156136b5576040517f2520601d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8565ffffffffffff16815f015165ffffffffffff160361373757846136e6886001856136e191906146bd565b612712565b5f0160066101000a81548179ffffffffffffffffffffffffffffffffffffffffffffffffffff021916908379ffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550613810565b8660405180604001604052808865ffffffffffff1681526020018779ffffffffffffffffffffffffffffffffffffffffffffffffffff16815250908060018154018082558091505060019003905f5260205f20015f909190919091505f820151815f015f6101000a81548165ffffffffffff021916908365ffffffffffff1602179055506020820151815f0160066101000a81548179ffffffffffffffffffffffffffffffffffffffffffffffffffff021916908379ffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b806020015185935093505050613901565b8560405180604001604052808765ffffffffffff1681526020018679ffffffffffffffffffffffffffffffffffffffffffffffffffff16815250908060018154018082558091505060019003905f5260205f20015f909190919091505f820151815f015f6101000a81548165ffffffffffff021916908365ffffffffffff1602179055506020820151815f0160066101000a81548179ffffffffffffffffffffffffffffffffffffffffffffffffffff021916908379ffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505f8492509250505b935093915050565b60405180604001604052805f65ffffffffffff1681526020015f79ffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561397c578082015181840152602081019050613961565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6139a182613945565b6139ab818561394f565b93506139bb81856020860161395f565b6139c481613987565b840191505092915050565b5f6020820190508181035f8301526139e78184613997565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f613a2982613a00565b9050919050565b613a3981613a1f565b8114613a43575f80fd5b50565b5f81359050613a5481613a30565b92915050565b5f819050919050565b613a6c81613a5a565b8114613a76575f80fd5b50565b5f81359050613a8781613a63565b92915050565b5f8060408385031215613aa357613aa26139f8565b5b5f613ab085828601613a46565b9250506020613ac185828601613a79565b9150509250929050565b5f8115159050919050565b613adf81613acb565b82525050565b5f602082019050613af85f830184613ad6565b92915050565b613b0781613a5a565b82525050565b5f602082019050613b205f830184613afe565b92915050565b5f805f60608486031215613b3d57613b3c6139f8565b5b5f613b4a86828701613a46565b9350506020613b5b86828701613a46565b9250506040613b6c86828701613a79565b9150509250925092565b5f60ff82169050919050565b613b8b81613b76565b82525050565b5f602082019050613ba45f830184613b82565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613be482613987565b810181811067ffffffffffffffff82111715613c0357613c02613bae565b5b80604052505050565b5f613c156139ef565b9050613c218282613bdb565b919050565b5f67ffffffffffffffff821115613c4057613c3f613bae565b5b602082029050602081019050919050565b5f80fd5b5f613c67613c6284613c26565b613c0c565b90508083825260208201905060208402830185811115613c8a57613c89613c51565b5b835b81811015613cb35780613c9f8882613a46565b845260208401935050602081019050613c8c565b5050509392505050565b5f82601f830112613cd157613cd0613baa565b5b8135613ce1848260208601613c55565b91505092915050565b5f67ffffffffffffffff821115613d0457613d03613bae565b5b602082029050602081019050919050565b5f613d27613d2284613cea565b613c0c565b90508083825260208201905060208402830185811115613d4a57613d49613c51565b5b835b81811015613d735780613d5f8882613a79565b845260208401935050602081019050613d4c565b5050509392505050565b5f82601f830112613d9157613d90613baa565b5b8135613da1848260208601613d15565b91505092915050565b5f8060408385031215613dc057613dbf6139f8565b5b5f83013567ffffffffffffffff811115613ddd57613ddc6139fc565b5b613de985828601613cbd565b925050602083013567ffffffffffffffff811115613e0a57613e096139fc565b5b613e1685828601613d7d565b9150509250929050565b5f819050919050565b613e3281613e20565b82525050565b5f602082019050613e4b5f830184613e29565b92915050565b5f60208284031215613e6657613e656139f8565b5b5f613e7384828501613a79565b91505092915050565b5f60208284031215613e9157613e906139f8565b5b5f613e9e84828501613a46565b91505092915050565b613eb081613a1f565b82525050565b5f602082019050613ec95f830184613ea7565b92915050565b5f63ffffffff82169050919050565b613ee781613ecf565b82525050565b5f602082019050613f005f830184613ede565b92915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b613f3a81613f06565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613f7281613a5a565b82525050565b5f613f838383613f69565b60208301905092915050565b5f602082019050919050565b5f613fa582613f40565b613faf8185613f4a565b9350613fba83613f5a565b805f5b83811015613fea578151613fd18882613f78565b9750613fdc83613f8f565b925050600181019050613fbd565b5085935050505092915050565b5f60e08201905061400a5f83018a613f31565b818103602083015261401c8189613997565b905081810360408301526140308188613997565b905061403f6060830187613afe565b61404c6080830186613ea7565b61405960a0830185613e29565b81810360c083015261406b8184613f9b565b905098975050505050505050565b5f65ffffffffffff82169050919050565b61409381614079565b82525050565b5f6020820190506140ac5f83018461408a565b92915050565b6140bb81613b76565b81146140c5575f80fd5b50565b5f813590506140d6816140b2565b92915050565b6140e581613e20565b81146140ef575f80fd5b50565b5f81359050614100816140dc565b92915050565b5f805f805f8060c087890312156141205761411f6139f8565b5b5f61412d89828a01613a46565b965050602061413e89828a01613a79565b955050604061414f89828a01613a79565b945050606061416089828a016140c8565b935050608061417189828a016140f2565b92505060a061418289828a016140f2565b9150509295509295509295565b5f805f805f805f60e0888a0312156141aa576141a96139f8565b5b5f6141b78a828b01613a46565b97505060206141c88a828b01613a46565b96505060406141d98a828b01613a79565b95505060606141ea8a828b01613a79565b94505060806141fb8a828b016140c8565b93505060a061420c8a828b016140f2565b92505060c061421d8a828b016140f2565b91505092959891949750929550565b5f8060408385031215614242576142416139f8565b5b5f61424f85828601613a46565b925050602061426085828601613a46565b9150509250929050565b5f60408201905061427d5f830185613afe565b61428a6020830184613afe565b9392505050565b61429a81613ecf565b81146142a4575f80fd5b50565b5f813590506142b581614291565b92915050565b5f80604083850312156142d1576142d06139f8565b5b5f6142de85828601613a46565b92505060206142ef858286016142a7565b9150509250929050565b61430281614079565b82525050565b5f79ffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b61433681614308565b82525050565b604082015f8201516143505f8501826142f9565b506020820151614363602085018261432d565b50505050565b5f60408201905061437c5f83018461433c565b92915050565b5f805f60608486031215614399576143986139f8565b5b5f6143a686828701613a46565b93505060206143b786828701613a79565b92505060406143c886828701613a79565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061441657607f821691505b602082108103614429576144286143d2565b5b50919050565b7f617272617973206d75737420686176652073616d65206c656e677468000000005f82015250565b5f614463601c8361394f565b915061446e8261442f565b602082019050919050565b5f6020820190508181035f83015261449081614457565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f616d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f6144f8601d8361394f565b9150614503826144c4565b602082019050919050565b5f6020820190508181035f830152614525816144ec565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61456382613a5a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036145955761459461452c565b5b600182019050919050565b5f6040820190506145b35f830185613afe565b6145c0602083018461408a565b9392505050565b7f4163636f756e74206973206e6f74206c6f636b656400000000000000000000005f82015250565b5f6145fb60158361394f565b9150614606826145c7565b602082019050919050565b5f6020820190508181035f830152614628816145ef565b9050919050565b7f52656c6561736520616d6f756e742065786365656473206c6f636b65642062615f8201527f6c616e6365000000000000000000000000000000000000000000000000000000602082015250565b5f61468960258361394f565b91506146948261462f565b604082019050919050565b5f6020820190508181035f8301526146b68161467d565b9050919050565b5f6146c782613a5a565b91506146d283613a5a565b92508282039050818111156146ea576146e961452c565b5b92915050565b5f6080820190506147035f830187613e29565b6147106020830186613ea7565b61471d6040830185613afe565b61472a6060830184613afe565b95945050505050565b5f60c0820190506147465f830189613e29565b6147536020830188613ea7565b6147606040830187613ea7565b61476d6060830186613afe565b61477a6080830185613afe565b61478760a0830184613afe565b979650505050505050565b5f6040820190506147a55f830185613ea7565b6147b26020830184613ea7565b9392505050565b7f4c6f636b75702074696d652073686f756c6420626520677265617465722074685f8201527f616e207a65726f00000000000000000000000000000000000000000000000000602082015250565b5f61481360278361394f565b915061481e826147b9565b604082019050919050565b5f6020820190508181035f83015261484081614807565b9050919050565b7f4c6f636b757020616d6f756e742065786365656473206163636f756e742062615f8201527f6c616e6365000000000000000000000000000000000000000000000000000000602082015250565b5f6148a160258361394f565b91506148ac82614847565b604082019050919050565b5f6020820190508181035f8301526148ce81614895565b9050919050565b5f6148df82613a5a565b91506148ea83613a5a565b92508282026148f881613a5a565b9150828204841483151761490f5761490e61452c565b5b5092915050565b5f61492082613a5a565b915061492b83613a5a565b92508282019050808211156149435761494261452c565b5b92915050565b5f61495382614308565b915061495e83614308565b9250828201905079ffffffffffffffffffffffffffffffffffffffffffffffffffff8111156149905761498f61452c565b5b92915050565b5f6149a082614308565b91506149ab83614308565b9250828203905079ffffffffffffffffffffffffffffffffffffffffffffffffffff8111156149dd576149dc61452c565b5b92915050565b5f6060820190506149f65f830186613ea7565b614a036020830185613afe565b614a106040830184613afe565b949350505050565b5f819050919050565b5f819050919050565b5f614a44614a3f614a3a84614a18565b614a21565b613b76565b9050919050565b614a5481614a2a565b82525050565b5f604082019050614a6d5f830185614a4b565b614a7a6020830184613afe565b9392505050565b5f604082019050614a945f830185613ea7565b614aa16020830184613afe565b9392505050565b7f546f6b656e207472616e73666572206973206c6f636b6564206f7220696e73755f8201527f6666696369656e7420756e6c6f636b65642062616c616e636500000000000000602082015250565b5f614b0260398361394f565b9150614b0d82614aa8565b604082019050919050565b5f6020820190508181035f830152614b2f81614af6565b9050919050565b5f60a082019050614b495f830188613e29565b614b566020830187613e29565b614b636040830186613e29565b614b706060830185613afe565b614b7d6080830184613ea7565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f819050919050565b5f614bd7614bd2614bcd84614bb4565b614a21565b613b76565b9050919050565b614be781614bbd565b82525050565b5f604082019050614c005f830185614bde565b614c0d6020830184613afe565b9392505050565b5f608082019050614c275f830187613e29565b614c346020830186613b82565b614c416040830185613e29565b614c4e6060830184613e29565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffd5b5f614c8e82613a5a565b9150614c9983613a5a565b925082614ca957614ca8614b87565b5b828204905092915050565b5f819050919050565b5f614cd7614cd2614ccd84614cb4565b614a21565b613b76565b9050919050565b614ce781614cbd565b82525050565b5f604082019050614d005f830185614cde565b614d0d6020830184613afe565b939250505056fea264697066735822122062dd0b6e1f0122a6bfe0bb5ca3889d5848b8cf0a912cefa7984b567bd41b7d9764736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000dbe5022424bb742e1dfd94646797b66e58298624
-----Decoded View---------------
Arg [0] : initialOwner (address): 0xdBE5022424BB742E1DFD94646797B66E58298624
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000dbe5022424bb742e1dfd94646797b66e58298624
Deployed Bytecode Sourcemap
166157:4140:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13297:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15590:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14399:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16358:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14250:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;167521:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86951:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;156662:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;166873:65;;;:::i;:::-;;166946:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23222:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;167049:464;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;168963:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;169659:109;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;158317:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;158523:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25708:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;165706:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14561:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30332:103;;;:::i;:::-;;23640:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;170117:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;166804:61;;;:::i;:::-;;81352:580;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;29657:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;157682:347;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;169547:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13507:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;156130:137;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;169136:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14884:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;168520:435;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;158747:573;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85939:695;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15129:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;169264:275;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;165916:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30590:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;167971:541;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13297:91;13342:13;13375:5;13368:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13297:91;:::o;15590:190::-;15663:4;15680:13;15696:12;:10;:12::i;:::-;15680:28;;15719:31;15728:5;15735:7;15744:5;15719:8;:31::i;:::-;15768:4;15761:11;;;15590:190;;;;:::o;14399:99::-;14451:7;14478:12;;14471:19;;14399:99;:::o;16358:249::-;16445:4;16462:15;16480:12;:10;:12::i;:::-;16462:30;;16503:37;16519:4;16525:7;16534:5;16503:15;:37::i;:::-;16551:26;16561:4;16567:2;16571:5;16551:9;:26::i;:::-;16595:4;16588:11;;;16358:249;;;;;:::o;14250:84::-;14299:5;14324:2;14317:9;;14250:84;:::o;167521:442::-;167627:4;167677:8;:15;167657:9;:16;:35;167649:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;167743:9;167738:196;167762:9;:16;167758:1;:20;167738:196;;;167822:1;167808:8;167817:1;167808:11;;;;;;;;:::i;:::-;;;;;;;;:15;167800:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;167872:50;167882:12;:10;:12::i;:::-;167896:9;167906:1;167896:12;;;;;;;;:::i;:::-;;;;;;;;167910:8;167919:1;167910:11;;;;;;;;:::i;:::-;;;;;;;;167872:9;:50::i;:::-;167780:3;;;;;:::i;:::-;;;;167738:196;;;;167951:4;167944:11;;167521:442;;;;:::o;86951:114::-;87010:7;87037:20;:18;:20::i;:::-;87030:27;;86951:114;:::o;156662:370::-;156749:7;156769:23;156795:7;:5;:7::i;:::-;156769:33;;156830:16;156817:29;;:9;:29;156813:117;;156890:9;156901:16;156870:48;;;;;;;;;;;;:::i;:::-;;;;;;;;156813:117;156947:77;156995:28;157013:9;156995:17;:28::i;:::-;156947:20;:29;156968:7;156947:29;;;;;;;;;;;;;;;:47;;:77;;;;:::i;:::-;156940:84;;;;;156662:370;;;;:::o;166873:65::-;29543:13;:11;:13::i;:::-;166920:10:::1;:8;:10::i;:::-;166873:65::o:0;166946:95::-;29543:13;:11;:13::i;:::-;167016:17:::1;167022:2;167026:6;167016:5;:17::i;:::-;166946:95:::0;;:::o;23222:89::-;23277:26;23283:12;:10;:12::i;:::-;23297:5;23277;:26::i;:::-;23222:89;:::o;167049:464::-;167160:4;29543:13;:11;:13::i;:::-;167224:8:::1;:15;167204:9;:16;:35;167182:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;167311:9;167306:178;167330:9;:16;167326:1;:20;167306:178;;;167390:1;167376:8;167385:1;167376:11;;;;;;;;:::i;:::-;;;;;;;;:15;167368:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;167440:32;167446:9;167456:1;167446:12;;;;;;;;:::i;:::-;;;;;;;;167460:8;167469:1;167460:11;;;;;;;;:::i;:::-;;;;;;;;167440:5;:32::i;:::-;167348:3;;;;;:::i;:::-;;;;167306:178;;;;167501:4;167494:11;;167049:464:::0;;;;:::o;168963:165::-;169019:4;169061:18;:27;169080:7;169061:27;;;;;;;;;;;;;;;;169043:15;:45;:77;;;;;169119:1;169092:15;:24;169108:7;169092:24;;;;;;;;;;;;;;;;:28;169043:77;169036:84;;168963:165;;;:::o;169659:109::-;169711:13;169737:23;;;;;;;;;;;;;;;;;;;169659:109;:::o;158317:119::-;158382:7;158409:10;:19;158420:7;158409:19;;;;;;;;;;;;;;;;;;;;;;;;;158402:26;;158317:119;;;:::o;158523:141::-;158586:15;158604:12;:10;:12::i;:::-;158586:30;;158627:29;158637:7;158646:9;158627;:29::i;:::-;158575:89;158523:141;:::o;25708:86::-;25755:4;25779:7;;;;;;;;;;;25772:14;;25708:86;:::o;165706:128::-;165776:6;165802:24;165818:7;165802:15;:24::i;:::-;165795:31;;165706:128;;;:::o;14561:118::-;14626:7;14653:9;:18;14663:7;14653:18;;;;;;;;;;;;;;;;14646:25;;14561:118;;;:::o;30332:103::-;29543:13;:11;:13::i;:::-;30397:30:::1;30424:1;30397:18;:30::i;:::-;30332:103::o:0;23640:161::-;23716:45;23732:7;23741:12;:10;:12::i;:::-;23755:5;23716:15;:45::i;:::-;23772:21;23778:7;23787:5;23772;:21::i;:::-;23640:161;;:::o;170117:177::-;170235:7;170267:19;170280:5;170267:12;:19::i;:::-;170260:26;;170117:177;;;:::o;166804:61::-;29543:13;:11;:13::i;:::-;166849:8:::1;:6;:8::i;:::-;166804:61::o:0;81352:580::-;81455:13;81483:18;81516:21;81552:15;81582:25;81622:12;81649:27;81757:13;:11;:13::i;:::-;81785:16;:14;:16::i;:::-;81816:13;81852:4;81880:1;81872:10;;81911:1;81897:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81704:220;;;;;;;;;;;;;;;;;;;;;81352:580;;;;;;;:::o;29657:87::-;29703:7;29730:6;;;;;;;;;;;29723:13;;29657:87;:::o;157682:347::-;157758:7;157778:23;157804:7;:5;:7::i;:::-;157778:33;;157839:16;157826:29;;:9;:29;157822:117;;157899:9;157910:16;157879:48;;;;;;;;;;;;:::i;:::-;;;;;;;;157822:117;157956:65;157992:28;158010:9;157992:17;:28::i;:::-;157956:17;:35;;:65;;;;:::i;:::-;157949:72;;;;;157682:347;;;:::o;169547:104::-;169594:6;169627:15;169613:30;;169547:104;:::o;13507:95::-;13554:13;13587:7;13580:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13507:95;:::o;156130:137::-;156194:7;156221:38;:20;:29;156242:7;156221:29;;;;;;;;;;;;;;;:36;:38::i;:::-;156214:45;;;;156130:137;;;:::o;169136:120::-;169197:7;169224:15;:24;169240:7;169224:24;;;;;;;;;;;;;;;;169217:31;;169136:120;;;:::o;14884:182::-;14953:4;14970:13;14986:12;:10;:12::i;:::-;14970:28;;15009:27;15019:5;15026:2;15030:5;15009:9;:27::i;:::-;15054:4;15047:11;;;14884:182;;;;:::o;168520:435::-;29543:13;:11;:13::i;:::-;168614:17:::1;168623:7;168614:8;:17::i;:::-;168606:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;168686:15;:24;168702:7;168686:24;;;;;;;;;;;;;;;;168676:6;:34;;168668:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;168791:6;168763:15;:24;168779:7;168763:24;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;168840:1;168812:15;:24;168828:7;168812:24;;;;;;;;;;;;;;;;:29:::0;168808:93:::1;;168888:1;168858:18;:27;168877:7;168858:27;;;;;;;;;;;;;;;:31;;;;168808:93;168931:7;168916:31;;;168940:6;168916:31;;;;;;:::i;:::-;;;;;;;;168520:435:::0;;:::o;158747:573::-;158960:6;158942:15;:24;158938:93;;;159012:6;158990:29;;;;;;;;;;;:::i;:::-;;;;;;;;158938:93;159041:14;159058:173;159086:86;154750:71;159145:9;159156:5;159163:6;159113:57;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;159103:68;;;;;;159086:16;:86::i;:::-;159187:1;159203;159219;159058:13;:173::i;:::-;159041:190;;159242:31;159259:6;159267:5;159242:16;:31::i;:::-;159284:28;159294:6;159302:9;159284;:28::i;:::-;158927:393;158747:573;;;;;;:::o;85939:695::-;86169:8;86151:15;:26;86147:99;;;86225:8;86201:33;;;;;;;;;;;:::i;:::-;;;;;;;;86147:99;86258:18;85259:95;86317:5;86324:7;86333:5;86340:16;86350:5;86340:9;:16::i;:::-;86358:8;86289:78;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;86279:89;;;;;;86258:110;;86381:12;86396:28;86413:10;86396:16;:28::i;:::-;86381:43;;86437:14;86454:28;86468:4;86474:1;86477;86480;86454:13;:28::i;:::-;86437:45;;86507:5;86497:15;;:6;:15;;;86493:90;;86557:6;86565:5;86536:35;;;;;;;;;;;;:::i;:::-;;;;;;;;86493:90;86595:31;86604:5;86611:7;86620:5;86595:8;:31::i;:::-;86136:498;;;85939:695;;;;;;;:::o;15129:142::-;15209:7;15236:11;:18;15248:5;15236:18;;;;;;;;;;;;;;;:27;15255:7;15236:27;;;;;;;;;;;;;;;;15229:34;;15129:142;;;;:::o;169264:275::-;169322:7;169331;169351:21;169405:15;169375:18;:27;169394:7;169375:27;;;;;;;;;;;;;;;;:45;:97;;169471:1;169375:97;;;169453:15;169423:18;:27;169442:7;169423:27;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;169375:97;169351:121;;169491:15;:24;169507:7;169491:24;;;;;;;;;;;;;;;;169517:13;169483:48;;;;;169264:275;;;:::o;165916:165::-;165995:32;;:::i;:::-;166047:26;166060:7;166069:3;166047:12;:26::i;:::-;166040:33;;165916:165;;;;:::o;30590:220::-;29543:13;:11;:13::i;:::-;30695:1:::1;30675:22;;:8;:22;;::::0;30671:93:::1;;30749:1;30721:31;;;;;;;;;;;:::i;:::-;;;;;;;;30671:93;30774:28;30793:8;30774:18;:28::i;:::-;30590:220:::0;:::o;167971:541::-;29543:13;:11;:13::i;:::-;168112:1:::1;168090:19;:23;168082:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;168186:18;168196:7;168186:9;:18::i;:::-;168176:6;:28;;168168:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;168257:27;168309:2;168287:19;:24;;;;:::i;:::-;168257:54;;168370:19;168352:15;:37;;;;:::i;:::-;168322:18;:27;168341:7;168322:27;;;;;;;;;;;;;;;:67;;;;168427:6;168400:15;:24;168416:7;168400:24;;;;;;;;;;;;;;;:33;;;;168459:7;168449:55;;;168468:18;:27;168487:7;168468:27;;;;;;;;;;;;;;;;168497:6;168449:55;;;;;;;:::i;:::-;;;;;;;;168071:441;167971:541:::0;;;:::o;162167:98::-;162225:7;162256:1;162252;:5;;;;:::i;:::-;162245:12;;162167:98;;;;:::o;162273:103::-;162336:7;162367:1;162363;:5;;;;:::i;:::-;162356:12;;162273:103;;;;:::o;4302:98::-;4355:7;4382:10;4375:17;;4302:98;:::o;20417:130::-;20502:37;20511:5;20518:7;20527:5;20534:4;20502:8;:37::i;:::-;20417:130;;;:::o;22133:487::-;22233:24;22260:25;22270:5;22277:7;22260:9;:25::i;:::-;22233:52;;22320:17;22300:16;:37;22296:317;;22377:5;22358:16;:24;22354:132;;;22437:7;22446:16;22464:5;22410:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22354:132;22529:57;22538:5;22545:7;22573:5;22554:16;:24;22580:5;22529:8;:57::i;:::-;22296:317;22222:398;22133:487;;;:::o;16992:308::-;17092:1;17076:18;;:4;:18;;;17072:88;;17145:1;17118:30;;;;;;;;;;;:::i;:::-;;;;;;;;17072:88;17188:1;17174:16;;:2;:16;;;17170:88;;17243:1;17214:32;;;;;;;;;;;:::i;:::-;;;;;;;;17170:88;17268:24;17276:4;17282:2;17286:5;17268:7;:24::i;:::-;16992:308;;;:::o;80019:268::-;80072:7;80113:11;80096:28;;80104:4;80096:28;;;:63;;;;;80145:14;80128:13;:31;80096:63;80092:188;;;80183:22;80176:29;;;;80092:188;80245:23;:21;:23::i;:::-;80238:30;;80019:268;;:::o;126805:218::-;126861:6;126892:16;126884:24;;:5;:24;126880:105;;;126963:2;126967:5;126932:41;;;;;;;;;;;;:::i;:::-;;;;;;;;126880:105;127009:5;126995:20;;126805:218;;;:::o;99970:624::-;100055:7;100075:11;100089:4;:17;;:24;;;;100075:38;;100126:11;100152:12;100167:3;100152:18;;100193:1;100187:3;:7;100183:241;;;100211:11;100231:14;100241:3;100231:9;:14::i;:::-;100225:3;:20;;;;:::i;:::-;100211:34;;100270:37;100284:4;:17;;100303:3;100270:13;:37::i;:::-;:42;;;;;;;;;;;;100264:48;;:3;:48;;;100260:153;;;100340:3;100333:10;;100260:153;;;100396:1;100390:3;:7;;;;:::i;:::-;100384:13;;100260:153;100196:228;100183:241;100436:11;100450:53;100469:4;:17;;100488:3;100493;100498:4;100450:18;:53::i;:::-;100436:67;;100530:1;100523:3;:8;:63;;100538:41;100552:4;:17;;100577:1;100571:3;:7;;;;:::i;:::-;100538:13;:41::i;:::-;:48;;;;;;;;;;;;100523:63;;;100534:1;100523:63;100516:70;;;;;;99970:624;;;;:::o;29822:166::-;29893:12;:10;:12::i;:::-;29882:23;;:7;:5;:7::i;:::-;:23;;;29878:103;;29956:12;:10;:12::i;:::-;29929:40;;;;;;;;;;;:::i;:::-;;;;;;;;29878:103;29822:166::o;26609:120::-;25572:16;:14;:16::i;:::-;26678:5:::1;26668:7;;:15;;;;;;;;;;;;;;;;;;26699:22;26708:12;:10;:12::i;:::-;26699:22;;;;;;:::i;:::-;;;;;;;;26609:120::o:0;19112:213::-;19202:1;19183:21;;:7;:21;;;19179:93;;19257:1;19228:32;;;;;;;;;;;:::i;:::-;;;;;;;;19179:93;19282:35;19298:1;19302:7;19311:5;19282:7;:35::i;:::-;19112:213;;:::o;19653:211::-;19743:1;19724:21;;:7;:21;;;19720:91;;19796:1;19769:30;;;;;;;;;;;:::i;:::-;;;;;;;;19720:91;19821:35;19829:7;19846:1;19850:5;19821:7;:35::i;:::-;19653:211;;:::o;159505:318::-;159588:19;159610:18;159620:7;159610:9;:18::i;:::-;159588:40;;159661:9;159639:10;:19;159650:7;159639:19;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;159726:9;159688:48;;159713:11;159688:48;;159704:7;159688:48;;;;;;;;;;;;159747:68;159766:11;159779:9;159790:24;159806:7;159790:15;:24::i;:::-;159747:18;:68::i;:::-;159577:246;159505:318;;:::o;161440:164::-;161513:6;161539:57;161557:38;:20;:29;161578:7;161557:29;;;;;;;;;;;;;;;:36;:38::i;:::-;161539:17;:57::i;:::-;161532:64;;161440:164;;;:::o;30970:191::-;31044:16;31063:6;;;;;;;;;;;31044:25;;31089:8;31080:6;;:17;;;;;;;;;;;;;;;;;;31144:8;31113:40;;31134:8;31113:40;;;;;;;;;;;;31033:128;30970:191;:::o;86693:145::-;86784:7;86811:19;86824:5;86811:12;:19::i;:::-;86804:26;;86693:145;;;:::o;26350:118::-;25313:19;:17;:19::i;:::-;26420:4:::1;26410:7;;:14;;;;;;;;;;;;;;;;;;26440:20;26447:12;:10;:12::i;:::-;26440:20;;;;;;:::i;:::-;;;;;;;;26350:118::o:0;82261:128::-;82307:13;82340:41;82367:13;82340:5;:26;;:41;;;;:::i;:::-;82333:48;;82261:128;:::o;82724:137::-;82773:13;82806:47;82836:16;82806:8;:29;;:47;;;;:::i;:::-;82799:54;;82724:137;:::o;100719:209::-;100781:7;100801:11;100815:4;:17;;:24;;;;100801:38;;100864:1;100857:3;:8;:63;;100872:41;100886:4;:17;;100911:1;100905:3;:7;;;;:::i;:::-;100872:13;:41::i;:::-;:48;;;;;;;;;;;;100857:63;;;100868:1;100857:63;100850:70;;;100719:209;;;:::o;81118:178::-;81195:7;81222:66;81255:20;:18;:20::i;:::-;81277:10;81222:32;:66::i;:::-;81215:73;;81118:178;;;:::o;42098:264::-;42183:7;42204:17;42223:18;42243:16;42263:25;42274:4;42280:1;42283;42286;42263:10;:25::i;:::-;42203:85;;;;;;42299:28;42311:5;42318:8;42299:11;:28::i;:::-;42345:9;42338:16;;;;;42098:264;;;;;;:::o;84194:227::-;84278:15;84296:16;84306:5;84296:9;:16::i;:::-;84278:34;;84336:7;84327:5;:16;84323:91;;84387:5;84394:7;84367:35;;;;;;;;;;;;:::i;:::-;;;;;;;;84323:91;84267:154;84194:227;;:::o;83676:402::-;83736:7;84043;:14;84051:5;84043:14;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;84036:23;;83676:402;;;:::o;161686:204::-;161793:32;;:::i;:::-;161845:37;161878:3;161845:20;:29;161866:7;161845:29;;;;;;;;;;;;;;;:32;;:37;;;;:::i;:::-;161838:44;;161686:204;;;;:::o;21398:443::-;21528:1;21511:19;;:5;:19;;;21507:91;;21583:1;21554:32;;;;;;;;;;;:::i;:::-;;;;;;;;21507:91;21631:1;21612:21;;:7;:21;;;21608:92;;21685:1;21657:31;;;;;;;;;;;:::i;:::-;;;;;;;;21608:92;21740:5;21710:11;:18;21722:5;21710:18;;;;;;;;;;;;;;;:27;21729:7;21710:27;;;;;;;;;;;;;;;:35;;;;21760:9;21756:78;;;21807:7;21791:31;;21800:5;21791:31;;;21816:5;21791:31;;;;;;:::i;:::-;;;;;;;;21756:78;21398:443;;;;:::o;169776:333::-;169930:14;169939:4;169930:8;:14::i;:::-;169929:15;:68;;;;169991:6;169966:15;:21;169982:4;169966:21;;;;;;;;;;;;;;;;169948:15;169958:4;169948:9;:15::i;:::-;:39;;;;:::i;:::-;:49;;169929:68;169921:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;170070:31;170084:4;170090:2;170094:6;170070:13;:31::i;:::-;169776:333;;;:::o;80295:181::-;80350:7;78211:95;80409:11;80422:14;80438:13;80461:4;80387:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80377:91;;;;;;80370:98;;80295:181;:::o;51881:1673::-;51929:7;51958:1;51953;:6;51949:47;;51983:1;51976:8;;;;51949:47;52687:14;52721:1;52710:7;52715:1;52710:4;:7::i;:::-;:12;;52704:1;:19;;52687:36;;53189:1;53178:6;53174:1;:10;;;;;:::i;:::-;;;53165:6;:19;53164:26;;53155:35;;53239:1;53228:6;53224:1;:10;;;;;:::i;:::-;;;53215:6;:19;53214:26;;53205:35;;53289:1;53278:6;53274:1;:10;;;;;:::i;:::-;;;53265:6;:19;53264:26;;53255:35;;53339:1;53328:6;53324:1;:10;;;;;:::i;:::-;;;53315:6;:19;53314:26;;53305:35;;53389:1;53378:6;53374:1;:10;;;;;:::i;:::-;;;53365:6;:19;53364:26;;53355:35;;53439:1;53428:6;53424:1;:10;;;;;:::i;:::-;;;53415:6;:19;53414:26;;53405:35;;53489:1;53478:6;53474:1;:10;;;;;:::i;:::-;;;53465:6;:19;53464:26;;53455:35;;53512:23;53516:6;53528;53524:1;:10;;;;;:::i;:::-;;;53512:3;:23::i;:::-;53505:30;;;51881:1673;;;;:::o;104764:273::-;104877:28;104952:9;104949:1;104942:20;105015:3;105008:4;105005:1;104995:18;104991:28;104976:43;;104764:273;;;;:::o;103357:448::-;103519:7;103539:237;103552:4;103546:3;:10;103539:237;;;103573:11;103587:23;103600:3;103605:4;103587:12;:23::i;:::-;103573:37;;103661:3;103629:35;;:24;103643:4;103649:3;103629:13;:24::i;:::-;:29;;;;;;;;;;;;:35;;;103625:140;;;103692:3;103685:10;;103625:140;;;103748:1;103742:3;:7;;;;:::i;:::-;103736:13;;103625:140;103558:218;103539:237;;;103793:4;103786:11;;103357:448;;;;;;:::o;26076:130::-;26140:8;:6;:8::i;:::-;26135:64;;26172:15;;;;;;;;;;;;;;26135:64;26076:130::o;165491:135::-;165573:7;165600:18;165610:7;165600:9;:18::i;:::-;165593:25;;165491:135;;;:::o;160561:799::-;160662:2;160654:10;;:4;:10;;;;:24;;;;;160677:1;160668:6;:10;160654:24;160650:703;;;160715:1;160699:18;;:4;:18;;;160695:322;;160739:16;160757;160777:154;160805:20;:26;160826:4;160805:26;;;;;;;;;;;;;;;160854:9;160886:26;160905:6;160886:18;:26::i;:::-;160777:5;:154::i;:::-;160738:193;;;;;;;;160976:4;160955:46;;;160982:8;160992;160955:46;;;;;;;:::i;:::-;;;;;;;;160719:298;;160695:322;161049:1;161035:16;;:2;:16;;;161031:311;;161073:16;161091;161111:147;161139:20;:24;161160:2;161139:24;;;;;;;;;;;;;;;161186:4;161213:26;161232:6;161213:18;:26::i;:::-;161111:5;:147::i;:::-;161072:186;;;;;;;;161303:2;161282:44;;;161307:8;161317;161282:44;;;;;;;:::i;:::-;;;;;;;;161053:289;;161031:311;160650:703;160561:799;;;:::o;101582:121::-;101644:7;101671:4;:17;;:24;;;;101664:31;;101582:121;;;:::o;127839:218::-;127895:6;127926:16;127918:24;;:5;:24;127914:105;;;127997:2;128001:5;127966:41;;;;;;;;;;;;:::i;:::-;;;;;;;;127914:105;128043:5;128029:20;;127839:218;;;:::o;83446:109::-;83506:7;83533;:14;83541:5;83533:14;;;;;;;;;;;;;;;;83526:21;;83446:109;;;:::o;25867:132::-;25933:8;:6;:8::i;:::-;25929:63;;;25965:15;;;;;;;;;;;;;;25929:63;25867:132::o;74488:273::-;74582:13;72434:66;74641:17;;74631:5;74612:46;74608:146;;74682:15;74691:5;74682:8;:15::i;:::-;74675:22;;;;74608:146;74737:5;74730:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74488:273;;;;;:::o;66511:410::-;66604:14;66716:4;66710:11;66747:10;66742:3;66735:23;66795:15;66788:4;66783:3;66779:14;66772:39;66848:10;66841:4;66836:3;66832:14;66825:34;66898:4;66893:3;66883:20;66873:30;;66684:230;66511:410;;;;:::o;40403:1556::-;40534:7;40543:12;40557:7;41477:66;41472:1;41464:10;;:79;41460:166;;;41576:1;41580:30;41612:1;41560:54;;;;;;;;41460:166;41723:14;41740:24;41750:4;41756:1;41759;41762;41740:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41723:41;;41797:1;41779:20;;:6;:20;;;41775:115;;41832:1;41836:29;41875:1;41867:10;;41816:62;;;;;;;;;41775:115;41910:6;41918:20;41948:1;41940:10;;41902:49;;;;;;;40403:1556;;;;;;;;;:::o;42500:542::-;42596:20;42587:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;42583:452;42633:7;42583:452;42694:29;42685:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;42681:354;;42747:23;;;;;;;;;;;;;;42681:354;42801:35;42792:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;42788:247;;42896:8;42888:17;;42860:46;;;;;;;;;;;:::i;:::-;;;;;;;;42788:247;42937:30;42928:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;42924:111;;43014:8;42991:32;;;;;;;;;;;:::i;:::-;;;;;;;;42924:111;42500:542;;;:::o;101780:140::-;101850:20;;:::i;:::-;101890:4;:17;;101908:3;101890:22;;;;;;;;;;:::i;:::-;;;;;;;;;101883:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101780:140;;;;:::o;164800:423::-;164895:30;164909:4;164915:2;164919:5;164895:13;:30::i;:::-;164956:1;164940:18;;:4;:18;;;164936:232;;164975:14;164992:13;:11;:13::i;:::-;164975:30;;165020:11;165034:12;:10;:12::i;:::-;165020:26;;165074:3;165065:6;:12;165061:96;;;165129:6;165137:3;165105:36;;;;;;;;;;;;:::i;:::-;;;;;;;;165061:96;164960:208;;164936:232;165178:37;165199:4;165205:2;165209:5;165178:20;:37::i;:::-;164800:423;;;:::o;54040:1019::-;54092:7;54112:14;54129:1;54112:18;;54185:1;54179:3;54170:5;:12;;:16;54166:102;;;54217:3;54207:13;;;;;54249:3;54239:13;;;;54166:102;54300:1;54295:2;54286:5;:11;;:15;54282:99;;;54332:2;54322:12;;;;;54363:2;54353:12;;;;54282:99;54413:1;54408:2;54399:5;:11;;:15;54395:99;;;54445:2;54435:12;;;;;54476:2;54466:12;;;;54395:99;54526:1;54521:2;54512:5;:11;;:15;54508:99;;;54558:2;54548:12;;;;;54589:2;54579:12;;;;54508:99;54638:1;54634;54625:5;:10;;:14;54621:96;;;54670:1;54660:11;;;;;54700:1;54690:11;;;;54621:96;54748:1;54744;54735:5;:10;;:14;54731:96;;;54780:1;54770:11;;;;;54810:1;54800:11;;;;54731:96;54858:1;54854;54845:5;:10;;:14;54841:96;;;54890:1;54880:11;;;;;54920:1;54910:11;;;;54841:96;54968:1;54964;54955:5;:10;;:14;54951:66;;;55000:1;54990:11;;;;54951:66;55045:6;55038:13;;;54040:1019;;;:::o;45718:106::-;45776:7;45807:1;45803;:5;:13;;45815:1;45803:13;;;45811:1;45803:13;45796:20;;45718:106;;;;:::o;45943:156::-;46005:7;46090:1;46085;46081;:5;46080:11;;;;:::i;:::-;46075:1;46071;:5;46070:21;;;;:::i;:::-;46063:28;;45943:156;;;;:::o;116343:223::-;116400:7;116432:17;116424:25;;:5;:25;116420:107;;;116504:3;116509:5;116473:42;;;;;;;;;;;;:::i;:::-;;;;;;;;116420:107;116552:5;116537:21;;116343:223;;;:::o;161898:261::-;162069:7;162078;162105:46;162116:7;:5;:7::i;:::-;162125:25;162128:14;:5;:12;:14::i;:::-;162144:5;162125:2;:25;;:::i;:::-;162105:5;:10;;:46;;;;;:::i;:::-;162098:53;;;;161898:261;;;;;;:::o;73143:415::-;73202:13;73228:11;73242:16;73253:4;73242:10;:16::i;:::-;73228:30;;73348:17;73379:2;73368:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73348:34;;73473:3;73468;73461:16;73514:4;73507;73502:3;73498:14;73491:28;73547:3;73540:10;;;;73143:415;;;:::o;27833:147::-;25313:19;:17;:19::i;:::-;27942:30:::1;27956:4;27962:2;27966:5;27942:13;:30::i;:::-;27833:147:::0;;;:::o;164548:105::-;164601:7;164628:17;164621:24;;;;164548:105;:::o;160063:407::-;160183:1;160167:18;;:4;:18;;;160163:109;;160202:58;160208:17;160227:4;160233:26;160252:6;160233:18;:26::i;:::-;160202:5;:58::i;:::-;;;160163:109;160300:1;160286:16;;:2;:16;;;160282:112;;160319:63;160325:17;160344:9;160355:26;160374:6;160355:18;:26::i;:::-;160319:5;:63::i;:::-;;;160282:112;160404:58;160423:15;160433:4;160423:9;:15::i;:::-;160440:13;160450:2;160440:9;:13::i;:::-;160455:6;160404:18;:58::i;:::-;160063:407;;;:::o;98548:164::-;98630:7;98639;98666:38;98674:4;:17;;98693:3;98698:5;98666:7;:38::i;:::-;98659:45;;;;98548:164;;;;;;:::o;73635:251::-;73696:7;73716:14;73769:4;73760;73733:33;;:40;73716:57;;73797:2;73788:6;:11;73784:71;;;73823:20;;;;;;;;;;;;;;73784:71;73872:6;73865:13;;;73635:251;;;:::o;17624:1135::-;17730:1;17714:18;;:4;:18;;;17710:552;;17868:5;17852:12;;:21;;;;;;;:::i;:::-;;;;;;;;17710:552;;;17906:19;17928:9;:15;17938:4;17928:15;;;;;;;;;;;;;;;;17906:37;;17976:5;17962:11;:19;17958:117;;;18034:4;18040:11;18053:5;18009:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17958:117;18230:5;18216:11;:19;18198:9;:15;18208:4;18198:15;;;;;;;;;;;;;;;:37;;;;17891:371;17710:552;18292:1;18278:16;;:2;:16;;;18274:435;;18460:5;18444:12;;:21;;;;;;;;;;;18274:435;;;18677:5;18660:9;:13;18670:2;18660:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18274:435;18741:2;18726:25;;18735:4;18726:25;;;18745:5;18726:25;;;;;;:::i;:::-;;;;;;;;17624:1135;;;:::o;102102:893::-;102193:7;102202;102222:11;102236:4;:11;;;;102222:25;;102270:1;102264:3;:7;102260:728;;;102341:25;102369:28;102383:4;102395:1;102389:3;:7;;;;:::i;:::-;102369:13;:28::i;:::-;102341:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102486:3;102474:15;;:4;:9;;;:15;;;102470:93;;;102517:30;;;;;;;;;;;;;;102470:93;102642:3;102629:16;;:4;:9;;;:16;;;102625:193;;102704:5;102666:28;102680:4;102692:1;102686:3;:7;;;;:::i;:::-;102666:13;:28::i;:::-;:35;;;:43;;;;;;;;;;;;;;;;;;102625:193;;;102750:4;102760:41;;;;;;;;102781:3;102760:41;;;;;;102794:5;102760:41;;;;;102750:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102625:193;102840:4;:11;;;102853:5;102832:27;;;;;;;;102260:728;102892:4;102902:41;;;;;;;;102923:3;102902:41;;;;;;102936:5;102902:41;;;;;102892:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102967:1;102970:5;102959:17;;;;;102102:893;;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:117::-;4962:1;4959;4952:12;4976:180;5024:77;5021:1;5014:88;5121:4;5118:1;5111:15;5145:4;5142:1;5135:15;5162:281;5245:27;5267:4;5245:27;:::i;:::-;5237:6;5233:40;5375:6;5363:10;5360:22;5339:18;5327:10;5324:34;5321:62;5318:88;;;5386:18;;:::i;:::-;5318:88;5426:10;5422:2;5415:22;5205:238;5162:281;;:::o;5449:129::-;5483:6;5510:20;;:::i;:::-;5500:30;;5539:33;5567:4;5559:6;5539:33;:::i;:::-;5449:129;;;:::o;5584:311::-;5661:4;5751:18;5743:6;5740:30;5737:56;;;5773:18;;:::i;:::-;5737:56;5823:4;5815:6;5811:17;5803:25;;5883:4;5877;5873:15;5865:23;;5584:311;;;:::o;5901:117::-;6010:1;6007;6000:12;6041:710;6137:5;6162:81;6178:64;6235:6;6178:64;:::i;:::-;6162:81;:::i;:::-;6153:90;;6263:5;6292:6;6285:5;6278:21;6326:4;6319:5;6315:16;6308:23;;6379:4;6371:6;6367:17;6359:6;6355:30;6408:3;6400:6;6397:15;6394:122;;;6427:79;;:::i;:::-;6394:122;6542:6;6525:220;6559:6;6554:3;6551:15;6525:220;;;6634:3;6663:37;6696:3;6684:10;6663:37;:::i;:::-;6658:3;6651:50;6730:4;6725:3;6721:14;6714:21;;6601:144;6585:4;6580:3;6576:14;6569:21;;6525:220;;;6529:21;6143:608;;6041:710;;;;;:::o;6774:370::-;6845:5;6894:3;6887:4;6879:6;6875:17;6871:27;6861:122;;6902:79;;:::i;:::-;6861:122;7019:6;7006:20;7044:94;7134:3;7126:6;7119:4;7111:6;7107:17;7044:94;:::i;:::-;7035:103;;6851:293;6774:370;;;;:::o;7150:311::-;7227:4;7317:18;7309:6;7306:30;7303:56;;;7339:18;;:::i;:::-;7303:56;7389:4;7381:6;7377:17;7369:25;;7449:4;7443;7439:15;7431:23;;7150:311;;;:::o;7484:710::-;7580:5;7605:81;7621:64;7678:6;7621:64;:::i;:::-;7605:81;:::i;:::-;7596:90;;7706:5;7735:6;7728:5;7721:21;7769:4;7762:5;7758:16;7751:23;;7822:4;7814:6;7810:17;7802:6;7798:30;7851:3;7843:6;7840:15;7837:122;;;7870:79;;:::i;:::-;7837:122;7985:6;7968:220;8002:6;7997:3;7994:15;7968:220;;;8077:3;8106:37;8139:3;8127:10;8106:37;:::i;:::-;8101:3;8094:50;8173:4;8168:3;8164:14;8157:21;;8044:144;8028:4;8023:3;8019:14;8012:21;;7968:220;;;7972:21;7586:608;;7484:710;;;;;:::o;8217:370::-;8288:5;8337:3;8330:4;8322:6;8318:17;8314:27;8304:122;;8345:79;;:::i;:::-;8304:122;8462:6;8449:20;8487:94;8577:3;8569:6;8562:4;8554:6;8550:17;8487:94;:::i;:::-;8478:103;;8294:293;8217:370;;;;:::o;8593:894::-;8711:6;8719;8768:2;8756:9;8747:7;8743:23;8739:32;8736:119;;;8774:79;;:::i;:::-;8736:119;8922:1;8911:9;8907:17;8894:31;8952:18;8944:6;8941:30;8938:117;;;8974:79;;:::i;:::-;8938:117;9079:78;9149:7;9140:6;9129:9;9125:22;9079:78;:::i;:::-;9069:88;;8865:302;9234:2;9223:9;9219:18;9206:32;9265:18;9257:6;9254:30;9251:117;;;9287:79;;:::i;:::-;9251:117;9392:78;9462:7;9453:6;9442:9;9438:22;9392:78;:::i;:::-;9382:88;;9177:303;8593:894;;;;;:::o;9493:77::-;9530:7;9559:5;9548:16;;9493:77;;;:::o;9576:118::-;9663:24;9681:5;9663:24;:::i;:::-;9658:3;9651:37;9576:118;;:::o;9700:222::-;9793:4;9831:2;9820:9;9816:18;9808:26;;9844:71;9912:1;9901:9;9897:17;9888:6;9844:71;:::i;:::-;9700:222;;;;:::o;9928:329::-;9987:6;10036:2;10024:9;10015:7;10011:23;10007:32;10004:119;;;10042:79;;:::i;:::-;10004:119;10162:1;10187:53;10232:7;10223:6;10212:9;10208:22;10187:53;:::i;:::-;10177:63;;10133:117;9928:329;;;;:::o;10263:::-;10322:6;10371:2;10359:9;10350:7;10346:23;10342:32;10339:119;;;10377:79;;:::i;:::-;10339:119;10497:1;10522:53;10567:7;10558:6;10547:9;10543:22;10522:53;:::i;:::-;10512:63;;10468:117;10263:329;;;;:::o;10598:118::-;10685:24;10703:5;10685:24;:::i;:::-;10680:3;10673:37;10598:118;;:::o;10722:222::-;10815:4;10853:2;10842:9;10838:18;10830:26;;10866:71;10934:1;10923:9;10919:17;10910:6;10866:71;:::i;:::-;10722:222;;;;:::o;10950:93::-;10986:7;11026:10;11019:5;11015:22;11004:33;;10950:93;;;:::o;11049:115::-;11134:23;11151:5;11134:23;:::i;:::-;11129:3;11122:36;11049:115;;:::o;11170:218::-;11261:4;11299:2;11288:9;11284:18;11276:26;;11312:69;11378:1;11367:9;11363:17;11354:6;11312:69;:::i;:::-;11170:218;;;;:::o;11394:149::-;11430:7;11470:66;11463:5;11459:78;11448:89;;11394:149;;;:::o;11549:115::-;11634:23;11651:5;11634:23;:::i;:::-;11629:3;11622:36;11549:115;;:::o;11670:114::-;11737:6;11771:5;11765:12;11755:22;;11670:114;;;:::o;11790:184::-;11889:11;11923:6;11918:3;11911:19;11963:4;11958:3;11954:14;11939:29;;11790:184;;;;:::o;11980:132::-;12047:4;12070:3;12062:11;;12100:4;12095:3;12091:14;12083:22;;11980:132;;;:::o;12118:108::-;12195:24;12213:5;12195:24;:::i;:::-;12190:3;12183:37;12118:108;;:::o;12232:179::-;12301:10;12322:46;12364:3;12356:6;12322:46;:::i;:::-;12400:4;12395:3;12391:14;12377:28;;12232:179;;;;:::o;12417:113::-;12487:4;12519;12514:3;12510:14;12502:22;;12417:113;;;:::o;12566:732::-;12685:3;12714:54;12762:5;12714:54;:::i;:::-;12784:86;12863:6;12858:3;12784:86;:::i;:::-;12777:93;;12894:56;12944:5;12894:56;:::i;:::-;12973:7;13004:1;12989:284;13014:6;13011:1;13008:13;12989:284;;;13090:6;13084:13;13117:63;13176:3;13161:13;13117:63;:::i;:::-;13110:70;;13203:60;13256:6;13203:60;:::i;:::-;13193:70;;13049:224;13036:1;13033;13029:9;13024:14;;12989:284;;;12993:14;13289:3;13282:10;;12690:608;;;12566:732;;;;:::o;13304:1215::-;13653:4;13691:3;13680:9;13676:19;13668:27;;13705:69;13771:1;13760:9;13756:17;13747:6;13705:69;:::i;:::-;13821:9;13815:4;13811:20;13806:2;13795:9;13791:18;13784:48;13849:78;13922:4;13913:6;13849:78;:::i;:::-;13841:86;;13974:9;13968:4;13964:20;13959:2;13948:9;13944:18;13937:48;14002:78;14075:4;14066:6;14002:78;:::i;:::-;13994:86;;14090:72;14158:2;14147:9;14143:18;14134:6;14090:72;:::i;:::-;14172:73;14240:3;14229:9;14225:19;14216:6;14172:73;:::i;:::-;14255;14323:3;14312:9;14308:19;14299:6;14255:73;:::i;:::-;14376:9;14370:4;14366:20;14360:3;14349:9;14345:19;14338:49;14404:108;14507:4;14498:6;14404:108;:::i;:::-;14396:116;;13304:1215;;;;;;;;;;:::o;14525:97::-;14561:7;14601:14;14594:5;14590:26;14579:37;;14525:97;;;:::o;14628:115::-;14713:23;14730:5;14713:23;:::i;:::-;14708:3;14701:36;14628:115;;:::o;14749:218::-;14840:4;14878:2;14867:9;14863:18;14855:26;;14891:69;14957:1;14946:9;14942:17;14933:6;14891:69;:::i;:::-;14749:218;;;;:::o;14973:118::-;15044:22;15060:5;15044:22;:::i;:::-;15037:5;15034:33;15024:61;;15081:1;15078;15071:12;15024:61;14973:118;:::o;15097:135::-;15141:5;15179:6;15166:20;15157:29;;15195:31;15220:5;15195:31;:::i;:::-;15097:135;;;;:::o;15238:122::-;15311:24;15329:5;15311:24;:::i;:::-;15304:5;15301:35;15291:63;;15350:1;15347;15340:12;15291:63;15238:122;:::o;15366:139::-;15412:5;15450:6;15437:20;15428:29;;15466:33;15493:5;15466:33;:::i;:::-;15366:139;;;;:::o;15511:1053::-;15613:6;15621;15629;15637;15645;15653;15702:3;15690:9;15681:7;15677:23;15673:33;15670:120;;;15709:79;;:::i;:::-;15670:120;15829:1;15854:53;15899:7;15890:6;15879:9;15875:22;15854:53;:::i;:::-;15844:63;;15800:117;15956:2;15982:53;16027:7;16018:6;16007:9;16003:22;15982:53;:::i;:::-;15972:63;;15927:118;16084:2;16110:53;16155:7;16146:6;16135:9;16131:22;16110:53;:::i;:::-;16100:63;;16055:118;16212:2;16238:51;16281:7;16272:6;16261:9;16257:22;16238:51;:::i;:::-;16228:61;;16183:116;16338:3;16365:53;16410:7;16401:6;16390:9;16386:22;16365:53;:::i;:::-;16355:63;;16309:119;16467:3;16494:53;16539:7;16530:6;16519:9;16515:22;16494:53;:::i;:::-;16484:63;;16438:119;15511:1053;;;;;;;;:::o;16570:1199::-;16681:6;16689;16697;16705;16713;16721;16729;16778:3;16766:9;16757:7;16753:23;16749:33;16746:120;;;16785:79;;:::i;:::-;16746:120;16905:1;16930:53;16975:7;16966:6;16955:9;16951:22;16930:53;:::i;:::-;16920:63;;16876:117;17032:2;17058:53;17103:7;17094:6;17083:9;17079:22;17058:53;:::i;:::-;17048:63;;17003:118;17160:2;17186:53;17231:7;17222:6;17211:9;17207:22;17186:53;:::i;:::-;17176:63;;17131:118;17288:2;17314:53;17359:7;17350:6;17339:9;17335:22;17314:53;:::i;:::-;17304:63;;17259:118;17416:3;17443:51;17486:7;17477:6;17466:9;17462:22;17443:51;:::i;:::-;17433:61;;17387:117;17543:3;17570:53;17615:7;17606:6;17595:9;17591:22;17570:53;:::i;:::-;17560:63;;17514:119;17672:3;17699:53;17744:7;17735:6;17724:9;17720:22;17699:53;:::i;:::-;17689:63;;17643:119;16570:1199;;;;;;;;;;:::o;17775:474::-;17843:6;17851;17900:2;17888:9;17879:7;17875:23;17871:32;17868:119;;;17906:79;;:::i;:::-;17868:119;18026:1;18051:53;18096:7;18087:6;18076:9;18072:22;18051:53;:::i;:::-;18041:63;;17997:117;18153:2;18179:53;18224:7;18215:6;18204:9;18200:22;18179:53;:::i;:::-;18169:63;;18124:118;17775:474;;;;;:::o;18255:332::-;18376:4;18414:2;18403:9;18399:18;18391:26;;18427:71;18495:1;18484:9;18480:17;18471:6;18427:71;:::i;:::-;18508:72;18576:2;18565:9;18561:18;18552:6;18508:72;:::i;:::-;18255:332;;;;;:::o;18593:120::-;18665:23;18682:5;18665:23;:::i;:::-;18658:5;18655:34;18645:62;;18703:1;18700;18693:12;18645:62;18593:120;:::o;18719:137::-;18764:5;18802:6;18789:20;18780:29;;18818:32;18844:5;18818:32;:::i;:::-;18719:137;;;;:::o;18862:472::-;18929:6;18937;18986:2;18974:9;18965:7;18961:23;18957:32;18954:119;;;18992:79;;:::i;:::-;18954:119;19112:1;19137:53;19182:7;19173:6;19162:9;19158:22;19137:53;:::i;:::-;19127:63;;19083:117;19239:2;19265:52;19309:7;19300:6;19289:9;19285:22;19265:52;:::i;:::-;19255:62;;19210:117;18862:472;;;;;:::o;19340:105::-;19415:23;19432:5;19415:23;:::i;:::-;19410:3;19403:36;19340:105;;:::o;19451:138::-;19488:7;19528:54;19521:5;19517:66;19506:77;;19451:138;;;:::o;19595:108::-;19672:24;19690:5;19672:24;:::i;:::-;19667:3;19660:37;19595:108;;:::o;19785:519::-;19944:4;19939:3;19935:14;20031:4;20024:5;20020:16;20014:23;20050:61;20105:4;20100:3;20096:14;20082:12;20050:61;:::i;:::-;19959:162;20205:4;20198:5;20194:16;20188:23;20224:63;20281:4;20276:3;20272:14;20258:12;20224:63;:::i;:::-;20131:166;19913:391;19785:519;;:::o;20310:346::-;20465:4;20503:2;20492:9;20488:18;20480:26;;20516:133;20646:1;20635:9;20631:17;20622:6;20516:133;:::i;:::-;20310:346;;;;:::o;20662:619::-;20739:6;20747;20755;20804:2;20792:9;20783:7;20779:23;20775:32;20772:119;;;20810:79;;:::i;:::-;20772:119;20930:1;20955:53;21000:7;20991:6;20980:9;20976:22;20955:53;:::i;:::-;20945:63;;20901:117;21057:2;21083:53;21128:7;21119:6;21108:9;21104:22;21083:53;:::i;:::-;21073:63;;21028:118;21185:2;21211:53;21256:7;21247:6;21236:9;21232:22;21211:53;:::i;:::-;21201:63;;21156:118;20662:619;;;;;:::o;21287:180::-;21335:77;21332:1;21325:88;21432:4;21429:1;21422:15;21456:4;21453:1;21446:15;21473:320;21517:6;21554:1;21548:4;21544:12;21534:22;;21601:1;21595:4;21591:12;21622:18;21612:81;;21678:4;21670:6;21666:17;21656:27;;21612:81;21740:2;21732:6;21729:14;21709:18;21706:38;21703:84;;21759:18;;:::i;:::-;21703:84;21524:269;21473:320;;;:::o;21799:178::-;21939:30;21935:1;21927:6;21923:14;21916:54;21799:178;:::o;21983:366::-;22125:3;22146:67;22210:2;22205:3;22146:67;:::i;:::-;22139:74;;22222:93;22311:3;22222:93;:::i;:::-;22340:2;22335:3;22331:12;22324:19;;21983:366;;;:::o;22355:419::-;22521:4;22559:2;22548:9;22544:18;22536:26;;22608:9;22602:4;22598:20;22594:1;22583:9;22579:17;22572:47;22636:131;22762:4;22636:131;:::i;:::-;22628:139;;22355:419;;;:::o;22780:180::-;22828:77;22825:1;22818:88;22925:4;22922:1;22915:15;22949:4;22946:1;22939:15;22966:179;23106:31;23102:1;23094:6;23090:14;23083:55;22966:179;:::o;23151:366::-;23293:3;23314:67;23378:2;23373:3;23314:67;:::i;:::-;23307:74;;23390:93;23479:3;23390:93;:::i;:::-;23508:2;23503:3;23499:12;23492:19;;23151:366;;;:::o;23523:419::-;23689:4;23727:2;23716:9;23712:18;23704:26;;23776:9;23770:4;23766:20;23762:1;23751:9;23747:17;23740:47;23804:131;23930:4;23804:131;:::i;:::-;23796:139;;23523:419;;;:::o;23948:180::-;23996:77;23993:1;23986:88;24093:4;24090:1;24083:15;24117:4;24114:1;24107:15;24134:233;24173:3;24196:24;24214:5;24196:24;:::i;:::-;24187:33;;24242:66;24235:5;24232:77;24229:103;;24312:18;;:::i;:::-;24229:103;24359:1;24352:5;24348:13;24341:20;;24134:233;;;:::o;24373:328::-;24492:4;24530:2;24519:9;24515:18;24507:26;;24543:71;24611:1;24600:9;24596:17;24587:6;24543:71;:::i;:::-;24624:70;24690:2;24679:9;24675:18;24666:6;24624:70;:::i;:::-;24373:328;;;;;:::o;24707:171::-;24847:23;24843:1;24835:6;24831:14;24824:47;24707:171;:::o;24884:366::-;25026:3;25047:67;25111:2;25106:3;25047:67;:::i;:::-;25040:74;;25123:93;25212:3;25123:93;:::i;:::-;25241:2;25236:3;25232:12;25225:19;;24884:366;;;:::o;25256:419::-;25422:4;25460:2;25449:9;25445:18;25437:26;;25509:9;25503:4;25499:20;25495:1;25484:9;25480:17;25473:47;25537:131;25663:4;25537:131;:::i;:::-;25529:139;;25256:419;;;:::o;25681:224::-;25821:34;25817:1;25809:6;25805:14;25798:58;25890:7;25885:2;25877:6;25873:15;25866:32;25681:224;:::o;25911:366::-;26053:3;26074:67;26138:2;26133:3;26074:67;:::i;:::-;26067:74;;26150:93;26239:3;26150:93;:::i;:::-;26268:2;26263:3;26259:12;26252:19;;25911:366;;;:::o;26283:419::-;26449:4;26487:2;26476:9;26472:18;26464:26;;26536:9;26530:4;26526:20;26522:1;26511:9;26507:17;26500:47;26564:131;26690:4;26564:131;:::i;:::-;26556:139;;26283:419;;;:::o;26708:194::-;26748:4;26768:20;26786:1;26768:20;:::i;:::-;26763:25;;26802:20;26820:1;26802:20;:::i;:::-;26797:25;;26846:1;26843;26839:9;26831:17;;26870:1;26864:4;26861:11;26858:37;;;26875:18;;:::i;:::-;26858:37;26708:194;;;;:::o;26908:553::-;27085:4;27123:3;27112:9;27108:19;27100:27;;27137:71;27205:1;27194:9;27190:17;27181:6;27137:71;:::i;:::-;27218:72;27286:2;27275:9;27271:18;27262:6;27218:72;:::i;:::-;27300;27368:2;27357:9;27353:18;27344:6;27300:72;:::i;:::-;27382;27450:2;27439:9;27435:18;27426:6;27382:72;:::i;:::-;26908:553;;;;;;;:::o;27467:775::-;27700:4;27738:3;27727:9;27723:19;27715:27;;27752:71;27820:1;27809:9;27805:17;27796:6;27752:71;:::i;:::-;27833:72;27901:2;27890:9;27886:18;27877:6;27833:72;:::i;:::-;27915;27983:2;27972:9;27968:18;27959:6;27915:72;:::i;:::-;27997;28065:2;28054:9;28050:18;28041:6;27997:72;:::i;:::-;28079:73;28147:3;28136:9;28132:19;28123:6;28079:73;:::i;:::-;28162;28230:3;28219:9;28215:19;28206:6;28162:73;:::i;:::-;27467:775;;;;;;;;;:::o;28248:332::-;28369:4;28407:2;28396:9;28392:18;28384:26;;28420:71;28488:1;28477:9;28473:17;28464:6;28420:71;:::i;:::-;28501:72;28569:2;28558:9;28554:18;28545:6;28501:72;:::i;:::-;28248:332;;;;;:::o;28586:226::-;28726:34;28722:1;28714:6;28710:14;28703:58;28795:9;28790:2;28782:6;28778:15;28771:34;28586:226;:::o;28818:366::-;28960:3;28981:67;29045:2;29040:3;28981:67;:::i;:::-;28974:74;;29057:93;29146:3;29057:93;:::i;:::-;29175:2;29170:3;29166:12;29159:19;;28818:366;;;:::o;29190:419::-;29356:4;29394:2;29383:9;29379:18;29371:26;;29443:9;29437:4;29433:20;29429:1;29418:9;29414:17;29407:47;29471:131;29597:4;29471:131;:::i;:::-;29463:139;;29190:419;;;:::o;29615:224::-;29755:34;29751:1;29743:6;29739:14;29732:58;29824:7;29819:2;29811:6;29807:15;29800:32;29615:224;:::o;29845:366::-;29987:3;30008:67;30072:2;30067:3;30008:67;:::i;:::-;30001:74;;30084:93;30173:3;30084:93;:::i;:::-;30202:2;30197:3;30193:12;30186:19;;29845:366;;;:::o;30217:419::-;30383:4;30421:2;30410:9;30406:18;30398:26;;30470:9;30464:4;30460:20;30456:1;30445:9;30441:17;30434:47;30498:131;30624:4;30498:131;:::i;:::-;30490:139;;30217:419;;;:::o;30642:410::-;30682:7;30705:20;30723:1;30705:20;:::i;:::-;30700:25;;30739:20;30757:1;30739:20;:::i;:::-;30734:25;;30794:1;30791;30787:9;30816:30;30834:11;30816:30;:::i;:::-;30805:41;;30995:1;30986:7;30982:15;30979:1;30976:22;30956:1;30949:9;30929:83;30906:139;;31025:18;;:::i;:::-;30906:139;30690:362;30642:410;;;;:::o;31058:191::-;31098:3;31117:20;31135:1;31117:20;:::i;:::-;31112:25;;31151:20;31169:1;31151:20;:::i;:::-;31146:25;;31194:1;31191;31187:9;31180:16;;31215:3;31212:1;31209:10;31206:36;;;31222:18;;:::i;:::-;31206:36;31058:191;;;;:::o;31255:244::-;31295:3;31314:20;31332:1;31314:20;:::i;:::-;31309:25;;31348:20;31366:1;31348:20;:::i;:::-;31343:25;;31391:1;31388;31384:9;31377:16;;31414:54;31409:3;31406:63;31403:89;;;31472:18;;:::i;:::-;31403:89;31255:244;;;;:::o;31505:247::-;31545:4;31565:20;31583:1;31565:20;:::i;:::-;31560:25;;31599:20;31617:1;31599:20;:::i;:::-;31594:25;;31643:1;31640;31636:9;31628:17;;31667:54;31661:4;31658:64;31655:90;;;31725:18;;:::i;:::-;31655:90;31505:247;;;;:::o;31758:442::-;31907:4;31945:2;31934:9;31930:18;31922:26;;31958:71;32026:1;32015:9;32011:17;32002:6;31958:71;:::i;:::-;32039:72;32107:2;32096:9;32092:18;32083:6;32039:72;:::i;:::-;32121;32189:2;32178:9;32174:18;32165:6;32121:72;:::i;:::-;31758:442;;;;;;:::o;32206:86::-;32252:7;32281:5;32270:16;;32206:86;;;:::o;32298:60::-;32326:3;32347:5;32340:12;;32298:60;;;:::o;32364:156::-;32421:9;32454:60;32470:43;32479:33;32506:5;32479:33;:::i;:::-;32470:43;:::i;:::-;32454:60;:::i;:::-;32441:73;;32364:156;;;:::o;32526:145::-;32620:44;32658:5;32620:44;:::i;:::-;32615:3;32608:57;32526:145;;:::o;32677:346::-;32805:4;32843:2;32832:9;32828:18;32820:26;;32856:78;32931:1;32920:9;32916:17;32907:6;32856:78;:::i;:::-;32944:72;33012:2;33001:9;32997:18;32988:6;32944:72;:::i;:::-;32677:346;;;;;:::o;33029:332::-;33150:4;33188:2;33177:9;33173:18;33165:26;;33201:71;33269:1;33258:9;33254:17;33245:6;33201:71;:::i;:::-;33282:72;33350:2;33339:9;33335:18;33326:6;33282:72;:::i;:::-;33029:332;;;;;:::o;33367:244::-;33507:34;33503:1;33495:6;33491:14;33484:58;33576:27;33571:2;33563:6;33559:15;33552:52;33367:244;:::o;33617:366::-;33759:3;33780:67;33844:2;33839:3;33780:67;:::i;:::-;33773:74;;33856:93;33945:3;33856:93;:::i;:::-;33974:2;33969:3;33965:12;33958:19;;33617:366;;;:::o;33989:419::-;34155:4;34193:2;34182:9;34178:18;34170:26;;34242:9;34236:4;34232:20;34228:1;34217:9;34213:17;34206:47;34270:131;34396:4;34270:131;:::i;:::-;34262:139;;33989:419;;;:::o;34414:664::-;34619:4;34657:3;34646:9;34642:19;34634:27;;34671:71;34739:1;34728:9;34724:17;34715:6;34671:71;:::i;:::-;34752:72;34820:2;34809:9;34805:18;34796:6;34752:72;:::i;:::-;34834;34902:2;34891:9;34887:18;34878:6;34834:72;:::i;:::-;34916;34984:2;34973:9;34969:18;34960:6;34916:72;:::i;:::-;34998:73;35066:3;35055:9;35051:19;35042:6;34998:73;:::i;:::-;34414:664;;;;;;;;:::o;35084:180::-;35132:77;35129:1;35122:88;35229:4;35226:1;35219:15;35253:4;35250:1;35243:15;35270:86;35316:7;35345:5;35334:16;;35270:86;;;:::o;35362:156::-;35419:9;35452:60;35468:43;35477:33;35504:5;35477:33;:::i;:::-;35468:43;:::i;:::-;35452:60;:::i;:::-;35439:73;;35362:156;;;:::o;35524:145::-;35618:44;35656:5;35618:44;:::i;:::-;35613:3;35606:57;35524:145;;:::o;35675:346::-;35803:4;35841:2;35830:9;35826:18;35818:26;;35854:78;35929:1;35918:9;35914:17;35905:6;35854:78;:::i;:::-;35942:72;36010:2;35999:9;35995:18;35986:6;35942:72;:::i;:::-;35675:346;;;;;:::o;36027:545::-;36200:4;36238:3;36227:9;36223:19;36215:27;;36252:71;36320:1;36309:9;36305:17;36296:6;36252:71;:::i;:::-;36333:68;36397:2;36386:9;36382:18;36373:6;36333:68;:::i;:::-;36411:72;36479:2;36468:9;36464:18;36455:6;36411:72;:::i;:::-;36493;36561:2;36550:9;36546:18;36537:6;36493:72;:::i;:::-;36027:545;;;;;;;:::o;36578:180::-;36626:77;36623:1;36616:88;36723:4;36720:1;36713:15;36747:4;36744:1;36737:15;36764:185;36804:1;36821:20;36839:1;36821:20;:::i;:::-;36816:25;;36855:20;36873:1;36855:20;:::i;:::-;36850:25;;36894:1;36884:35;;36899:18;;:::i;:::-;36884:35;36941:1;36938;36934:9;36929:14;;36764:185;;;;:::o;36955:87::-;37002:7;37031:5;37020:16;;36955:87;;;:::o;37048:158::-;37106:9;37139:61;37155:44;37164:34;37192:5;37164:34;:::i;:::-;37155:44;:::i;:::-;37139:61;:::i;:::-;37126:74;;37048:158;;;:::o;37212:147::-;37307:45;37346:5;37307:45;:::i;:::-;37302:3;37295:58;37212:147;;:::o;37365:348::-;37494:4;37532:2;37521:9;37517:18;37509:26;;37545:79;37621:1;37610:9;37606:17;37597:6;37545:79;:::i;:::-;37634:72;37702:2;37691:9;37687:18;37678:6;37634:72;:::i;:::-;37365:348;;;;;:::o
Swarm Source
ipfs://62dd0b6e1f0122a6bfe0bb5ca3889d5848b8cf0a912cefa7984b567bd41b7d97
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.