Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
DeFi
Overview
Max Total Supply
995,904,765.25899 TYRION
Holders
1,142 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Tyrion
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-19 */ // Sources flattened with hardhat v2.14.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. 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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @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 override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override 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 `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @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 `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` 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 * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @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. */ 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]. */ 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/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @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 up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @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; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 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. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, 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 (rounding == Rounding.Up && 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 down. * * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * 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 + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File @openzeppelin/contracts/utils/math/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @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/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(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) { 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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); 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 keccak256(bytes(a)) == keccak256(bytes(b)); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @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, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode 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 {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] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { 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); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode 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 {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); 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] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); 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. * * _Available since v4.2._ */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) { // 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); } // 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); } return (signer, RecoverError.NoError); } /** * @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) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } } // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol) pragma solidity ^0.8.0; 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/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.0; /** * @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(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._ * _Available since v4.9 for `string`, `bytes`._ */ 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/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol) pragma solidity ^0.8.8; // | 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/utils/cryptography/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.8; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic 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 their contracts 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. * * _Available since v3.4._ * * @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment */ 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 ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev See {EIP-5267}. * * _Available since v4.9._ */ function eip712Domain() public view virtual override returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { return ( hex"0f", // 01111 _name.toStringWithFallback(_nameFallback), _version.toStringWithFallback(_versionFallback), block.chainid, address(this), bytes32(0), new uint256[](0) ); } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/ERC20Permit.sol) pragma solidity ^0.8.0; /** * @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. * * _Available since v3.4._ */ abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 { using Counters for Counters.Counter; mapping(address => Counters.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private constant _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`. * However, to ensure consistency with the upgradeable transpiler, we will continue * to reserve a slot. * @custom:oz-renamed-from _PERMIT_TYPEHASH */ // solhint-disable-next-line var-name-mixedcase bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT; /** * @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") {} /** * @dev See {IERC20Permit-permit}. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= deadline, "ERC20Permit: expired 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); require(signer == owner, "ERC20Permit: invalid signature"); _approve(owner, spender, value); } /** * @dev See {IERC20Permit-nonces}. */ function nonces(address owner) public view virtual override returns (uint256) { return _nonces[owner].current(); } /** * @dev See {IERC20Permit-DOMAIN_SEPARATOR}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view override returns (bytes32) { return _domainSeparatorV4(); } /** * @dev "Consume a nonce": return the current value and increment. * * _Available since v4.1._ */ function _useNonce(address owner) internal virtual returns (uint256 current) { Counters.Counter storage nonce = _nonces[owner]; current = nonce.current(); nonce.increment(); } } // File contracts/Tyrion.sol pragma solidity ^0.8.9; /* Website: https://tyrion.finance TG: https://t.me/tyrionfinance Twitter: https://twitter.com/tyrionfinance */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } contract Tyrion is ERC20, ERC20Burnable, ERC20Permit, Ownable { uint public tax; uint256 public swapTokensAtAmount; uint256 public maxTaxSwap; uint256 public maxWalletSize; address public taxWallet; bool private swapping; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; mapping(address => bool) public isExcludedFromFees; mapping(address => bool) public automatedMarketMakerPairs; mapping(address => bool) public blacklist; uint256 public uniswapDeployBlock; bool public isBlacklistActive; constructor() ERC20("Tyrion.finance", "TYRION") ERC20Permit("Tyrion.finance") { uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D //Uniswap V2 Router ); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()) .createPair(address(this), uniswapV2Router.WETH()); setAutomatedMarketMakerPair(address(uniswapV2Pair), true); excludeFromFees(msg.sender, true); excludeFromFees(address(this), true); _mint(msg.sender, 1000000000 * 10 ** decimals()); taxWallet = msg.sender; tax = 50; // 5% swapTokensAtAmount = totalSupply() * 2 / 10000; // 0.02% maxTaxSwap = totalSupply() * 20 / 10000; // 0.2% maxWalletSize = totalSupply() * 3 / 100; // 3% } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklist[from], "From address is blacklisted"); if (amount == 0) { super._transfer(from, to, 0); return; } if (maxWalletSize > 0 && automatedMarketMakerPairs[from]) { require(balanceOf(to) + amount <= maxWalletSize, "Recipient's wallet size exceeded"); } // Blacklist buyers in first 3 blocks of Uniswap pool launch if (block.number <= uniswapDeployBlock + 3 && automatedMarketMakerPairs[from]) { blacklist[to] = true; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && !swapping && automatedMarketMakerPairs[to] && !isExcludedFromFees[from] && !isExcludedFromFees[to] ) { swapping = true; swapTokensForEth(Math.min(contractTokenBalance, maxTaxSwap)); swapping = false; } bool takeFee = (tax > 0) && !swapping; // If any account belongs to _isExcludedFromFee account then remove the fee if (isExcludedFromFees[from] || isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // Only take fees on buys/sells, do not take on wallet transfers if (takeFee && (automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from])) { fees = (amount * tax) / 1000; } if (fees > 0) { super._transfer(from, address(this), fees); amount -= fees; } super._transfer(from, to, amount); } function setTaxPercent(uint newTax) public onlyOwner { require(newTax <= 50, "Can't set higher tax than 5%"); tax = newTax; } function setMaxWalletSize(uint256 newSize) public onlyOwner { maxWalletSize = newSize; } function setMaxTaxSwap(uint256 newMax) public onlyOwner { maxTaxSwap = newMax; } function setTaxWallet(address newWallet) public onlyOwner { taxWallet = newWallet; } function excludeFromFees(address account, bool excluded) public onlyOwner { isExcludedFromFees[account] = excluded; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { automatedMarketMakerPairs[pair] = value; } function setBlacklist(address account, bool value) public onlyOwner { require( isBlacklistActive || (!isBlacklistActive && !value), "You can no longer blacklist addresses when the blacklist is deactivated" ); blacklist[account] = value; } function getBlacklist(address account) public view returns (bool) { return blacklist[account]; } function deactivateBlacklist() public onlyOwner { isBlacklistActive = false; } function withdrawEth(address toAddr) public onlyOwner { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } function launchUniswapPool(uint256 poolTokens) external payable onlyOwner { require(poolTokens > 0, "Must provide liquidity"); require(msg.value > 0, "Must provide liquidity"); uniswapDeployBlock = block.number; isBlacklistActive = true; transfer(address(this), poolTokens); _approve(address(this), address(uniswapV2Router), poolTokens); uniswapV2Router.addLiquidityETH{ value: msg.value }( address(this), poolTokens, 0, 0, owner(), block.timestamp ); } function swapTokensForEth(uint256 tokenAmount) private { // Generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // Make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // Accept any amount of ETH; ignore slippage path, address(taxWallet), block.timestamp ); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","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":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deactivateBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getBlacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isBlacklistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"poolTokens","type":"uint256"}],"name":"launchUniswapPool","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTaxSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTax","type":"uint256"}],"name":"setTaxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapDeployBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101a06040523480156200001257600080fd5b506040518060400160405280600e81526020016d547972696f6e2e66696e616e636560901b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600e81526020016d547972696f6e2e66696e616e636560901b815250604051806040016040528060068152602001652a2ca924a7a760d11b8152508160039081620000ac919062000717565b506004620000bb828262000717565b505050620000d9600583620003f760201b620010ad1790919060201c565b61012052620000f6816006620003f7602090811b620010ad17901c565b61014052815160208084019190912060e052815190820120610100524660a0526200018460e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b60805250503060c05250620001993362000447565b737a250d5630b4cf539739df2c5dacb4c659f2488d6101608190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620001f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002169190620007e3565b6001600160a01b031663c9c6539630610160516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000267573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028d9190620007e3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002db573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003019190620007e3565b6001600160a01b03166101808190526200031d90600162000499565b6200032a336001620004ce565b62000337306001620004ce565b62000360336200034a6012600a62000928565b6200035a90633b9aca0062000939565b62000503565b600e80546001600160a01b031916331790556032600a556127106200038460025490565b6200039190600262000939565b6200039d919062000953565b600b55612710620003ad60025490565b620003ba90601462000939565b620003c6919062000953565b600c556064620003d560025490565b620003e290600362000939565b620003ee919062000953565b600d5562000a01565b600060208351101562000417576200040f83620005ca565b905062000441565b826200042e836200060d60201b620010de1760201c565b906200043b908262000717565b5060ff90505b92915050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620004a362000610565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b620004d862000610565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b6001600160a01b0382166200055f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b806002600082825462000573919062000976565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080829050601f81511115620005f8578260405163305a27a960e01b81526004016200055691906200098c565b80516200060582620009dc565b179392505050565b90565b6009546001600160a01b031633146200066c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000556565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200069e57607f821691505b602082108103620006bf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200066e57600081815260208120601f850160051c81016020861015620006ee5750805b601f850160051c820191505b818110156200070f57828155600101620006fa565b505050505050565b81516001600160401b0381111562000733576200073362000673565b6200074b8162000744845462000689565b84620006c5565b602080601f8311600181146200078357600084156200076a5750858301515b600019600386901b1c1916600185901b1785556200070f565b600085815260208120601f198616915b82811015620007b45788860151825594840194600190910190840162000793565b5085821015620007d35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007f657600080fd5b81516001600160a01b03811681146200080e57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200086c57816000190482111562000850576200085062000815565b808516156200085e57918102915b93841c939080029062000830565b509250929050565b600082620008855750600162000441565b81620008945750600062000441565b8160018114620008ad5760028114620008b857620008d8565b600191505062000441565b60ff841115620008cc57620008cc62000815565b50506001821b62000441565b5060208310610133831016604e8410600b8410161715620008fd575081810a62000441565b6200090983836200082b565b806000190482111562000920576200092062000815565b029392505050565b60006200080e60ff84168362000874565b808202811582820484141762000441576200044162000815565b6000826200097157634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000441576200044162000815565b600060208083528351808285015260005b81811015620009bb578581018301518582016040015282016200099d565b506000604082860101526040601f19601f8301168501019250505092915050565b80516020808301519190811015620006bf5760001960209190910360031b1b16919050565b60805160a05160c05160e051610100516101205161014051610160516101805161262d62000a9560003960006104370152600081816102fb01528181610f3801528181610f5f01528181611c2f01528181611ce80152611d2701526000610b5b01526000610b30015260006117620152600061173a01526000611695015260006116bf015260006116e9015261262d6000f3fe6080604052600436106102605760003560e01c806379cc679011610144578063b62496f5116100b6578063e2f456051161007a578063e2f456051461075f578063ea1644d514610775578063ea414b2814610795578063ed6339ea146107b5578063f2fde38b146107c8578063f9f92be4146107e857600080fd5b8063b62496f5146106af578063b9d0f1af146106df578063c0246668146106ff578063d505accf1461071f578063dd62ed3e1461073f57600080fd5b806395d89b411161010857806395d89b411461060e57806399c8d556146106235780639a7a23d614610639578063a37d515714610659578063a457c2d71461066f578063a9059cbb1461068f57600080fd5b806379cc6790146105725780637ecebe001461059257806384b0196e146105b25780638da5cb5b146105da5780638f3fa860146105f857600080fd5b806339509351116101dd57806352bcec39116101a157806352bcec39146104a35780635d77d8d0146104b857806361178386146104f157806362997f8c1461051157806370a0823114610527578063715018a61461055d57600080fd5b806339509351146103e557806342966c681461040557806349bd5a5e146104255780634fbee1931461045957806350bd3e541461048957600080fd5b806323b872dd1161022457806323b872dd1461035457806325e16063146103745780632dc0562d14610394578063313ce567146103b45780633644e515146103d057600080fd5b806306fdde031461026c578063095ea7b314610297578063153b0d1e146102c75780631694505e146102e957806318160ddd1461033557600080fd5b3661026757005b600080fd5b34801561027857600080fd5b50610281610818565b60405161028e919061205a565b60405180910390f35b3480156102a357600080fd5b506102b76102b2366004612082565b6108aa565b604051901515815260200161028e565b3480156102d357600080fd5b506102e76102e23660046120ae565b6108c4565b005b3480156102f557600080fd5b5061031d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161028e565b34801561034157600080fd5b506002545b60405190815260200161028e565b34801561036057600080fd5b506102b761036f3660046120ec565b61099b565b34801561038057600080fd5b506102e761038f36600461212d565b6109bf565b3480156103a057600080fd5b50600e5461031d906001600160a01b031681565b3480156103c057600080fd5b506040516012815260200161028e565b3480156103dc57600080fd5b50610346610a2b565b3480156103f157600080fd5b506102b7610400366004612082565b610a3a565b34801561041157600080fd5b506102e761042036600461214a565b610a5c565b34801561043157600080fd5b5061031d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561046557600080fd5b506102b761047436600461212d565b600f6020526000908152604090205460ff1681565b34801561049557600080fd5b506013546102b79060ff1681565b3480156104af57600080fd5b506102e7610a69565b3480156104c457600080fd5b506102b76104d336600461212d565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156104fd57600080fd5b506102e761050c36600461214a565b610a7d565b34801561051d57600080fd5b50610346600c5481565b34801561053357600080fd5b5061034661054236600461212d565b6001600160a01b031660009081526020819052604090205490565b34801561056957600080fd5b506102e7610adb565b34801561057e57600080fd5b506102e761058d366004612082565b610aef565b34801561059e57600080fd5b506103466105ad36600461212d565b610b04565b3480156105be57600080fd5b506105c7610b22565b60405161028e9796959493929190612163565b3480156105e657600080fd5b506009546001600160a01b031661031d565b34801561060457600080fd5b50610346600d5481565b34801561061a57600080fd5b50610281610bab565b34801561062f57600080fd5b50610346600a5481565b34801561064557600080fd5b506102e76106543660046120ae565b610bba565b34801561066557600080fd5b5061034660125481565b34801561067b57600080fd5b506102b761068a366004612082565b610bed565b34801561069b57600080fd5b506102b76106aa366004612082565b610c68565b3480156106bb57600080fd5b506102b76106ca36600461212d565b60106020526000908152604090205460ff1681565b3480156106eb57600080fd5b506102e76106fa36600461214a565b610c76565b34801561070b57600080fd5b506102e761071a3660046120ae565b610c83565b34801561072b57600080fd5b506102e761073a3660046121f9565b610cb6565b34801561074b57600080fd5b5061034661075a366004612270565b610e1a565b34801561076b57600080fd5b50610346600b5481565b34801561078157600080fd5b506102e761079036600461214a565b610e45565b3480156107a157600080fd5b506102e76107b036600461212d565b610e52565b6102e76107c336600461214a565b610e7c565b3480156107d457600080fd5b506102e76107e336600461212d565b611037565b3480156107f457600080fd5b506102b761080336600461212d565b60116020526000908152604090205460ff1681565b6060600380546108279061229e565b80601f01602080910402602001604051908101604052809291908181526020018280546108539061229e565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b6000336108b88185856110e1565b60019150505b92915050565b6108cc611205565b60135460ff16806108e9575060135460ff161580156108e9575080155b6109705760405162461bcd60e51b815260206004820152604760248201527f596f752063616e206e6f206c6f6e67657220626c61636b6c697374206164647260448201527f6573736573207768656e2074686520626c61636b6c69737420697320646561636064820152661d1a5d985d195960ca1b608482015260a4015b60405180910390fd5b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6000336109a985828561125f565b6109b48585856112d3565b506001949350505050565b6109c7611205565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a14576040519150601f19603f3d011682016040523d82523d6000602084013e610a19565b606091505b5050905080610a2757600080fd5b5050565b6000610a35611688565b905090565b6000336108b8818585610a4d8383610e1a565b610a5791906122e8565b6110e1565b610a6633826117b3565b50565b610a71611205565b6013805460ff19169055565b610a85611205565b6032811115610ad65760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207365742068696768657220746178207468616e203525000000006044820152606401610967565b600a55565b610ae3611205565b610aed60006118e5565b565b610afa82338361125f565b610a2782826117b3565b6001600160a01b0381166000908152600760205260408120546108be565b600060608082808083610b567f00000000000000000000000000000000000000000000000000000000000000006005611937565b610b817f00000000000000000000000000000000000000000000000000000000000000006006611937565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6060600480546108279061229e565b610bc2611205565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b60003381610bfb8286610e1a565b905083811015610c5b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610967565b6109b482868684036110e1565b6000336108b88185856112d3565b610c7e611205565b600c55565b610c8b611205565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b83421115610d065760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610967565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610d358c6119db565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610d9082611a03565b90506000610da082878787611a30565b9050896001600160a01b0316816001600160a01b031614610e035760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610967565b610e0e8a8a8a6110e1565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e4d611205565b600d55565b610e5a611205565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b610e84611205565b60008111610ecd5760405162461bcd60e51b81526020600482015260166024820152754d7573742070726f76696465206c697175696469747960501b6044820152606401610967565b60003411610f165760405162461bcd60e51b81526020600482015260166024820152754d7573742070726f76696465206c697175696469747960501b6044820152606401610967565b436012556013805460ff19166001179055610f313082610c68565b50610f5d307f0000000000000000000000000000000000000000000000000000000000000000836110e1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719343084600080610fa46009546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561100c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110319190612311565b50505050565b61103f611205565b6001600160a01b0381166110a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610967565b610a66816118e5565b60006020835110156110c9576110c283611a58565b90506108be565b816110d48482612385565b5060ff90506108be565b90565b6001600160a01b0383166111435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610967565b6001600160a01b0382166111a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610967565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6009546001600160a01b03163314610aed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610967565b600061126b8484610e1a565b9050600019811461103157818110156112c65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610967565b61103184848484036110e1565b6001600160a01b0383166112f95760405162461bcd60e51b815260040161096790612445565b6001600160a01b03821661131f5760405162461bcd60e51b81526004016109679061248a565b6001600160a01b03831660009081526011602052604090205460ff16156113885760405162461bcd60e51b815260206004820152601b60248201527f46726f6d206164647265737320697320626c61636b6c697374656400000000006044820152606401610967565b806000036113a15761139c83836000611a96565b505050565b6000600d541180156113cb57506001600160a01b03831660009081526010602052604090205460ff165b1561144b57600d54816113f3846001600160a01b031660009081526020819052604090205490565b6113fd91906122e8565b111561144b5760405162461bcd60e51b815260206004820181905260248201527f526563697069656e7427732077616c6c65742073697a652065786365656465646044820152606401610967565b6012546114599060036122e8565b431115801561148057506001600160a01b03831660009081526010602052604090205460ff165b156114a9576001600160a01b0382166000908152601160205260409020805460ff191660011790555b30600090815260208190526040902054600b54811080159081906114d75750600e54600160a01b900460ff16155b80156114fb57506001600160a01b03841660009081526010602052604090205460ff165b801561152057506001600160a01b0385166000908152600f602052604090205460ff16155b801561154557506001600160a01b0384166000908152600f602052604090205460ff16155b1561158257600e805460ff60a01b1916600160a01b179055600c546115749061156f908490611bc0565b611bd8565b600e805460ff60a01b191690555b600080600a5411801561159f5750600e54600160a01b900460ff16155b6001600160a01b0387166000908152600f602052604090205490915060ff16806115e157506001600160a01b0385166000908152600f602052604090205460ff165b156115ea575060005b600081801561163357506001600160a01b03861660009081526010602052604090205460ff168061163357506001600160a01b03871660009081526010602052604090205460ff165b15611656576103e8600a548661164991906124cd565b61165391906124e4565b90505b801561167457611667873083611a96565b6116718186612506565b94505b61167f878787611a96565b50505050505050565b6000306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156116e157507f000000000000000000000000000000000000000000000000000000000000000046145b1561170b57507f000000000000000000000000000000000000000000000000000000000000000090565b610a35604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6001600160a01b0382166118135760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610967565b6001600160a01b038216600090815260208190526040902054818110156118875760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610967565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606060ff831461194a576110c283611d9f565b8180546119569061229e565b80601f01602080910402602001604051908101604052809291908181526020018280546119829061229e565b80156119cf5780601f106119a4576101008083540402835291602001916119cf565b820191906000526020600020905b8154815290600101906020018083116119b257829003601f168201915b505050505090506108be565b6001600160a01b03811660009081526007602052604090208054600181018255905b50919050565b60006108be611a10611688565b8360405161190160f01b8152600281019290925260228201526042902090565b6000806000611a4187878787611dde565b91509150611a4e81611ea2565b5095945050505050565b600080829050601f81511115611a83578260405163305a27a960e01b8152600401610967919061205a565b8051611a8e82612519565b179392505050565b6001600160a01b038316611abc5760405162461bcd60e51b815260040161096790612445565b6001600160a01b038216611ae25760405162461bcd60e51b81526004016109679061248a565b6001600160a01b03831660009081526020819052604090205481811015611b5a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610967565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611031565b6000818310611bcf5781611bd1565b825b9392505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c0d57611c0d61253d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611caf9190612553565b81600181518110611cc257611cc261253d565b60200260200101906001600160a01b031690816001600160a01b031681525050611d0d307f0000000000000000000000000000000000000000000000000000000000000000846110e1565b600e5460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792611d69928792600092889291909116904290600401612570565b600060405180830381600087803b158015611d8357600080fd5b505af1158015611d97573d6000803e3d6000fd5b505050505050565b60606000611dac83611fec565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611e155750600090506003611e99565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611e69573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611e9257600060019250925050611e99565b9150600090505b94509492505050565b6000816004811115611eb657611eb66125e1565b03611ebe5750565b6001816004811115611ed257611ed26125e1565b03611f1f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610967565b6002816004811115611f3357611f336125e1565b03611f805760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610967565b6003816004811115611f9457611f946125e1565b03610a665760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610967565b600060ff8216601f8111156108be57604051632cd44ac360e21b815260040160405180910390fd5b6000815180845260005b8181101561203a5760208185018101518683018201520161201e565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611bd16020830184612014565b6001600160a01b0381168114610a6657600080fd5b6000806040838503121561209557600080fd5b82356120a08161206d565b946020939093013593505050565b600080604083850312156120c157600080fd5b82356120cc8161206d565b9150602083013580151581146120e157600080fd5b809150509250929050565b60008060006060848603121561210157600080fd5b833561210c8161206d565b9250602084013561211c8161206d565b929592945050506040919091013590565b60006020828403121561213f57600080fd5b8135611bd18161206d565b60006020828403121561215c57600080fd5b5035919050565b60ff60f81b881681526000602060e08184015261218360e084018a612014565b8381036040850152612195818a612014565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b818110156121e7578351835292840192918401916001016121cb565b50909c9b505050505050505050505050565b600080600080600080600060e0888a03121561221457600080fd5b873561221f8161206d565b9650602088013561222f8161206d565b95506040880135945060608801359350608088013560ff8116811461225357600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561228357600080fd5b823561228e8161206d565b915060208301356120e18161206d565b600181811c908216806122b257607f821691505b6020821081036119fd57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156108be576108be6122d2565b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561232657600080fd5b8351925060208401519150604084015190509250925092565b601f82111561139c57600081815260208120601f850160051c810160208610156123665750805b601f850160051c820191505b81811015611d9757828155600101612372565b815167ffffffffffffffff81111561239f5761239f6122fb565b6123b3816123ad845461229e565b8461233f565b602080601f8311600181146123e857600084156123d05750858301515b600019600386901b1c1916600185901b178555611d97565b600085815260208120601f198616915b82811015612417578886015182559484019460019091019084016123f8565b50858210156124355787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176108be576108be6122d2565b60008261250157634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108be576108be6122d2565b805160208083015191908110156119fd5760001960209190910360031b1b16919050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561256557600080fd5b8151611bd18161206d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125c05784516001600160a01b03168352938301939183019160010161259b565b50506001600160a01b03969096166060850152505050608001529392505050565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220af873446a14f0a2ba0ceb5d273ee0758738dedd8362a63da515e5e98e067718164736f6c63430008120033
Deployed Bytecode
0x6080604052600436106102605760003560e01c806379cc679011610144578063b62496f5116100b6578063e2f456051161007a578063e2f456051461075f578063ea1644d514610775578063ea414b2814610795578063ed6339ea146107b5578063f2fde38b146107c8578063f9f92be4146107e857600080fd5b8063b62496f5146106af578063b9d0f1af146106df578063c0246668146106ff578063d505accf1461071f578063dd62ed3e1461073f57600080fd5b806395d89b411161010857806395d89b411461060e57806399c8d556146106235780639a7a23d614610639578063a37d515714610659578063a457c2d71461066f578063a9059cbb1461068f57600080fd5b806379cc6790146105725780637ecebe001461059257806384b0196e146105b25780638da5cb5b146105da5780638f3fa860146105f857600080fd5b806339509351116101dd57806352bcec39116101a157806352bcec39146104a35780635d77d8d0146104b857806361178386146104f157806362997f8c1461051157806370a0823114610527578063715018a61461055d57600080fd5b806339509351146103e557806342966c681461040557806349bd5a5e146104255780634fbee1931461045957806350bd3e541461048957600080fd5b806323b872dd1161022457806323b872dd1461035457806325e16063146103745780632dc0562d14610394578063313ce567146103b45780633644e515146103d057600080fd5b806306fdde031461026c578063095ea7b314610297578063153b0d1e146102c75780631694505e146102e957806318160ddd1461033557600080fd5b3661026757005b600080fd5b34801561027857600080fd5b50610281610818565b60405161028e919061205a565b60405180910390f35b3480156102a357600080fd5b506102b76102b2366004612082565b6108aa565b604051901515815260200161028e565b3480156102d357600080fd5b506102e76102e23660046120ae565b6108c4565b005b3480156102f557600080fd5b5061031d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161028e565b34801561034157600080fd5b506002545b60405190815260200161028e565b34801561036057600080fd5b506102b761036f3660046120ec565b61099b565b34801561038057600080fd5b506102e761038f36600461212d565b6109bf565b3480156103a057600080fd5b50600e5461031d906001600160a01b031681565b3480156103c057600080fd5b506040516012815260200161028e565b3480156103dc57600080fd5b50610346610a2b565b3480156103f157600080fd5b506102b7610400366004612082565b610a3a565b34801561041157600080fd5b506102e761042036600461214a565b610a5c565b34801561043157600080fd5b5061031d7f0000000000000000000000005fe638845642444a9090abfde0dc3c602945a34881565b34801561046557600080fd5b506102b761047436600461212d565b600f6020526000908152604090205460ff1681565b34801561049557600080fd5b506013546102b79060ff1681565b3480156104af57600080fd5b506102e7610a69565b3480156104c457600080fd5b506102b76104d336600461212d565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156104fd57600080fd5b506102e761050c36600461214a565b610a7d565b34801561051d57600080fd5b50610346600c5481565b34801561053357600080fd5b5061034661054236600461212d565b6001600160a01b031660009081526020819052604090205490565b34801561056957600080fd5b506102e7610adb565b34801561057e57600080fd5b506102e761058d366004612082565b610aef565b34801561059e57600080fd5b506103466105ad36600461212d565b610b04565b3480156105be57600080fd5b506105c7610b22565b60405161028e9796959493929190612163565b3480156105e657600080fd5b506009546001600160a01b031661031d565b34801561060457600080fd5b50610346600d5481565b34801561061a57600080fd5b50610281610bab565b34801561062f57600080fd5b50610346600a5481565b34801561064557600080fd5b506102e76106543660046120ae565b610bba565b34801561066557600080fd5b5061034660125481565b34801561067b57600080fd5b506102b761068a366004612082565b610bed565b34801561069b57600080fd5b506102b76106aa366004612082565b610c68565b3480156106bb57600080fd5b506102b76106ca36600461212d565b60106020526000908152604090205460ff1681565b3480156106eb57600080fd5b506102e76106fa36600461214a565b610c76565b34801561070b57600080fd5b506102e761071a3660046120ae565b610c83565b34801561072b57600080fd5b506102e761073a3660046121f9565b610cb6565b34801561074b57600080fd5b5061034661075a366004612270565b610e1a565b34801561076b57600080fd5b50610346600b5481565b34801561078157600080fd5b506102e761079036600461214a565b610e45565b3480156107a157600080fd5b506102e76107b036600461212d565b610e52565b6102e76107c336600461214a565b610e7c565b3480156107d457600080fd5b506102e76107e336600461212d565b611037565b3480156107f457600080fd5b506102b761080336600461212d565b60116020526000908152604090205460ff1681565b6060600380546108279061229e565b80601f01602080910402602001604051908101604052809291908181526020018280546108539061229e565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b6000336108b88185856110e1565b60019150505b92915050565b6108cc611205565b60135460ff16806108e9575060135460ff161580156108e9575080155b6109705760405162461bcd60e51b815260206004820152604760248201527f596f752063616e206e6f206c6f6e67657220626c61636b6c697374206164647260448201527f6573736573207768656e2074686520626c61636b6c69737420697320646561636064820152661d1a5d985d195960ca1b608482015260a4015b60405180910390fd5b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6000336109a985828561125f565b6109b48585856112d3565b506001949350505050565b6109c7611205565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a14576040519150601f19603f3d011682016040523d82523d6000602084013e610a19565b606091505b5050905080610a2757600080fd5b5050565b6000610a35611688565b905090565b6000336108b8818585610a4d8383610e1a565b610a5791906122e8565b6110e1565b610a6633826117b3565b50565b610a71611205565b6013805460ff19169055565b610a85611205565b6032811115610ad65760405162461bcd60e51b815260206004820152601c60248201527f43616e2774207365742068696768657220746178207468616e203525000000006044820152606401610967565b600a55565b610ae3611205565b610aed60006118e5565b565b610afa82338361125f565b610a2782826117b3565b6001600160a01b0381166000908152600760205260408120546108be565b600060608082808083610b567f547972696f6e2e66696e616e636500000000000000000000000000000000000e6005611937565b610b817f31000000000000000000000000000000000000000000000000000000000000016006611937565b60408051600080825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6060600480546108279061229e565b610bc2611205565b6001600160a01b03919091166000908152601060205260409020805460ff1916911515919091179055565b60003381610bfb8286610e1a565b905083811015610c5b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610967565b6109b482868684036110e1565b6000336108b88185856112d3565b610c7e611205565b600c55565b610c8b611205565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b83421115610d065760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152606401610967565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610d358c6119db565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090506000610d9082611a03565b90506000610da082878787611a30565b9050896001600160a01b0316816001600160a01b031614610e035760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152606401610967565b610e0e8a8a8a6110e1565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e4d611205565b600d55565b610e5a611205565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b610e84611205565b60008111610ecd5760405162461bcd60e51b81526020600482015260166024820152754d7573742070726f76696465206c697175696469747960501b6044820152606401610967565b60003411610f165760405162461bcd60e51b81526020600482015260166024820152754d7573742070726f76696465206c697175696469747960501b6044820152606401610967565b436012556013805460ff19166001179055610f313082610c68565b50610f5d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d836110e1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719343084600080610fa46009546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af115801561100c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110319190612311565b50505050565b61103f611205565b6001600160a01b0381166110a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610967565b610a66816118e5565b60006020835110156110c9576110c283611a58565b90506108be565b816110d48482612385565b5060ff90506108be565b90565b6001600160a01b0383166111435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610967565b6001600160a01b0382166111a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610967565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6009546001600160a01b03163314610aed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610967565b600061126b8484610e1a565b9050600019811461103157818110156112c65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610967565b61103184848484036110e1565b6001600160a01b0383166112f95760405162461bcd60e51b815260040161096790612445565b6001600160a01b03821661131f5760405162461bcd60e51b81526004016109679061248a565b6001600160a01b03831660009081526011602052604090205460ff16156113885760405162461bcd60e51b815260206004820152601b60248201527f46726f6d206164647265737320697320626c61636b6c697374656400000000006044820152606401610967565b806000036113a15761139c83836000611a96565b505050565b6000600d541180156113cb57506001600160a01b03831660009081526010602052604090205460ff165b1561144b57600d54816113f3846001600160a01b031660009081526020819052604090205490565b6113fd91906122e8565b111561144b5760405162461bcd60e51b815260206004820181905260248201527f526563697069656e7427732077616c6c65742073697a652065786365656465646044820152606401610967565b6012546114599060036122e8565b431115801561148057506001600160a01b03831660009081526010602052604090205460ff165b156114a9576001600160a01b0382166000908152601160205260409020805460ff191660011790555b30600090815260208190526040902054600b54811080159081906114d75750600e54600160a01b900460ff16155b80156114fb57506001600160a01b03841660009081526010602052604090205460ff165b801561152057506001600160a01b0385166000908152600f602052604090205460ff16155b801561154557506001600160a01b0384166000908152600f602052604090205460ff16155b1561158257600e805460ff60a01b1916600160a01b179055600c546115749061156f908490611bc0565b611bd8565b600e805460ff60a01b191690555b600080600a5411801561159f5750600e54600160a01b900460ff16155b6001600160a01b0387166000908152600f602052604090205490915060ff16806115e157506001600160a01b0385166000908152600f602052604090205460ff165b156115ea575060005b600081801561163357506001600160a01b03861660009081526010602052604090205460ff168061163357506001600160a01b03871660009081526010602052604090205460ff165b15611656576103e8600a548661164991906124cd565b61165391906124e4565b90505b801561167457611667873083611a96565b6116718186612506565b94505b61167f878787611a96565b50505050505050565b6000306001600160a01b037f0000000000000000000000005e27e384acbba20982f991893b9970aaf3f43181161480156116e157507f000000000000000000000000000000000000000000000000000000000000000146145b1561170b57507f2ae81412006393d982df3d94fc713195d00959e73ecaceca4bf8e7d2494547ed90565b610a35604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f9968d2dff43deea630e6d9fb43f0d290e2dbb70d3249e35d85fe37e3fe9b8c77918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260009060c00160405160208183030381529060405280519060200120905090565b6001600160a01b0382166118135760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610967565b6001600160a01b038216600090815260208190526040902054818110156118875760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610967565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606060ff831461194a576110c283611d9f565b8180546119569061229e565b80601f01602080910402602001604051908101604052809291908181526020018280546119829061229e565b80156119cf5780601f106119a4576101008083540402835291602001916119cf565b820191906000526020600020905b8154815290600101906020018083116119b257829003601f168201915b505050505090506108be565b6001600160a01b03811660009081526007602052604090208054600181018255905b50919050565b60006108be611a10611688565b8360405161190160f01b8152600281019290925260228201526042902090565b6000806000611a4187878787611dde565b91509150611a4e81611ea2565b5095945050505050565b600080829050601f81511115611a83578260405163305a27a960e01b8152600401610967919061205a565b8051611a8e82612519565b179392505050565b6001600160a01b038316611abc5760405162461bcd60e51b815260040161096790612445565b6001600160a01b038216611ae25760405162461bcd60e51b81526004016109679061248a565b6001600160a01b03831660009081526020819052604090205481811015611b5a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610967565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611031565b6000818310611bcf5781611bd1565b825b9392505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c0d57611c0d61253d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611caf9190612553565b81600181518110611cc257611cc261253d565b60200260200101906001600160a01b031690816001600160a01b031681525050611d0d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110e1565b600e5460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792611d69928792600092889291909116904290600401612570565b600060405180830381600087803b158015611d8357600080fd5b505af1158015611d97573d6000803e3d6000fd5b505050505050565b60606000611dac83611fec565b604080516020808252818301909252919250600091906020820181803683375050509182525060208101929092525090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611e155750600090506003611e99565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611e69573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611e9257600060019250925050611e99565b9150600090505b94509492505050565b6000816004811115611eb657611eb66125e1565b03611ebe5750565b6001816004811115611ed257611ed26125e1565b03611f1f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610967565b6002816004811115611f3357611f336125e1565b03611f805760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610967565b6003816004811115611f9457611f946125e1565b03610a665760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610967565b600060ff8216601f8111156108be57604051632cd44ac360e21b815260040160405180910390fd5b6000815180845260005b8181101561203a5760208185018101518683018201520161201e565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611bd16020830184612014565b6001600160a01b0381168114610a6657600080fd5b6000806040838503121561209557600080fd5b82356120a08161206d565b946020939093013593505050565b600080604083850312156120c157600080fd5b82356120cc8161206d565b9150602083013580151581146120e157600080fd5b809150509250929050565b60008060006060848603121561210157600080fd5b833561210c8161206d565b9250602084013561211c8161206d565b929592945050506040919091013590565b60006020828403121561213f57600080fd5b8135611bd18161206d565b60006020828403121561215c57600080fd5b5035919050565b60ff60f81b881681526000602060e08184015261218360e084018a612014565b8381036040850152612195818a612014565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825283870192509083019060005b818110156121e7578351835292840192918401916001016121cb565b50909c9b505050505050505050505050565b600080600080600080600060e0888a03121561221457600080fd5b873561221f8161206d565b9650602088013561222f8161206d565b95506040880135945060608801359350608088013560ff8116811461225357600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561228357600080fd5b823561228e8161206d565b915060208301356120e18161206d565b600181811c908216806122b257607f821691505b6020821081036119fd57634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156108be576108be6122d2565b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561232657600080fd5b8351925060208401519150604084015190509250925092565b601f82111561139c57600081815260208120601f850160051c810160208610156123665750805b601f850160051c820191505b81811015611d9757828155600101612372565b815167ffffffffffffffff81111561239f5761239f6122fb565b6123b3816123ad845461229e565b8461233f565b602080601f8311600181146123e857600084156123d05750858301515b600019600386901b1c1916600185901b178555611d97565b600085815260208120601f198616915b82811015612417578886015182559484019460019091019084016123f8565b50858210156124355787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b80820281158282048414176108be576108be6122d2565b60008261250157634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108be576108be6122d2565b805160208083015191908110156119fd5760001960209190910360031b1b16919050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561256557600080fd5b8151611bd18161206d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125c05784516001600160a01b03168352938301939183019160010161259b565b50506001600160a01b03969096166060850152505050608001529392505050565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220af873446a14f0a2ba0ceb5d273ee0758738dedd8362a63da515e5e98e067718164736f6c63430008120033
Deployed Bytecode Sourcemap
72229:6208:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9401:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11761:201;;;;;;;;;;-1:-1:-1;11761:201:0;;;;;:::i;:::-;;:::i;:::-;;;1288:14:1;;1281:22;1263:41;;1251:2;1236:18;11761:201:0;1123:187:1;76445:296:0;;;;;;;;;;-1:-1:-1;76445:296:0;;;;;:::i;:::-;;:::i;:::-;;72488:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1927:32:1;;;1909:51;;1897:2;1882:18;72488:51:0;1736:230:1;10530:108:0;;;;;;;;;;-1:-1:-1;10618:12:0;;10530:108;;;2117:25:1;;;2105:2;2090:18;10530:108:0;1971:177:1;12542:261:0;;;;;;;;;;-1:-1:-1;12542:261:0;;;;;:::i;:::-;;:::i;76967:189::-;;;;;;;;;;-1:-1:-1;76967:189:0;;;;;:::i;:::-;;:::i;72427:24::-;;;;;;;;;;-1:-1:-1;72427:24:0;;;;-1:-1:-1;;;;;72427:24:0;;;10372:93;;;;;;;;;;-1:-1:-1;10372:93:0;;10455:2;3216:36:1;;3204:2;3189:18;10372:93:0;3074:184:1;70162:115:0;;;;;;;;;;;;;:::i;13212:238::-;;;;;;;;;;-1:-1:-1;13212:238:0;;;;;:::i;:::-;;:::i;20981:91::-;;;;;;;;;;-1:-1:-1;20981:91:0;;;;;:::i;:::-;;:::i;72546:38::-;;;;;;;;;;;;;;;72593:50;;;;;;;;;;-1:-1:-1;72593:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;72802:29;;;;;;;;;;-1:-1:-1;72802:29:0;;;;;;;;76867:92;;;;;;;;;;;;;:::i;76749:110::-;;;;;;;;;;-1:-1:-1;76749:110:0;;;;;:::i;:::-;-1:-1:-1;;;;;76833:18:0;76809:4;76833:18;;;:9;:18;;;;;;;;;76749:110;75686:148;;;;;;;;;;-1:-1:-1;75686:148:0;;;;;:::i;:::-;;:::i;72360:25::-;;;;;;;;;;;;;;;;10701:127;;;;;;;;;;-1:-1:-1;10701:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10802:18:0;10775:7;10802:18;;;;;;;;;;;;10701:127;2842:103;;;;;;;;;;;;;:::i;21391:164::-;;;;;;;;;;-1:-1:-1;21391:164:0;;;;;:::i;:::-;;:::i;69904:128::-;;;;;;;;;;-1:-1:-1;69904:128:0;;;;;:::i;:::-;;:::i;66687:657::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;2201:87::-;;;;;;;;;;-1:-1:-1;2274:6:0;;-1:-1:-1;;;;;2274:6:0;2201:87;;72392:28;;;;;;;;;;;;;;;;9620:104;;;;;;;;;;;;;:::i;72298:15::-;;;;;;;;;;;;;;;;76299:138;;;;;;;;;;-1:-1:-1;76299:138:0;;;;;:::i;:::-;;:::i;72762:33::-;;;;;;;;;;;;;;;;13953:436;;;;;;;;;;-1:-1:-1;13953:436:0;;;;;:::i;:::-;;:::i;11034:193::-;;;;;;;;;;-1:-1:-1;11034:193:0;;;;;:::i;:::-;;:::i;72650:57::-;;;;;;;;;;-1:-1:-1;72650:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;75952:94;;;;;;;;;;-1:-1:-1;75952:94:0;;;;;:::i;:::-;;:::i;76160:131::-;;;;;;;;;;-1:-1:-1;76160:131:0;;;;;:::i;:::-;;:::i;69193:645::-;;;;;;;;;;-1:-1:-1;69193:645:0;;;;;:::i;:::-;;:::i;11290:151::-;;;;;;;;;;-1:-1:-1;11290:151:0;;;;;:::i;:::-;;:::i;72320:33::-;;;;;;;;;;;;;;;;75842:102;;;;;;;;;;-1:-1:-1;75842:102:0;;;;;:::i;:::-;;:::i;76054:98::-;;;;;;;;;;-1:-1:-1;76054:98:0;;;;;:::i;:::-;;:::i;77164:614::-;;;;;;:::i;:::-;;:::i;3100:201::-;;;;;;;;;;-1:-1:-1;3100:201:0;;;;;:::i;:::-;;:::i;72714:41::-;;;;;;;;;;-1:-1:-1;72714:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;9401:100;9455:13;9488:5;9481:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9401:100;:::o;11761:201::-;11844:4;828:10;11900:32;828:10;11916:7;11925:6;11900:8;:32::i;:::-;11950:4;11943:11;;;11761:201;;;;;:::o;76445:296::-;2087:13;:11;:13::i;:::-;76546:17:::1;::::0;::::1;;::::0;:51:::1;;-1:-1:-1::0;76569:17:0::1;::::0;::::1;;76568:18;:28:::0;::::1;;;;76591:5;76590:6;76568:28;76524:172;;;::::0;-1:-1:-1;;;76524:172:0;;6708:2:1;76524:172:0::1;::::0;::::1;6690:21:1::0;6747:2;6727:18;;;6720:30;6786:34;6766:18;;;6759:62;6857:34;6837:18;;;6830:62;-1:-1:-1;;;6908:19:1;;;6901:38;6956:19;;76524:172:0::1;;;;;;;;;-1:-1:-1::0;;;;;76707:18:0;;;::::1;;::::0;;;:9:::1;:18;::::0;;;;:26;;-1:-1:-1;;76707:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;76445:296::o;12542:261::-;12639:4;828:10;12697:38;12713:4;828:10;12728:6;12697:15;:38::i;:::-;12746:27;12756:4;12762:2;12766:6;12746:9;:27::i;:::-;-1:-1:-1;12791:4:0;;12542:261;-1:-1:-1;;;;12542:261:0:o;76967:189::-;2087:13;:11;:13::i;:::-;77033:12:::1;77051:6;-1:-1:-1::0;;;;;77051:11:0::1;77084:21;77051:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77032:89;;;77140:7;77132:16;;;::::0;::::1;;77021:135;76967:189:::0;:::o;70162:115::-;70222:7;70249:20;:18;:20::i;:::-;70242:27;;70162:115;:::o;13212:238::-;13300:4;828:10;13356:64;828:10;13372:7;13409:10;13381:25;828:10;13372:7;13381:9;:25::i;:::-;:38;;;;:::i;:::-;13356:8;:64::i;20981:91::-;21037:27;828:10;21057:6;21037:5;:27::i;:::-;20981:91;:::o;76867:92::-;2087:13;:11;:13::i;:::-;76926:17:::1;:25:::0;;-1:-1:-1;;76926:25:0::1;::::0;;76867:92::o;75686:148::-;2087:13;:11;:13::i;:::-;75768:2:::1;75758:6;:12;;75750:53;;;::::0;-1:-1:-1;;;75750:53:0;;7660:2:1;75750:53:0::1;::::0;::::1;7642:21:1::0;7699:2;7679:18;;;7672:30;7738;7718:18;;;7711:58;7786:18;;75750:53:0::1;7458:352:1::0;75750:53:0::1;75814:3;:12:::0;75686:148::o;2842:103::-;2087:13;:11;:13::i;:::-;2907:30:::1;2934:1;2907:18;:30::i;:::-;2842:103::o:0;21391:164::-;21468:46;21484:7;828:10;21507:6;21468:15;:46::i;:::-;21525:22;21531:7;21540:6;21525:5;:22::i;69904:128::-;-1:-1:-1;;;;;70000:14:0;;69973:7;70000:14;;;:7;:14;;;;;24906;70000:24;24814:114;66687:657;66808:13;66836:18;;66808:13;;;66836:18;67110:41;:5;67137:13;67110:26;:41::i;:::-;67166:47;:8;67196:16;67166:29;:47::i;:::-;67309:16;;;67292:1;67309:16;;;;;;;;;-1:-1:-1;;;67057:279:0;;;-1:-1:-1;67057:279:0;;-1:-1:-1;67228:13:0;;-1:-1:-1;67264:4:0;;-1:-1:-1;67292:1:0;-1:-1:-1;67309:16:0;-1:-1:-1;67057:279:0;-1:-1:-1;66687:657:0:o;9620:104::-;9676:13;9709:7;9702:14;;;;;:::i;76299:138::-;2087:13;:11;:13::i;:::-;-1:-1:-1;;;;;76390:31:0;;;::::1;;::::0;;;:25:::1;:31;::::0;;;;:39;;-1:-1:-1;;76390:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;76299:138::o;13953:436::-;14046:4;828:10;14046:4;14129:25;828:10;14146:7;14129:9;:25::i;:::-;14102:52;;14193:15;14173:16;:35;;14165:85;;;;-1:-1:-1;;;14165:85:0;;8149:2:1;14165:85:0;;;8131:21:1;8188:2;8168:18;;;8161:30;8227:34;8207:18;;;8200:62;-1:-1:-1;;;8278:18:1;;;8271:35;8323:19;;14165:85:0;7947:401:1;14165:85:0;14286:60;14295:5;14302:7;14330:15;14311:16;:34;14286:8;:60::i;11034:193::-;11113:4;828:10;11169:28;828:10;11186:2;11190:6;11169:9;:28::i;75952:94::-;2087:13;:11;:13::i;:::-;76019:10:::1;:19:::0;75952:94::o;76160:131::-;2087:13;:11;:13::i;:::-;-1:-1:-1;;;;;76245:27:0;;;::::1;;::::0;;;:18:::1;:27;::::0;;;;:38;;-1:-1:-1;;76245:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;76160:131::o;69193:645::-;69437:8;69418:15;:27;;69410:69;;;;-1:-1:-1;;;69410:69:0;;8555:2:1;69410:69:0;;;8537:21:1;8594:2;8574:18;;;8567:30;8633:31;8613:18;;;8606:59;8682:18;;69410:69:0;8353:353:1;69410:69:0;69492:18;68368:95;69552:5;69559:7;69568:5;69575:16;69585:5;69575:9;:16::i;:::-;69523:79;;;;;;8998:25:1;;;;-1:-1:-1;;;;;9097:15:1;;;9077:18;;;9070:43;9149:15;;;;9129:18;;;9122:43;9181:18;;;9174:34;9224:19;;;9217:35;9268:19;;;9261:35;;;8970:19;;69523:79:0;;;;;;;;;;;;69513:90;;;;;;69492:111;;69616:12;69631:28;69648:10;69631:16;:28::i;:::-;69616:43;;69672:14;69689:28;69703:4;69709:1;69712;69715;69689:13;:28::i;:::-;69672:45;;69746:5;-1:-1:-1;;;;;69736:15:0;:6;-1:-1:-1;;;;;69736:15:0;;69728:58;;;;-1:-1:-1;;;69728:58:0;;9509:2:1;69728:58:0;;;9491:21:1;9548:2;9528:18;;;9521:30;9587:32;9567:18;;;9560:60;9637:18;;69728:58:0;9307:354:1;69728:58:0;69799:31;69808:5;69815:7;69824:5;69799:8;:31::i;:::-;69399:439;;;69193:645;;;;;;;:::o;11290:151::-;-1:-1:-1;;;;;11406:18:0;;;11379:7;11406:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11290:151::o;75842:102::-;2087:13;:11;:13::i;:::-;75913::::1;:23:::0;75842:102::o;76054:98::-;2087:13;:11;:13::i;:::-;76123:9:::1;:21:::0;;-1:-1:-1;;;;;;76123:21:0::1;-1:-1:-1::0;;;;;76123:21:0;;;::::1;::::0;;;::::1;::::0;;76054:98::o;77164:614::-;2087:13;:11;:13::i;:::-;77270:1:::1;77257:10;:14;77249:49;;;::::0;-1:-1:-1;;;77249:49:0;;9868:2:1;77249:49:0::1;::::0;::::1;9850:21:1::0;9907:2;9887:18;;;9880:30;-1:-1:-1;;;9926:18:1;;;9919:52;9988:18;;77249:49:0::1;9666:346:1::0;77249:49:0::1;77329:1;77317:9;:13;77309:48;;;::::0;-1:-1:-1;;;77309:48:0;;9868:2:1;77309:48:0::1;::::0;::::1;9850:21:1::0;9907:2;9887:18;;;9880:30;-1:-1:-1;;;9926:18:1;;;9919:52;9988:18;;77309:48:0::1;9666:346:1::0;77309:48:0::1;77391:12;77370:18;:33:::0;77414:17:::1;:24:::0;;-1:-1:-1;;77414:24:0::1;77434:4;77414:24;::::0;;77451:35:::1;77468:4;77475:10:::0;77451:8:::1;:35::i;:::-;;77497:61;77514:4;77529:15;77547:10;77497:8;:61::i;:::-;77571:15;-1:-1:-1::0;;;;;77571:31:0::1;;77611:9;77645:4;77665:10;77690:1;77706::::0;77722:7:::1;2274:6:::0;;-1:-1:-1;;;;;2274:6:0;;2201:87;77722:7:::1;77571:199;::::0;::::1;::::0;;;-1:-1:-1;;;;;;77571:199:0;;;-1:-1:-1;;;;;10376:15:1;;;77571:199:0::1;::::0;::::1;10358:34:1::0;10408:18;;;10401:34;;;;10451:18;;;10444:34;;;;10494:18;;;10487:34;10558:15;;;10537:19;;;10530:44;77744:15:0::1;10590:19:1::0;;;10583:35;10292:19;;77571:199:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;77164:614:::0;:::o;3100:201::-;2087:13;:11;:13::i;:::-;-1:-1:-1;;;;;3189:22:0;::::1;3181:73;;;::::0;-1:-1:-1;;;3181:73:0;;11142:2:1;3181:73:0::1;::::0;::::1;11124:21:1::0;11181:2;11161:18;;;11154:30;11220:34;11200:18;;;11193:62;-1:-1:-1;;;11271:18:1;;;11264:36;11317:19;;3181:73:0::1;10940:402:1::0;3181:73:0::1;3265:28;3284:8;3265:18;:28::i;60175:348::-:0;60271:11;60321:2;60305:5;60299:19;:24;60295:221;;;60347:20;60361:5;60347:13;:20::i;:::-;60340:27;;;;60295:221;60426:5;60400:46;60441:5;60426;60400:46;:::i;:::-;-1:-1:-1;58604:66:0;;-1:-1:-1;60461:43:0;;56364:207;56543:10;56364:207::o;17946:346::-;-1:-1:-1;;;;;18048:19:0;;18040:68;;;;-1:-1:-1;;;18040:68:0;;13753:2:1;18040:68:0;;;13735:21:1;13792:2;13772:18;;;13765:30;13831:34;13811:18;;;13804:62;-1:-1:-1;;;13882:18:1;;;13875:34;13926:19;;18040:68:0;13551:400:1;18040:68:0;-1:-1:-1;;;;;18127:21:0;;18119:68;;;;-1:-1:-1;;;18119:68:0;;14158:2:1;18119:68:0;;;14140:21:1;14197:2;14177:18;;;14170:30;14236:34;14216:18;;;14209:62;-1:-1:-1;;;14287:18:1;;;14280:32;14329:19;;18119:68:0;13956:398:1;18119:68:0;-1:-1:-1;;;;;18200:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18252:32;;2117:25:1;;;18252:32:0;;2090:18:1;18252:32:0;;;;;;;17946:346;;;:::o;2366:132::-;2274:6;;-1:-1:-1;;;;;2274:6:0;828:10;2430:23;2422:68;;;;-1:-1:-1;;;2422:68:0;;14561:2:1;2422:68:0;;;14543:21:1;;;14580:18;;;14573:30;14639:34;14619:18;;;14612:62;14691:18;;2422:68:0;14359:356:1;18583:419:0;18684:24;18711:25;18721:5;18728:7;18711:9;:25::i;:::-;18684:52;;-1:-1:-1;;18751:16:0;:37;18747:248;;18833:6;18813:16;:26;;18805:68;;;;-1:-1:-1;;;18805:68:0;;14922:2:1;18805:68:0;;;14904:21:1;14961:2;14941:18;;;14934:30;15000:31;14980:18;;;14973:59;15049:18;;18805:68:0;14720:353:1;18805:68:0;18917:51;18926:5;18933:7;18961:6;18942:16;:25;18917:8;:51::i;73689:1989::-;-1:-1:-1;;;;;73821:18:0;;73813:68;;;;-1:-1:-1;;;73813:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;73900:16:0;;73892:64;;;;-1:-1:-1;;;73892:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;73976:15:0;;;;;;:9;:15;;;;;;;;73975:16;73967:56;;;;-1:-1:-1;;;73967:56:0;;16090:2:1;73967:56:0;;;16072:21:1;16129:2;16109:18;;;16102:30;16168:29;16148:18;;;16141:57;16215:18;;73967:56:0;15888:351:1;73967:56:0;74040:6;74050:1;74040:11;74036:93;;74068:28;74084:4;74090:2;74094:1;74068:15;:28::i;:::-;73689:1989;;;:::o;74036:93::-;74161:1;74145:13;;:17;:52;;;;-1:-1:-1;;;;;;74166:31:0;;;;;;:25;:31;;;;;;;;74145:52;74141:169;;;74248:13;;74238:6;74222:13;74232:2;-1:-1:-1;;;;;10802:18:0;10775:7;10802:18;;;;;;;;;;;;10701:127;74222:13;:22;;;;:::i;:::-;:39;;74214:84;;;;-1:-1:-1;;;74214:84:0;;16446:2:1;74214:84:0;;;16428:21:1;;;16465:18;;;16458:30;16524:34;16504:18;;;16497:62;16576:18;;74214:84:0;16244:356:1;74214:84:0;74412:18;;:22;;74433:1;74412:22;:::i;:::-;74396:12;:38;;:73;;;;-1:-1:-1;;;;;;74438:31:0;;;;;;:25;:31;;;;;;;;74396:73;74392:126;;;-1:-1:-1;;;;;74486:13:0;;;;;;:9;:13;;;;;:20;;-1:-1:-1;;74486:20:0;74502:4;74486:20;;;74392:126;74579:4;74530:28;10802:18;;;;;;;;;;;74635;;74611:42;;;;;;;74684:33;;-1:-1:-1;74709:8:0;;-1:-1:-1;;;74709:8:0;;;;74708:9;74684:33;:79;;;;-1:-1:-1;;;;;;74734:29:0;;;;;;:25;:29;;;;;;;;74684:79;:121;;;;-1:-1:-1;;;;;;74781:24:0;;;;;;:18;:24;;;;;;;;74780:25;74684:121;:161;;;;-1:-1:-1;;;;;;74823:22:0;;;;;;:18;:22;;;;;;;;74822:23;74684:161;74666:339;;;74872:8;:15;;-1:-1:-1;;;;74872:15:0;-1:-1:-1;;;74872:15:0;;;74950:10;;74902:60;;74919:42;;74928:20;;74919:8;:42::i;:::-;74902:16;:60::i;:::-;74977:8;:16;;-1:-1:-1;;;;74977:16:0;;;74666:339;75017:12;75039:1;75033:3;;:7;75032:22;;;;-1:-1:-1;75046:8:0;;-1:-1:-1;;;75046:8:0;;;;75045:9;75032:22;-1:-1:-1;;;;;75156:24:0;;;;;;:18;:24;;;;;;75017:37;;-1:-1:-1;75156:24:0;;;:50;;-1:-1:-1;;;;;;75184:22:0;;;;;;:18;:22;;;;;;;;75156:50;75152:98;;;-1:-1:-1;75233:5:0;75152:98;75262:12;75367:7;:77;;;;-1:-1:-1;;;;;;75379:29:0;;;;;;:25;:29;;;;;;;;;:64;;-1:-1:-1;;;;;;75412:31:0;;;;;;:25;:31;;;;;;;;75379:64;75363:138;;;75485:4;75478:3;;75469:6;:12;;;;:::i;:::-;75468:21;;;;:::i;:::-;75461:28;;75363:138;75517:8;;75513:112;;75542:42;75558:4;75572;75579;75542:15;:42::i;:::-;75599:14;75609:4;75599:14;;:::i;:::-;;;75513:112;75637:33;75653:4;75659:2;75663:6;75637:15;:33::i;:::-;73802:1876;;;;73689:1989;;;:::o;65325:268::-;65378:7;65410:4;-1:-1:-1;;;;;65419:11:0;65402:28;;:63;;;;;65451:14;65434:13;:31;65402:63;65398:188;;;-1:-1:-1;65489:22:0;;65325:268::o;65398:188::-;65551:23;65693:81;;;63517:95;65693:81;;;20279:25:1;65716:11:0;20320:18:1;;;20313:34;;;;65729:14:0;20363:18:1;;;20356:34;65745:13:0;20406:18:1;;;20399:34;65768:4:0;20449:19:1;;;20442:61;65656:7:0;;20251:19:1;;65693:81:0;;;;;;;;;;;;65683:92;;;;;;65676:99;;65601:182;;16833:675;-1:-1:-1;;;;;16917:21:0;;16909:67;;;;-1:-1:-1;;;16909:67:0;;17335:2:1;16909:67:0;;;17317:21:1;17374:2;17354:18;;;17347:30;17413:34;17393:18;;;17386:62;-1:-1:-1;;;17464:18:1;;;17457:31;17505:19;;16909:67:0;17133:397:1;16909:67:0;-1:-1:-1;;;;;17076:18:0;;17051:22;17076:18;;;;;;;;;;;17113:24;;;;17105:71;;;;-1:-1:-1;;;17105:71:0;;17737:2:1;17105:71:0;;;17719:21:1;17776:2;17756:18;;;17749:30;17815:34;17795:18;;;17788:62;-1:-1:-1;;;17866:18:1;;;17859:32;17908:19;;17105:71:0;17535:398:1;17105:71:0;-1:-1:-1;;;;;17212:18:0;;:9;:18;;;;;;;;;;;17233:23;;;17212:44;;17351:12;:22;;;;;;;17402:37;2117:25:1;;;17212:9:0;;:18;17402:37;;2090:18:1;17402:37:0;;;;;;;73689:1989;;;:::o;3461:191::-;3554:6;;;-1:-1:-1;;;;;3571:17:0;;;-1:-1:-1;;;;;;3571:17:0;;;;;;;3604:40;;3554:6;;;3571:17;3554:6;;3604:40;;3535:16;;3604:40;3524:128;3461:191;:::o;60659:274::-;60753:13;58604:66;60783:47;;60779:147;;60854:15;60863:5;60854:8;:15::i;60779:147::-;60909:5;60902:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70415:207;-1:-1:-1;;;;;70536:14:0;;70475:15;70536:14;;;:7;:14;;;;;24906;;25043:1;25025:19;;;;24906:14;70597:17;70492:130;70415:207;;;:::o;66425:167::-;66502:7;66529:55;66551:20;:18;:20::i;:::-;66573:10;51492:4;51486:11;-1:-1:-1;;;51511:23:0;;51564:4;51555:14;;51548:39;;;;51617:4;51608:14;;51601:34;51672:4;51657:20;;;51289:406;49505:236;49590:7;49611:17;49630:18;49652:25;49663:4;49669:1;49672;49675;49652:10;:25::i;:::-;49610:67;;;;49688:18;49700:5;49688:11;:18::i;:::-;-1:-1:-1;49724:9:0;49505:236;-1:-1:-1;;;;;49505:236:0:o;58932:292::-;58997:11;59021:17;59047:3;59021:30;;59080:2;59066:4;:11;:16;59062:74;;;59120:3;59106:18;;-1:-1:-1;;;59106:18:0;;;;;;;;:::i;59062:74::-;59203:11;;59186:13;59203:4;59186:13;:::i;:::-;59178:36;;58932:292;-1:-1:-1;;;58932:292:0:o;14859:806::-;-1:-1:-1;;;;;14956:18:0;;14948:68;;;;-1:-1:-1;;;14948:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15035:16:0;;15027:64;;;;-1:-1:-1;;;15027:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15177:15:0;;15155:19;15177:15;;;;;;;;;;;15211:21;;;;15203:72;;;;-1:-1:-1;;;15203:72:0;;18442:2:1;15203:72:0;;;18424:21:1;18481:2;18461:18;;;18454:30;18520:34;18500:18;;;18493:62;-1:-1:-1;;;18571:18:1;;;18564:36;18617:19;;15203:72:0;18240:402:1;15203:72:0;-1:-1:-1;;;;;15311:15:0;;;:9;:15;;;;;;;;;;;15329:20;;;15311:38;;15529:13;;;;;;;;;;:23;;;;;;15581:26;;2117:25:1;;;15529:13:0;;15581:26;;2090:18:1;15581:26:0;;;;;;;15620:37;73689:1989;26051:106;26109:7;26140:1;26136;:5;:13;;26148:1;26136:13;;;26144:1;26136:13;26129:20;26051:106;-1:-1:-1;;;26051:106:0:o;77786:611::-;77936:16;;;77950:1;77936:16;;;;;;;;77912:21;;77936:16;;;;;;;;;;-1:-1:-1;77936:16:0;77912:40;;77981:4;77963;77968:1;77963:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;77963:23:0;;;-1:-1:-1;;;;;77963:23:0;;;;;78007:15;-1:-1:-1;;;;;78007:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;77997:4;78002:1;77997:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;77997:32:0;;;-1:-1:-1;;;;;77997:32:0;;;;;78042:62;78059:4;78074:15;78092:11;78042:8;:62::i;:::-;78338:9;;78143:246;;-1:-1:-1;;;78143:246:0;;-1:-1:-1;;;;;78143:15:0;:66;;;;;:246;;78224:11;;78250:1;;78311:4;;78338:9;;;;;78363:15;;78143:246;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77841:556;77786:611;:::o;59313:415::-;59372:13;59398:11;59412:16;59423:4;59412:10;:16::i;:::-;59538:14;;;59549:2;59538:14;;;;;;;;;59398:30;;-1:-1:-1;59518:17:0;;59538:14;;;;;;;;;-1:-1:-1;;;59631:16:0;;;-1:-1:-1;59677:4:0;59668:14;;59661:28;;;;-1:-1:-1;59631:16:0;59313:415::o;47889:1477::-;47977:7;;48911:66;48898:79;;48894:163;;;-1:-1:-1;49010:1:0;;-1:-1:-1;49014:30:0;48994:51;;48894:163;49171:24;;;49154:14;49171:24;;;;;;;;;20741:25:1;;;20814:4;20802:17;;20782:18;;;20775:45;;;;20836:18;;;20829:34;;;20879:18;;;20872:34;;;49171:24:0;;20713:19:1;;49171:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49171:24:0;;-1:-1:-1;;49171:24:0;;;-1:-1:-1;;;;;;;49210:20:0;;49206:103;;49263:1;49267:29;49247:50;;;;;;;49206:103;49329:6;-1:-1:-1;49337:20:0;;-1:-1:-1;47889:1477:0;;;;;;;;:::o;43349:521::-;43427:20;43418:5;:29;;;;;;;;:::i;:::-;;43414:449;;43349:521;:::o;43414:449::-;43525:29;43516:5;:38;;;;;;;;:::i;:::-;;43512:351;;43571:34;;-1:-1:-1;;;43571:34:0;;21251:2:1;43571:34:0;;;21233:21:1;21290:2;21270:18;;;21263:30;21329:26;21309:18;;;21302:54;21373:18;;43571:34:0;21049:348:1;43512:351:0;43636:35;43627:5;:44;;;;;;;;:::i;:::-;;43623:240;;43688:41;;-1:-1:-1;;;43688:41:0;;21604:2:1;43688:41:0;;;21586:21:1;21643:2;21623:18;;;21616:30;21682:33;21662:18;;;21655:61;21733:18;;43688:41:0;21402:355:1;43623:240:0;43760:30;43751:5;:39;;;;;;;;:::i;:::-;;43747:116;;43807:44;;-1:-1:-1;;;43807:44:0;;21964:2:1;43807:44:0;;;21946:21:1;22003:2;21983:18;;;21976:30;22042:34;22022:18;;;22015:62;-1:-1:-1;;;22093:18:1;;;22086:32;22135:19;;43807:44:0;21762:398:1;59805:251:0;59866:7;59939:4;59903:40;;59967:2;59958:11;;59954:71;;;59993:20;;-1:-1:-1;;;59993:20:0;;;;;;;;;;;14:423:1;56:3;94:5;88:12;121:6;116:3;109:19;146:1;156:162;170:6;167:1;164:13;156:162;;;232:4;288:13;;;284:22;;278:29;260:11;;;256:20;;249:59;185:12;156:162;;;160:3;363:1;356:4;347:6;342:3;338:16;334:27;327:38;426:4;419:2;415:7;410:2;402:6;398:15;394:29;389:3;385:39;381:50;374:57;;;14:423;;;;:::o;442:220::-;591:2;580:9;573:21;554:4;611:45;652:2;641:9;637:18;629:6;611:45;:::i;667:131::-;-1:-1:-1;;;;;742:31:1;;732:42;;722:70;;788:1;785;778:12;803:315;871:6;879;932:2;920:9;911:7;907:23;903:32;900:52;;;948:1;945;938:12;900:52;987:9;974:23;1006:31;1031:5;1006:31;:::i;:::-;1056:5;1108:2;1093:18;;;;1080:32;;-1:-1:-1;;;803:315:1:o;1315:416::-;1380:6;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1664:15;;1657:23;1645:36;;1635:64;;1695:1;1692;1685:12;1635:64;1718:7;1708:17;;;1315:416;;;;;:::o;2153:456::-;2230:6;2238;2246;2299:2;2287:9;2278:7;2274:23;2270:32;2267:52;;;2315:1;2312;2305:12;2267:52;2354:9;2341:23;2373:31;2398:5;2373:31;:::i;:::-;2423:5;-1:-1:-1;2480:2:1;2465:18;;2452:32;2493:33;2452:32;2493:33;:::i;:::-;2153:456;;2545:7;;-1:-1:-1;;;2599:2:1;2584:18;;;;2571:32;;2153:456::o;2614:247::-;2673:6;2726:2;2714:9;2705:7;2701:23;2697:32;2694:52;;;2742:1;2739;2732:12;2694:52;2781:9;2768:23;2800:31;2825:5;2800:31;:::i;3445:180::-;3504:6;3557:2;3545:9;3536:7;3532:23;3528:32;3525:52;;;3573:1;3570;3563:12;3525:52;-1:-1:-1;3596:23:1;;3445:180;-1:-1:-1;3445:180:1:o;3630:1259::-;4036:3;4031;4027:13;4019:6;4015:26;4004:9;3997:45;3978:4;4061:2;4099:3;4094:2;4083:9;4079:18;4072:31;4126:46;4167:3;4156:9;4152:19;4144:6;4126:46;:::i;:::-;4220:9;4212:6;4208:22;4203:2;4192:9;4188:18;4181:50;4254:33;4280:6;4272;4254:33;:::i;:::-;4318:2;4303:18;;4296:34;;;-1:-1:-1;;;;;4367:32:1;;4361:3;4346:19;;4339:61;4387:3;4416:19;;4409:35;;;4481:22;;;4475:3;4460:19;;4453:51;4553:13;;4575:22;;;4651:15;;;;-1:-1:-1;4613:15:1;;;;-1:-1:-1;4694:169:1;4708:6;4705:1;4702:13;4694:169;;;4769:13;;4757:26;;4838:15;;;;4803:12;;;;4730:1;4723:9;4694:169;;;-1:-1:-1;4880:3:1;;3630:1259;-1:-1:-1;;;;;;;;;;;;3630:1259:1:o;4894:829::-;5005:6;5013;5021;5029;5037;5045;5053;5106:3;5094:9;5085:7;5081:23;5077:33;5074:53;;;5123:1;5120;5113:12;5074:53;5162:9;5149:23;5181:31;5206:5;5181:31;:::i;:::-;5231:5;-1:-1:-1;5288:2:1;5273:18;;5260:32;5301:33;5260:32;5301:33;:::i;:::-;5353:7;-1:-1:-1;5407:2:1;5392:18;;5379:32;;-1:-1:-1;5458:2:1;5443:18;;5430:32;;-1:-1:-1;5514:3:1;5499:19;;5486:33;5563:4;5550:18;;5538:31;;5528:59;;5583:1;5580;5573:12;5528:59;4894:829;;;;-1:-1:-1;4894:829:1;;;;5606:7;5660:3;5645:19;;5632:33;;-1:-1:-1;5712:3:1;5697:19;;;5684:33;;4894:829;-1:-1:-1;;4894:829:1:o;5728:388::-;5796:6;5804;5857:2;5845:9;5836:7;5832:23;5828:32;5825:52;;;5873:1;5870;5863:12;5825:52;5912:9;5899:23;5931:31;5956:5;5931:31;:::i;:::-;5981:5;-1:-1:-1;6038:2:1;6023:18;;6010:32;6051:33;6010:32;6051:33;:::i;6121:380::-;6200:1;6196:12;;;;6243;;;6264:61;;6318:4;6310:6;6306:17;6296:27;;6264:61;6371:2;6363:6;6360:14;6340:18;6337:38;6334:161;;6417:10;6412:3;6408:20;6405:1;6398:31;6452:4;6449:1;6442:15;6480:4;6477:1;6470:15;7196:127;7257:10;7252:3;7248:20;7245:1;7238:31;7288:4;7285:1;7278:15;7312:4;7309:1;7302:15;7328:125;7393:9;;;7414:10;;;7411:36;;;7427:18;;:::i;7815:127::-;7876:10;7871:3;7867:20;7864:1;7857:31;7907:4;7904:1;7897:15;7931:4;7928:1;7921:15;10629:306;10717:6;10725;10733;10786:2;10774:9;10765:7;10761:23;10757:32;10754:52;;;10802:1;10799;10792:12;10754:52;10831:9;10825:16;10815:26;;10881:2;10870:9;10866:18;10860:25;10850:35;;10925:2;10914:9;10910:18;10904:25;10894:35;;10629:306;;;;;:::o;11473:545::-;11575:2;11570:3;11567:11;11564:448;;;11611:1;11636:5;11632:2;11625:17;11681:4;11677:2;11667:19;11751:2;11739:10;11735:19;11732:1;11728:27;11722:4;11718:38;11787:4;11775:10;11772:20;11769:47;;;-1:-1:-1;11810:4:1;11769:47;11865:2;11860:3;11856:12;11853:1;11849:20;11843:4;11839:31;11829:41;;11920:82;11938:2;11931:5;11928:13;11920:82;;;11983:17;;;11964:1;11953:13;11920:82;;12194:1352;12320:3;12314:10;12347:18;12339:6;12336:30;12333:56;;;12369:18;;:::i;:::-;12398:97;12488:6;12448:38;12480:4;12474:11;12448:38;:::i;:::-;12442:4;12398:97;:::i;:::-;12550:4;;12614:2;12603:14;;12631:1;12626:663;;;;13333:1;13350:6;13347:89;;;-1:-1:-1;13402:19:1;;;13396:26;13347:89;-1:-1:-1;;12151:1:1;12147:11;;;12143:24;12139:29;12129:40;12175:1;12171:11;;;12126:57;13449:81;;12596:944;;12626:663;11420:1;11413:14;;;11457:4;11444:18;;-1:-1:-1;;12662:20:1;;;12780:236;12794:7;12791:1;12788:14;12780:236;;;12883:19;;;12877:26;12862:42;;12975:27;;;;12943:1;12931:14;;;;12810:19;;12780:236;;;12784:3;13044:6;13035:7;13032:19;13029:201;;;13105:19;;;13099:26;-1:-1:-1;;13188:1:1;13184:14;;;13200:3;13180:24;13176:37;13172:42;13157:58;13142:74;;13029:201;-1:-1:-1;;;;;13276:1:1;13260:14;;;13256:22;13243:36;;-1:-1:-1;12194:1352:1:o;15078:401::-;15280:2;15262:21;;;15319:2;15299:18;;;15292:30;15358:34;15353:2;15338:18;;15331:62;-1:-1:-1;;;15424:2:1;15409:18;;15402:35;15469:3;15454:19;;15078:401::o;15484:399::-;15686:2;15668:21;;;15725:2;15705:18;;;15698:30;15764:34;15759:2;15744:18;;15737:62;-1:-1:-1;;;15830:2:1;15815:18;;15808:33;15873:3;15858:19;;15484:399::o;16605:168::-;16678:9;;;16709;;16726:15;;;16720:22;;16706:37;16696:71;;16747:18;;:::i;16778:217::-;16818:1;16844;16834:132;;16888:10;16883:3;16879:20;16876:1;16869:31;16923:4;16920:1;16913:15;16951:4;16948:1;16941:15;16834:132;-1:-1:-1;16980:9:1;;16778:217::o;17000:128::-;17067:9;;;17088:11;;;17085:37;;;17102:18;;:::i;17938:297::-;18056:12;;18103:4;18092:16;;;18086:23;;18056:12;18121:16;;18118:111;;;-1:-1:-1;;18195:4:1;18191:17;;;;18188:1;18184:25;18180:38;18169:50;;17938:297;-1:-1:-1;17938:297:1:o;18647:127::-;18708:10;18703:3;18699:20;18696:1;18689:31;18739:4;18736:1;18729:15;18763:4;18760:1;18753:15;18779:251;18849:6;18902:2;18890:9;18881:7;18877:23;18873:32;18870:52;;;18918:1;18915;18908:12;18870:52;18950:9;18944:16;18969:31;18994:5;18969:31;:::i;19035:980::-;19297:4;19345:3;19334:9;19330:19;19376:6;19365:9;19358:25;19402:2;19440:6;19435:2;19424:9;19420:18;19413:34;19483:3;19478:2;19467:9;19463:18;19456:31;19507:6;19542;19536:13;19573:6;19565;19558:22;19611:3;19600:9;19596:19;19589:26;;19650:2;19642:6;19638:15;19624:29;;19671:1;19681:195;19695:6;19692:1;19689:13;19681:195;;;19760:13;;-1:-1:-1;;;;;19756:39:1;19744:52;;19851:15;;;;19816:12;;;;19792:1;19710:9;19681:195;;;-1:-1:-1;;;;;;;19932:32:1;;;;19927:2;19912:18;;19905:60;-1:-1:-1;;;19996:3:1;19981:19;19974:35;19893:3;19035:980;-1:-1:-1;;;19035:980:1:o;20917:127::-;20978:10;20973:3;20969:20;20966:1;20959:31;21009:4;21006:1;20999:15;21033:4;21030:1;21023:15
Swarm Source
ipfs://af873446a14f0a2ba0ceb5d273ee0758738dedd8362a63da515e5e98e0677181
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.