Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 7 from a total of 7 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 17420825 | 1004 days ago | IN | 0 ETH | 0.00089665 | ||||
| Set Approval For... | 17419916 | 1004 days ago | IN | 0 ETH | 0.00087886 | ||||
| Set Approval For... | 17409708 | 1005 days ago | IN | 0 ETH | 0.00093158 | ||||
| Mint | 17407224 | 1006 days ago | IN | 0 ETH | 0.58059337 | ||||
| Set Revealed | 17407218 | 1006 days ago | IN | 0 ETH | 0.00093113 | ||||
| Set Uri Prefix | 17407216 | 1006 days ago | IN | 0 ETH | 0.00231889 | ||||
| Set Paused | 17407213 | 1006 days ago | IN | 0 ETH | 0.00048184 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CubismCharm
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-06-04
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol
// 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/SignedMath.sol
// 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/math/Math.sol
// 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/Strings.sol
// 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/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.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/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _ownerOf(tokenId);
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner or approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(address from, address to, uint256 tokenId) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_safeTransfer(from, to, tokenId, data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _ownerOf(tokenId) != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId, 1);
// Check that tokenId was not minted by `_beforeTokenTransfer` hook
require(!_exists(tokenId), "ERC721: token already minted");
unchecked {
// Will not overflow unless all 2**256 token ids are minted to the same owner.
// Given that tokens are minted one by one, it is impossible in practice that
// this ever happens. Might change if we allow batch minting.
// The ERC fails to describe this case.
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId, 1);
// Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
owner = ERC721.ownerOf(tokenId);
// Clear approvals
delete _tokenApprovals[tokenId];
unchecked {
// Cannot overflow, as that would require more tokens to be burned/transferred
// out than the owner initially received through minting and transferring in.
_balances[owner] -= 1;
}
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId, 1);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(address from, address to, uint256 tokenId) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId, 1);
// Check that tokenId was not transferred by `_beforeTokenTransfer` hook
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
// Clear approvals from the previous owner
delete _tokenApprovals[tokenId];
unchecked {
// `_balances[from]` cannot overflow for the same reason as described in `_burn`:
// `from`'s balance is the number of token held, which is at least one before the current
// transfer.
// `_balances[to]` could overflow in the conditions described in `_mint`. That would require
// all 2**256 token ids to be minted, which in practice is impossible.
_balances[from] -= 1;
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
* - When `from` is zero, the tokens will be minted for `to`.
* - When `to` is zero, ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}
/**
* @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
* - When `from` is zero, the tokens were minted for `to`.
* - When `to` is zero, ``from``'s tokens were burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}
/**
* @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
*
* WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
* being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
* that `ownerOf(tokenId)` is `a`.
*/
// solhint-disable-next-line func-name-mixedcase
function __unsafe_increaseBalance(address account, uint256 amount) internal {
_balances[account] += amount;
}
}
// File: contracts/CubismCharm.sol
// Created by Colored Chain
/**
`_+jz2uInnnnnIIIIIIIuuxxaa]ee52zl1i+++++++++++!!++jclz2Innnnnnnnnnnnnnnnnnnnnnnnnyc+||||||||||||||||||~^',`
`|1xqPX&&&&&WWWWWWWWWWXXXXXmmmOGGPPPAAgFp$I2222z2eITZPmW@@@@@@@@MMMMMMMMMMMMMMMMMMMMM@@&XG02sttttttttttttt??????t}+>_'`
`|zqGW&&&&&&&&&&&WWWWWWWWXXXXXXmmmOGGPPPAAgZ%0qnz2I$AOXWW&&@@@@@@@@@MMM@@MMMMMMMMMMMMMMM@@@&XGAbltttttttttttttttttttt?tt??t+>\`
~2AW&&&&&&&&&&&&&WWWWWWWWWWWXXXXXmmmOGGPPPAAgZ%0q8wAOmXXXWW&&&@@@@@@@@MMM@@MMMMMMMMMMMMMMMM@@&XGA8ztttttttttttttttttttttttt??jj?t!^`
_qX&&&&&&&&&&&&&&&&WWWWWWWWWWXXXXXmmmmOOGPPPAAgZp%UAPGmmmXXWW&&&@@@@@@@@MMM@@MMMMMMMMMMMMMMMM@@&XGgnvtttttttttttttttttttttttt?????j?ji|`
|$W&&&&&&&&&&&&&&&&&&&&WWWWWWWXmGPPPPAAAAAggUh%0dqZgAPGGOmXXXWW&&@@@@@@@@@MMMMM@@&WWWWWWWWXmmmmOGA0Ic}+++++}ittttt???tttttttttt??????????t"`
`cO&&&&&&&&&&&&&&&&&&&&&WXAS2s!_:,````````````````iTFAAPPGOmmXXWW&&@@@@@@@@mPkdCIye2222222zzv_`` ` ```,\_"+t??????tttt?????????tti+`
`]X&&&&&&&&&&&&&&&&&&&&Pnt\` `sT%FAAPPGOmmXXWW&&@@@@mASa2z22zzzz2zzzzzzzzzl| `\>}?ttt????????????ttt}!,
lW&&&&&&&&&&&&&&&&&&&Pz` +S0pFAAPPGOmmXXWW&&@&Ac,`"cz22zzzzzzzzzzzzzz2zl^ `\+?t???j????????tti}+"`
_O&&&&&&&&&&&&&&&&&&Xa, \aT0pFAAPPGOmmXXWW&&m2` `+z2zzzzzzzzzzzzzz2zz?` >??tt?????????ttt}+!_
2&&&&&&&&&&&&&&&&&&Wl +Cd0pFAAPPGOmmXXWW&X7 `!z2zzzzzzzzzzzzz2zzl~ |?tt?????????ttt}+!>`
x&&&&&&&&&&&&&&&&&&X" }CT0pFAAPPGOmmXXWW&O| \l22zzzzzzzzzzzz2z2z> ,?tt?????????ttt}+!",
2&&&&&&&&&&&&&&&&&&Wz +CdqpFAAPPGOmmXXWW&X1 `!zzzzzzzzzzzzzzz2zzl~ |?tt?????????ttt}+!>`
|m&&&&&&&&&&&&&&&&&&mz` ^xd0pFAAPPGOmmXXWW&&mc` `!z2zzzzzzzzzzzzzz2zzj` |tt?t?????????ttt}+!_
5W&&&&&&&&&&&&&&&&&&Wgs` `iS0pFAAPPGOmmXXWW&&&&kt``|7z22zzzzzzzzzzzzzz2zl_ :!?tttt?????????tti}+!`
`2W&&&&&&&&&&&&&&&&&&&&GCs^ `twpggAPPGOmmXXWW&&&@@@XATx2z22zzzz2zzzzzzzzzc_ `\"}t?ttttt?????????tti}!,
`1O&&&&&&&&&&&&&&&&&&&&&WXPqac+>\,````````````````}wFAAPPGOmmXXWW&&&@@@@@@@XPF0Snxy222222222c_````` ```-\|!+t???t?ttttt?????????ttt+`
_SW&&&&&&&&&&&&&&&&&&&WWWWWWWWWmOGGGPPPPPAAAAgZ%q0ZgAPPGOmXXXWW&&&@@@@@@@@MMMMMM@&&&&&&&&&WXXXXXmPknci}}}}}}tttttt?????tttttttt?????????tt>`
"FW&&&&&&&&&&&&&&&&WWWWWWWWWWXXXXXXmmmOGGPPPAAgUhpFAGGOmmXXWW&&&@@@@@@@@MMMMMMMMMMMMMMMMMMMM@@@&XOgI1t?tttttttttttttttttttttt???????jt",
`"IP&&&&&&&&&&&&&&WWWWWWWWWWXXXXXXmmmOGGPPPAAgZp0qdqPOmXXXWW&&&@@@@@@@@MM@@@MMMMMMMMMMMMMMMM@@&XGAbzttttttttttttttttttttttt?jj????+_`
~c8PW&&&&&&&&&WWWWWWWWWWXXXXXXmmmOGGPPPAAgZp0qnz2xwgGXWW&&&@@@@@@@@MMM@@MMMMMMMMMMMMMMM@@@&XGAblttttttttttttttttttttt?t?jt+|'`
`_jyTAmW&&&&WWWWWWWWWXXXXXXmmmOGGPPPAAgZ%TI2222222uwhAOX@@@@@@@@MMMMMMMMMMMMMMMMMMMMM@@&XPqzjttttttttttttttt????t}!>~:`
`\"}vzeyInnnnnnnnnnIIIIuxxaaye2zl1i+++++++++++++++isvlzeanCCCCCCCCCCCCCCCCCCCCCCuec+>|||||||||||||||__^\-,`
-"!!!!!!"` `^!+!^` `>"` ,|+!^` '"!!!!!!!!_` \!!!!!!!!^` \!!!!!!!!>'`
_uP@BHHHHHHHHMj ?dmDHHHHHQmq1` +MHHD7 ^xP@BHHHHRX07` :nmBHHHHHHHHHBA, ^C@BHHHHHHHHB@F} `TBHHHHHHHHHBMPe^
,0BHHHMA000000qa' \%HHHBWA0AXBHHHWt lHHHHx ,qRHHHMPZUXBHHH&7 `PHHH@%0000000wt -mHHHX000000XHHHB1 `mHHHBA000%PMHHHQn`
0HHHBI` 0HHH@} +WHHHM| lHHHHx dHHHBn` >OHHHQ+ _MHHHb |DHHHMmmmXXmMHHHD+ `mHHHR> `2RHHBy
0HHHBu` %HHH&+ "XHHHM> lHHHHx qHHHBx` _GHHHR+ ~MHHHb |DHHHMXXXXXXXG0l, `mHHHR> `zRHHH]
,0BHHHMA0$$$$$dy: ^AHHHBXZqhmBHHH@j }RHHHWq$$$$$$$u^ 'pBHHHMAq0ORHHH@c ~MHHHb :mHHHWq$$$$$$$$$e- `mHHHBA$$$%P@HHHRn`
|IP@BHHHHHHHHDs cpWRHHHHHBWkl` +U@BHHHHHHHHHRz "nGMHHHHHB&Fl, ,gBHQl ^SMBHHHHHHHHHHHDj `qBHHHHHHHHHBMGa~
'!++++++!` ,|+++|, \!+++++++!: `^!++>- ^+, `^!+++++++++!, \++++++++>\`
`\>+}}}}}}}}}}+\ ,!}+^ ~+}!` '+}}}}}}}}}}}}}}}}!\` \+}+` _}71111111117t}!\`
`+nGMBHHHHHHHHHHHHHBC` `CDHHHBP_ >GBHHHM} \ABHHHHHHHHHHHHHHHHHHB@Az` :gBHHH@l _GBHHHHHHHHHHHHHHHBMGTv:
>%RHHHHHHHHHHHHHHHHHHH0` -&HHHHHHl zHHHHHH0 ~mHHHHHHHHHHHHHHHHHHHHHHHX! iHHHHHHA eHHHHHHHHHHHHHHHHHHHHHHB0|
5RHHHHHH&kI2zzzzzzzzzc! -&HHHHHHl zHHHHHH0 `!l22zzzzzzzzzzzz2hHHHHHHg }HHHHHHA eHHHHHHOzzzzzzz2Ik@HHHHHHDz
vBHHHHH@v` -&HHHHHH@mmmmmmmmmm@HHHHHH0 ,jnkPmmmmmmmmmmm@HHHHHHA }HHHHHHA eHHHHHH0 `lMHHHHHRt
CHHHHHHI -&HHHHHHHHHHHHHHHHHHHHHHHH0 ^dMHHHHHHHHHHHHHHHHHHHHHHA }HHHHHHA eHHHHHH0 CHHHHHHn
zHHHHHHX+ -&HHHHHHRMMMMMMMMMMRHHHHHH0 ^XHHHHHHRMMMMMMMMMMRHHHHHHA }HHHHHHA eHHHHHH0 CHHHHHHC
5RHHHHHH&kIzzzzzzzzzzc! -&HHHHHHl zHHHHHH0 +BHHHHHBazzzzzzzzzz%HHHHHHg }HHHHHHA eHHHHHH0 CHHHHHHC
>0QHHHHHHHHHHHHHHHHHHB0` -&HHHHHHl zHHHHHH0 `CBHHHHHHHHHHHHHHHHHHHHHHW+ iHHHHHHA eHHHHHH0 CHHHHHHC
'l0@BHHHHHHHHHHHHHHHp` `0BHHHHX> +&HHHHRv !$&BHHHHHHHHHHHHHHHHBXC, ^OHHHHRa >XHHHHMc +&HHHH@t
`'!jlzzzzzzzzzzl! |vzl!` `+lz7^ `^}lzzzzzzzzzzzzc+\ `"czc\ `!lzv, `+lz}`
----------------.-.-__-..-___-.---,_--_---.......'.--.''.-'-_----..!vy5$g0$D0R6ddOOdMMbMddbdOddZZdRD6OdRERZd6O69EORO6D6DRD0$0D0$OD90D6d6RED00$8Q8$$8Q88Q$gQQQ$gQB####$RMwx*^>^**^*^^^^^^^^^^>=^*^^*^^^**^^**^^^^;^^^>~;;^*^^^***^^^<^
---------------..-.-------.-.-.''.----__------.--``---..'..'.._"rybDDD00DEDgE6O66dOZMdMHdMZdddddMb6ZdddRR9dMRddddO66d6OR66R0$$$$O$D0gRdOER$$g888Q8g8$g8Qg8QQQggQBBB########$PT)rrrr^*^^^^^<^<~^***^^*^^^^^^^<^^^^<^^;>><^*^^^^*^^>~<^
.------------_--...-----------...'.-------_---..--'..``````'~}3E0g00D00g0EOR6OZ6dMbddOMWMdddddO6RZZd6dOR6O966ROd6OOddRR0OOR$0RD0EERR06d6DDg$$0Egg$D0$DD$008QQgQQBQBB###########Qd}*>^^^**^**^~^^^^^^^^*^^^^^^<^^^^^<^>^<^^^^^^*^**^^^
----------------..-.------.---....''----..-......'`..'``.*ydgg$g$0$$DE0$RE60O6MZMMdZddMMdMZ6ddOdOMMMd9ORdORDd6dd9ZZdZ66EOM6OEO696b6EDDDR9$D$$$0gg$$D6DR0g888888QBBBBB#BB##########BZc*^*<^^**^**^^^^**^^^***^^^^<>^^<<^^^^^^^^*rr^^^^
-----------------.-----_--___--.-..-.----.----.'`'.-..*3QQQQQ8$$8RE966dR6D66E66OZZdMMP5MddZdZdROZbdMdE6OOO666ZbO6MMMMd66d5MEddbdb69R99ORRR6E$g$g88E9E6Eg8QQg888QBBQQQBBQBB############$j)<^*^~<^~^*^r*^^**^^*^^^>~~~^^^^^^^^*^^^^^<>;
-----------------.---_-,-------''-_----_----....-.'.=bQBQQQ8gD$0E6966OEEOd6ddOROddbObdMMZZZdO6OZb6dGdOdO96ED6d69dMdRd6d66MdRddZMdO666$RDDEER0$gg$$0$0RD00gQ00QgBBQ8QQBQQBBB#BBB##########dY*^<*^<^^^*^~>^**^*^^<~~~>^^^^^^^^^^*^^>>>>
..-------------------_____----..-_-.''..-----_---.*O#BQQQg0D0000OdRO6bOOOd6OMddOObMMdZM5MW5MMO6dddMMdOdddZMdMM69OdbdR6ddddZR9O9Odddd6D6DD6RRDDg$EDDD6O0ggQ88888QQ8QQBQQQBBBBQB##B##########BK|^^^**^^^<>^^^^^^^<>>~;^^^^^^^^^^^^~~~~~
'..---....-----...._,"_-_-..--'.--.'`.'-...-....^ZBBBBQQQgg$g000DR066O6dZdbbdddbbdbMbddOdMMdddbbMdZMddZMMKHHMZdZKhkIUzwjjhPWMZdMMdbZOddR$DRDDD$RR$0D0Dgg88QQQQQQQg8BQQQQQQBB#BBBBB#BBB########K)***^^;~~><^^^^^^^^<;<^^^^^^^^^^^>;;;;
-_-----...---.....-_,_---..--....-.'`.---.---.=M##BBBQBBQgg$000$RRDRRRdbdbddMMdM5ddddMMG5MPMZMdMM665MzY\r>!:_'```````````-`````'."=*x}Vm6RE0$D69R$$g0E00g8Q8QQ88Q8gQ8QQQBQBBBB##BBBBBB######@@@#m|rr^;>;>^^^^^>>^^^^>><^^*^^^^^^^^>^>
.--------------...-__--..-.`.-.'`---_---.'.',yQ###BBBBQ888g0$$609D69ROOOdd6OddMMMd6MZdddbbdaZZIY)^:.``````````````` ``` `-` `` ` ``'``'-:^vcd0RD$DD$$g88QQQQ8QgQ8QQ8QQBQQBBB##BQBB##B#B#####@##gx)*><<>><^^^<<^<><<^^^^^^^^^^^^****
_---.-----_--_-...--_---..'.----_:"-_---'`_}Q####BBBBQ8$88g800DOOODdddbZdMbOdddOR69OdOdd5Y*!_`````````````````````````` `' ```````````````````.~vj6D$888QBQ$D$888gQQQQQQQQQQQBBBBQBBBBBBB########Qkx)***^^^**^^<;><^^^^^^>^^^^^^^^^^
_-_------------.-.------..--.---_,,--.``',P######BBBBQg$8gggD0066R6dOR9b6R9RbMdOR966mY*_` ``````````````````````` `` `` ```` ` `````````` .~YM8QQQQgg88$gg8QQQQBBBBBQBBQBBBBBQB#B##########MTx)*^^**^^^<>^^^^^^^^^^^^^^*^^^^
-----------.---...-..``.-....__--_-----'^$######BBBQQQ$O$$$0$DE6R660R0E9OdORdZMdjx=. ` ```````````````````````` `` `` ````` ```````````` ```' .*k0QQQ88Qg88QQQBBBQQBQQBBQQBBBBB#############Ey}v)rr*^^^^^^^^<^^^^^<^^^^^^^^^
.--------...---....'`'.-.`--__-::,,_-`'Y########BQQQQ8g$g$g$g$$6Rdd0RRDZMdMMGV*_ ``````` `` `` `````````````` ```````````````` ``````` `'^I8QQQQQQQQBBBBQQBQQBQQQQB##B##############$jYx|r*^^^^^^^^^<^^^><^^^^^^^^^
------.'''...--.....___,---_":,=:_.'`-m#@###BBBQQQBQ8Q$8g8$0$6RE6dOdddRbddhr. ` ` ````` `````````` ````` `````'```````` ```````` 'v$BBBQQQBBQQBBBQQQQQBBBBBBBBB##########@@0Uuix)***^^^^^^>^^<>>>^^^^^^^^
_--.'......''.....-_-___------.-,-``-6@@####BB#BQQBQ8$D888$0RDRObZdbbdRdu:`` ` ``````` ``` ` ``` `` ```````` `'````'`` `<aBBBBBBQQBBBQQQBQQQBBQBBB###B######@@@@0hVLx)rr***^^^^^^^>^^^*^^*^^*
---..---.......--.-_-___---...'._--.Z@#######BBBBBQQ8QQ8$$$E0E66OOZddOm,````` ```` ``` `` ````` ````` `````````````````` !3BB##BBQBBBQQQQBBBBBBBBB#########@@@@#dhVYxxv)r**^^>^^^^<<^*^^^^^^
------_----.---.-----__----.-.'`-``x@@######BB#BBBBQQ8Q8g$gDE6OZdOOOK~`` ````````` `` ` ``` ``````````````````````` ,sB#####BBBBBBBBB#BQB############@@@@#MUVYxv)*rr^^^^**^^***^^^^<^
---------...-......--__-_--.-.'```:B@@##########BBBQ88Qg8g$000RZOddL. ` ` ```` ```````'''`'..---_,_"::::::!!~>^**r)rkQ####B#BB####B###BB############@@@@8PXcL\)**r^^^>>^^^^^***^^^^
----------..--.--.--___,__--_-''``G@@@@########B#BQQg88$g$0ER06Obk,``````` `````` ` ` ```'..''.-__-___,,,,,",_)xxii}T}x}}TcywyVVVyVjjkykkXyuVVcVyyyVyzyykkzkzzwyyyyk$########BBB#B##BB#B##########@@@@#b3XV}xvr*^*^<^^^^^^^*^**^^
-----------_------.---_,__"_-.'.`~#@@@@##########BQBQ88Q8$009D96k^~<>~~!!!!!!!:::!!!:!!!:,:!!!!:::!:!====!====~=!:YVcyTcuuuVTcykkyyVykykzyyyVyVTuVucyVucyzkyzyyzjjywkyVVVZ########BB###B#BBB####B#B##@#@@@@8GUkcYx|)**^^^^<^*^^*^^**^
--------_---__-...-_"_,__-.__---`I@#@@@########BBBQQQQQ8$0$gg0DV<<^^<~^^~~~=~=!!======!!::!!!!:!:!::!========!==!:xVcucVuucuccVyVucyyzXwyzycuVyVyyccccVzkkzzyVcyyyyyyyyVuV3B########B##BQQ###BB#########@@@B5KIyu}xvr*^^*^^^^^^^****^
--------__---.'`.'.-,__---_"::---g#@#######B###BBQ8QQQ88888D$QK^^^^^>^>^>~~=!!:!==~==!!=!:!!!!!!:!!!==!=!!======!:rVVVyVcucccVVVckyzjyyyykyucwyyVycVywkzkyyVwVyyVyVVwykwkyzM#######BBBBBQB###B##########@@@#MPsy}xv|*r*rr*^*^^**^^***
---_---__-........---_---------.:Q#@#####BBBB###BQQ8Qgg88g0$g6\^^;^^<*^<^=!!!:::!!=~~==~!!!!!!::!!!=======!=!!!!!:^VVuccccVyywVcyyzzkzwwkzyyyyccccVyyyyVucyyyyyVyyyykkzyyyykmB#####BBBBBBBB###B########@@@@#bPUVYxxvr**)(|rrr********
-__--------..-..--..--.--.:__--.:Q@@@@##BBBBQBBBBQQQ88g80EDg0Y**<~^^^^^<~~!:!!!::!!=====!!!!!!::!!!!!!!===!=!==!!!^VyyVVyyVyyyVcucyjyykyVyyVVyVucVVVkykzyyyuukzmIzykwyVVyyyjwZ#######BB#B#####B########@@@@#ZGKz}Lx|*r*r)v\r*^**^^***
--_----.--.`'....._,-....._`````-8@@@@##B#BBB#BBQQQ8QD0DD$08j*r^~>^^<<^~==!!:!!!!=:!!=!!:!:::::::!!!!!!!!=!=====!:~cVykywjkzccuccVyyyVcuucyVucTccVcuVcVyyczwkzXUmjzzywVcVyywzzg#######B#######B#B######@@#@QMGKzcTLx)rr***rr)r^^*****
_----...-..````.--_-```..---_...'D@@@@##B#BBB#BBQQQ888Q88QQRr**^>~=~~~~===!!!!=!:!:!!=!::!:::::::!!=!=!===!!=====!^ywjVywkzIzzykjVyyVVVccyVVVuywVyywhzVcVVzyyyzXzyywyyykykkVyks######BB####B###BBB####@@@@@0WGmzcTix\())^*rrr)*^^*^**
--....--.`'...''----'`---"=^>,._!6@@@@#####BBBBQQBQQBBQ8888i><**^~!~=!=!=!====!!!::!!!!!!!:!!:::::!=!=!!=!=======!<VyVckkwkkykyykcyVcVVVycVcTVyyyykyyVVVVkkywXXzkkyyzUkkXIIIwjyZ#@######B####BQQBB###@@#@@#OMGmyuTxxv()r**rrrr***^^^^
.-_----_,:_____,_-____-~*~vxxx!":Y@@@@@#######BBQBBBBQ8Q8BK~<><~~<=!!!!::!!====!:::!!!!!!!:!!::::!!!!!=!!!!==~!!!!>ccVVywzIXzIkywVccuTTyVVywyVVVyykwkwkykzhIsKhzXXwkkjzywykkyjzyg#####BB###BBBQBBB####@@@@8OZGIc}xxxvr)r**rrrrr*****^
--__-----.---_-------_::":!-'-'---$@@@@@######BBBBBBBQ888Bx~;;!!=~!::::::!!!=!=!:!!!=!!==!!!!!!!!!!!:!==!=!==~!==!=TuVVkzUmsjzyVVccuVyVVVyVyVyVywzkwwzykIIXIzhIkIjyzIzyyVyywwkkyM##########BB#B########@@QEdMKyTLxxiv)*rrr))))r^***^^
-----...'`-___--_.-_-.":"_.````'``i@@@@@#######B#BBQBBBQQm=~~=!!!!!!:,:::!!!!!!!::!!==!!~=!:!=!!!!!!!!!:!!!=~!!!!!!YcVVVjwykykyVVVyyyyyyyyyVyyykyyyyywkjkjIjyzwkjkkkkVwkzzyykkkyy###########BB########@#QROZHXu}ixxv|))r)rrrrrr**^**^
..---....'.-__-__-...._,..`````,_`-a@@@@@@########BBBBBQQx~~=!!!===~~!:!::!!!!!::!!!~~~~~!!!!==!!!!!!:!!!!!!==!!!!!YyyywwyyyyyyyVwyyVkjkyVyVyIIhmsUK3mKmXIszyXIIkkkyyVwkkyyyyyVVyQ@#@@################@B$RdWhVu}xx||rr****^**r*rr*^*^
.--.....''.---_":",_.._,-__` `_"__"_B@@@@@######B####BBQM=~=!!!^vYyIU3PMMMMd9R9OdRER9dZMHmXy}xr~!!!!!!!!!!=!===!!!:ukzjIkwjkkyyyIaM9R$8BB##@@@@@@@@@@@@@@@@@@@###BBQ$D6dMmszkyycV$@@@@##@###########@@#Q$OMKyT}ivvv)rr***^^^*******^^
,_--''.'``._-_,,:!!:,____.```.__-_:_)#@@@@@##########BQBmxTyPDB#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#Q0dPkY(~:!!!!==!:::uIjkIwjIM0QB#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@##Q$6MD@@@@@#@########@@@@#QgOZPjTxxx|vr)r***^***^*****^^^
----..-..-__,_:,::",_--_.`-`.-""-'-_-*#@@@@@@@########QO)v}kmWGHZO0QBB#####@@@@@@@@@@@@@@@@@@@@@@@@@@@@#BgGkY)~!:::VHZEDQ###@@@@@@@@@@@@@@@@###BB8BQBQBQBBBQ#######@@@@@@@@@##B8dB@@@@@@@@@@@###@@@@#Q$6MPXy}xv(()rr****^^^^^***^^^^^
----..-----____-__.-_.'.----___:,....-*8@@@@@@@@#######I~*)x}T}yzhmMdMOdd6Dg0D$QQBBB#####@@@@@@@@@@@@@@@@@@@@@8m|:=0@@@@@@@@@@@@@@@@##BQg8Q8$96EDdOMb5bMZOdbD9E$gg$gg8g8g$$RdPIuk#@@@@@@@@@@@@#@@@@#Q$6MazyTixv)rr)*****^^^^^^^^^^^^^
-..------..--.-_--__-.``'-,-.-_,-._._..,b@@@@@@@@@@@@@@}:~>\xixxx}uucVyyyzshhIKGMdZbZddddMbO$08gQQBQQQBBBQ88Q0My=-:B@@@@@@@@@##BQ88g0D66Md9EdhIGHaPmXIzIzzwykkXIzIKmUKPPKKKIzyiuyB@@@@@@@@@@@@@@@@#Qg6ZakuYxx\\(rrrr****^^^^^^^^^^^^^
....----..'''-------_-```.--.'-_--,-..-.,y#@@@@@@@@@@@@v"=>*x)|\\vxxxiLi}uTuTuVccVzIhIyVkwyjhhUyzUKsImaa3mI55PV)_._Q@@@@@##BQ8$0R6ddMbbMHaHUsIzIjwzkVyuVVVVcuucuuTcVyyzXIzwyuuVyy$@@@@@@@@@@@@@@@#Q8Dd3wTYixxvvv)))****^^^^^^^^^^^^^^
---....--...-_-_---":_``..---::_.`.-'.---_^$@@@@@@@@@@@v:!;^x(vxxxxYxxv|()xxvvxxxvxvxxv\xL}Lv(vvxi}TTL}VKOdsy}):.`-8@@@@@###BgZKmPmhzzjwykyywyyVcucVVccVccuuuuuuuVVccyyyyksKKIkzVb@@@@@@@@@@@@@@#B8RbGkTixxv|()\vrrr*r*^^^^^^^^^^^^^^
.....-...---_"___!!::-.'-.--.----'`''.-'''-^B@@@@@@@@@@):=^xz3HWPmc}xvxxvvxxxvxxvvv\(vxxvxxi\xxxiLLTzMDQB9uixr^"--_g@@@###QDD8Q0RMKjyyucuccyuuuuuuucuuuuuuuTuT}TuuucyX3b9O5aIzzzyd@@@@@@@@@@@@#BQ89MPhuYLivv()))v|r*****^^**^^^^^^^^^
.....--.'.-_-_---_,__.``'.-----`---.```````'!$@@@@@@@@@\:~~^^r)uPR8B###Qg6MKhkVuTT}LLL}TcwImGZ9$8QB#BQ$Zyxr**^!_-.-b@@@@##ga5HaPd0QQQg0bG3XyVuccuuuuuuucVykXmHMdR0gQQQgRZGUkyyywyM@@@@@@@@@@@#B809MKyc}xx|))**)))rrr****^^^^<<^><^>^^
-.''.-..`.'.....-_,_---.'`````'`..'``````````.r$@@@@@@@i~~!!!>*rviTkU5dD8BB###@@@@@@@@@@@@@##BQ8gROZsV})^^**^~!....P@@@@##BmcVVjImG5OD8B###############@@######BBQQ8gRdMPakVVucyy6@@@@@@@@@@#BQ0OZKy}Lx\|))r*rr)rr******^^^^^^^>>^>;>
**(r|(r^^r^^!_:_-.__---.```'...``.'``````````'._a@@@@@@c=^==!!^~^rvx}YVyhMb6RR$8QBBBB#BBQ880Rd5KhyTTY)**^~<~~!"-.``y@@@####0T}TuVkzIsPMd$8QBB################BBBQ8$ROdMHIzkywVzzwg@@@@@@@@@#B8DOHUwcixv)rrrrr**rr*****^^**^^^^<>;<;;<
xvxiLYi)rxxL)*xxvxvr)^;=:-...````'``'````````````r8@@@@s~!=~!!;<~***rvxiTcyXhPMZdO9DDER9ZG3zkzuYiv\r^~<;!~~=~!_-```L@@@##BB#muu}}TuykXUGbdOD008QQBBBBBQQBBBQQQQ06MPKKKmUzyykVVyyyB@@@@@@@##QgDMmkciix)r)rrr*******r**^^^^^^^^^>;~;~~~
xxxixiL))\xvr|xxLxv\v)v)\\\)^^^="-````````'```````_P@@@6!=!!:!=~<^^*<^r(vxY}TTVwVVcyyzIsjkVuxxxvr*^><>;==;~~!:_-.`.x@@@#BQQBQmcuTTTVyyywkUWMMGM6D0g888Q88g$DERdbMWPKmzIhkyycuVVyK@@@@@@@#BQg6bKyV}ix)rrrrrr**r*******^^*^^^^^<;;;;~!:
LxixxL}}}vxxx)xix|x(vx)\xvxxvxYvvx\*!:,.``.`````````v@@#r=!!:!~~~;;~<*^(vxxLTTVjIhhmsXcLTTiix(|vxxvr^!!~^>~=::_-``.)#@@#QQ88#BV}TT}YLYczjVVyzUmKP3GbZZMMZZZ5HaPPmUIyyVVcVVVVuVwIQ@@@@@##B8EOMmkuYxvv)**r*r***r****r***^^^^^^^^<<<~~:,
LxxvxYVT}ixTiriYixxvxvvxxxxxTuiv|vvxvxxxr^:-```'`````Y#@V!!==~~~~>~==~~~>vVwmbdPGd9EOMGcvyT|*r)vxxL}|;;^*<;=!"-.``.*#@##Qgg$Q@BwYLiL}}cuTTucTVzykyVkwzmKKKsmmsmzyycuuuVyVccTuyI8@@@@##BB8RdGhkcTYxv)|***************^*^^^^^<^^^<>;;!,
xi}ii}c}Lxxxvxi}}YLYYxxxvxxY}uxvvxvv\vxxYixx)<:-.'''`'~$6==~~~~~~~~~==~^~xIhUHDg96E$09WTxVr^rvv|vxix)\*^>;!!:"-'```~B@##BQg$8B##ZYxixxLL}}}TTuu}ucuVykjyyjhjwVcTTucVTccVcuTyymQ@@@@##BQgEdGIyu}ixxv|)r******^*^^^***^^^^^^^<^^^<>;~=)
iiiLLT}LixixxLx}}iY}}xxxvxxi}Txxix\)(xYxY}YxvxLx^:.`'-_,Vx~~~;~==~~>~==~~>rYcyzmZ6ROGwixvv*****^**>=rr^;>~=~!_.`` `:g###BQ0g$Eg#@BKYLiLLiL}T}}TTuTYTuywyyyyuTTT}}TTuucVVuTuc5#@@@@#BB8gRZPUwVTYxxv\)r*^^^*^^*^^<***^^^^^^^^^^^^^>;^x}
}}ixxxxxxvvvxvxLTLiY}ixxiiiiY}Liixv\\xxiLLiixxxvvxxv^,--:~*^~~~=~~~~;>*;~^~~rTKMk))))vx\)Vr^^^^^>=~*)*^^~=:,,-.` `-0###BQ0R6R6RB@@#RITxxiixxxxxLYTcucuTT}T}iYTuuTYYYTuTcwZB@@@@@#BQg06M3IyuYxxxvv))r^*^^^^^^^^>^*^^^^^^^^^^^^^^^)Y}}
Y}}xiLxxvxvxixLiLYL}YL}iLY}xYYx|Y\*rvxxxxixLxvxxxxxxix)>:-=r^~~=~;>~~^*~^^^>*)aP**rrr**rrxjur*)(r^**r*~~==:",-`` .d@##BQ06bdZd9B@@@##8d3zVTYL}}}iLYYiYLLYYiLL}}}TT}LyM$#@@@@@@#Q8g06ZPjyc}xxx\\|)rr^^^^^^^^^^^^^^^^^^^^^^^^^^^xxiiL
ixLiLLx\)|)xL|xxiii}Y}uY}uYvLx)x)xixvvxvxvxxvvvixxvvx}Lxxr^~(**;;<>>;~;;;~;<^*x((vL}LxxxiysMD6mr*)***^~!:!:"_.` `.5@#BBQ06dZWPGRB#@B$$g88QB#BQ8DdGswVuT}}u}TTukaM0Q#@@@@@@@@@#BgDOd5IwVuYLxvv))rr**^^^^<^^^^^^^^^^^^^^^^^^^^(xiiuyT
xiLLLxv)|xxxxxxxiixxxLLviiir(Lxi*ix)vxiiLxvvxxxiLiiLTTxxxix)^r^<^^<~~~~~~~;~^^*^)xyZDgQQBB####G~^**^^^!!!!",_'` `-U@##BQg6EMGmIhZg#@BZGGGGHMbO0QB#@@@##BBBB##@@@@@@@@@@@@@@@BQgEOMHsyyu}Yxv\|rr****^;>^^^^^^^<^^^^^^*^<<^^*x}uTTVcu
xi}Lxxv)\xxxxxixxixixx}ixv|TYxx)vTv)\xLL}LxxxiLiLLxxxvvvixxxxrrr^^*;>^~~~!=~;<^*^ricysMddRB6ZT!_`-<*^;;=!!:,_` 'V###BQ$065aUjyymMB##dhIUUsUssmPHGMR8B#@@@@@@@@@@@@@@@@@@@B8$RdMahyuuTLxv)r))))*****^^^^^^^^^>^^^^^^^^^*xyyVcVyuVc
xxLxxx\\|vviLixixx\xv\|r|(|i)*xiLiv)}TLYLxiixxxxiYxxxxixxYiYi}))*^**^^^~;~>~;**^^^|xi}yyXO$Kx=,.``_rYi*<~=:,_' ```'T###BB8DbPXzyycVkGg##RIXXzIhIUUKmm3PGPMEB@@@@@@@@@@@@@@#Qg06dWKjkyu}ixv\())r*******^*^^^^^^^^****^^^^(YucVVyycuuu
xvxxvv(vvv\|xixvxxvxx)vv|^xxvrr*iucuTixY}LxxixxxxxxvviLLiL}x}T}v****^^*;~;^^**^^^^***)v)xPKr,_-.'`.-=uM5myuum6B@@@#Mk###Q8RDPjuT}xxx}TkR##QHkkzzzhUhhmmUmPHHGM8@@@@@@@@@@@#Qg$RdMKUzVu}ixvv\)rrr*r****^^^^*^^^^^^^***^*vTcT}TyyVVyVVc
vvxv\|\vxxxvvxvixvxxxvxxLY}iiYLuccT}TxxLL}}}TYivvxxvviLxLxii}LYyLr)()r*)*>~~)x*^*r^>^**^*h~---'.````.,(kRB###@@@@@@@###QQ6ZKVYLiv\**)xVwWB##OwywjIUIUsUUssK3PGO@@@@@@@@@@BQg06ZM3yV}}Lixv||)rrrr*******^^*^^^*^**^***(}TTVTTVyyycVuVV
)xxv||)\|vvxxxLYLiLLv|)\LY}xLLLxxcVuV}}cVVcuyy}LiLYLxYiixxi}YLLYTxxxvxv)*^^^*xrr^^*~>^^r\<---'```````.,!*m$QB######BBQ80EHkuYvvvv*^*^|}cIZ###dkywkXjhIXIssssP$#@@@@@@@@#Qg$EOM3Uy}}Yxxv\(r)))r*rrr***^*^^^^^***^^**rYcVccuTT}TVVVVyVT
xxxv)v\xvxixYLY}i}}xv(|xLLixii}xxwc}uVucTccVVivxv\vx\v))(xvvxiiiTcxx}Lv)r***^vx**r*^*^^^(..-.```````'..'.,^YMR08g0R6Od6MPVTxv\)|r*^*^*v}uj6B##QHwkkXjIXXUWEB@@@@@@@@@@B8$09dPXzyuLixxv())rr*rr******^^^^^^^^**^^^*vuuccVyVcTTVyVVVyu}
vvvv|vvxxL}}TuVcxTTix|vxYxxYxxxvvVVuVTY}TuucLxxv|vxvvix(xxvvv\xxTc}vxLx||r)\)vx*))*^*^**"'..```````'`.--'``._^izGMMMaWGUzux\()***^^^;^r|Yz3MQ###QEOdODgQ##@@@@@@@@@@@Bg$06ZaIVuT}xvxv|)rrr***********^**^^^^^^^^|LuVycVcccuuTuTTVccuu
vxv|vxLixxx}}u}ixxiYvvLiivLiLYLxv}cTYTYYYTu}ixxx}YixLTixxxxxvxxLuVjui}YLxv(())vrrr*^*^^_'``````` ``````` `'`_:~)VPPG3XkcTLxv)\(|vr^*^^vvxYj5a0B#B#########@@@@@@@@@#8E99dMUycTYLxx(|)r))r***r*******^^^****^^^ricVTuuVucTucuuuTuTTTVV
(|(\(xixxxvxxYLLxxxLxx}}YLui}TixviT}xLYYiYixiLxxYLixi}LLiivxiiiTTycTVYi}Yxxvrrvr*(^^^^_`````_=rvxiLi}TucVkPb0QBBBBB##BBBQ$9dMGMZMKXIKadddddWIkMBBBBB#######@@@@@@@#$96OM3XycTYLixxrrrrrrr*********^*^^^^^^^^)YuVyVTuVVVVuuuTuTTT}uuVc
)|\vvY}xvvxxxxxxxYxxxxiLixiviT}}xiLixYLi}TixLYxxixxxxiLxxxxxvxxLLu}x0KL}iLYxv)x)rr**^_.```````.~TGbd66OOd6R6D090000$0g8ggg0DDg0dE$QBB$0dGMUccyVsQBQBB######@@@@@#QD6dM5skVTYLixix\)rr*************^^^^^^^^)iTuTcyyVcTuVuccT}}}uVcTuTu
(\vxxL}vvxvvxxvxxxv)vxvxx\vvx\vxxxxvxLiLLYxvxYxxxxxxxxix\vvvxYivx}}x8#dxxLix((v)r*^^_'.`````````-,^xkK3GKKmKPKHMMZMbZbZGHGG35ZO08g6ddM5KIkyuTVycdQBB##B###@@@@@#8EOdMmXycuYixixxxx)*rr*************^*^^^riYYYuTu}}VcuccTcVuYLTyuVTTuV
xvv\vxLxxxxx|v\vvxx|\xLxxx))vvv()(v\LY}}LYixiY}YxxxxxxYxvxLL}}LxiixxQ@@ZiLxxr)v)r))_```````````''._:=^vTykXIjImKKmsPGHmjhI3dgQQQ86MGKXzyykVTucyyk8BB#####@@@@#Q0Rb53hkc}Lixxvvv)(\r*r***r*********^^^^rLL}}T}LxY}}}iLxYYYTuiTuV}Y}}Tu
v\)|vxivixiLvvvvxxxvvxYLxvr)ixLxxixxxxxxxxixiiiixxY}Lx}xxYixxLTTTYxTB@@@R}x()vv)vr~```````````'--::~rvYya5MMMPPPaKmPHGMd0QB80dWHjyYTuT}LuVu}TuyXzZ#B####@@@#B8$9d53szuYLxxvvv\v))()rr*rr********^^^^rxixiLxxYT}xYvvxixixiiYLTuTYT}TcV
xvvxxxi\vxxixxxixxi)v}TLxixxxvxvxLLiixxxxxxYYxxxxxxxLiiixL}xLLiYYxxV#@@@@#dL)||xvr:`''``'```'.-.-__::~\iLTzzMM$0g8QQB#BBQ09ZdscTL}YYTTiYYY}uTTTyyPBB##@@@#BQg0RbGhzyV}xxvv\vv|\|)rr*********^****^*vixxxixxvY}TTuVVuTTuYL}uYTT}Tcu}}T
LxvxxiixvxxxxixiiLixiiYxxLixvxLxxLiLLiixxxxYixxxvLxvxxxxxxxvvxxvxxxV#@@@@@@#dLrxv^"'``'''''```''-_-__,:!~^*)v(kTTykVM9d5G3sXy}YYYixxiixxx}xV}c}ywKB#@@@#BQ8g06ZKXzV}YLxxvvv|r)rrrrr**********^*^)xVuTuu}}Yxxxi}uuT}cuY}TYYT}}YuuYYLiY
xxxxxxLxvxvxxxxYxxYxiLYiixLLxxLLiiixixLxxxLLLxxvxxxvvvvxxxvvxvxxxxxTB@@@@@@@@@8z:`'----'...``````````----!=:>^r^*(r*TkyykjVcTLLiYYix}ixxiTuuTuVyU6@@#BQQ8g09d5azVuTLxxvv(\|r)\r*rrrr**^*******vYTTTcucuLYLTLx}TYuyVVcT}TuYTTLYYu}}Lxi
vv\vxxvxxxxxxxLxxxiYYxvY}xr\ixxLxxxxLixxxxx}}Yivxxixxxx\vxxxxxxiLixxE@@@@@@@@@@@#M)-..-.`.'``````````'...-_,:":!!!!:xTxxLiYLYixxxvxxYYiiiY}T}yksd##QQ8g0DRO5mjkuT}Lxxv\\())rr))*****r*^***rxTuTucuYLY}}YY}LxY}TcTTuTTYLL}}T}YLY}}Y}YY
xxxxxLxxiixLYxiYT}xYvr*Lv~^\xvxLxxxxxxxixvx}}YLxxxxxxxxvxxxxxxi}iixxX#@@@@@@@@@@@@@BP\,.'.-.```````'`.-.-..__-,!::=:)Lxxx\vxv*)*rrr)vx}u}TVwkIDBBQQ8g$DROMPhVuTYiixvvv|)rr)r)r*******^^*vxY}uY}uuTYYu}LxxiLii}T}Y}}xiiLY}}}}}}LY}}T}Y
vvxxixxL}u}}Y}TYr)cTY*rx*r|ixxxxLiLxiLiixiLYT}YvvxxvxixxxixxxixxLxiiib@@@@@@@@@@@@@@@@@gz^_..``````''._--..-.-,",_:"~xvvxvv|()xr*xvxiYuT}TVM8#BQQQ8gDdbMHhkc}}}xxxvv)(v||rrrrr*^^****v}VyuuTT}ucuVcTxixxYxi}TcVVyycuxLiL}}uu}TTu}TTT}
ixiYLLiLYT}LiiYY\!Lxv)}v!rvLxxiixiixxxixxiYYuYYxvv(vvvxxiLixx}xxxxxxxLR@@@@@@@@@@@@@@@@@@@BZVr"```....--.----_"_-,,,!xxvv(vx|xxviui}i}TwdQ##QQQQ80D6MHmKUVu}Yixxxv|)r()r))r*^***^*vLTYYuVcTuVT}TVuc}}}vxux}}YucuTuTLLiY}YTuTY}uuccTTY
xxLLixLLLY}xrr|x}k*Yc)}vvux*YiL}iLixxLxxxLxxxLxvxxxxxxxxxYixiLxxxxvxxxL$@@@@@@@@@@@@@@@@@@@@@@@#$HVx^:----_---_,___,"v(xvxvxvxxxwzKd0Q#@#Qgg88g09dMamjyccTLxxvvvv\)r*rrrr*rr*r(x}u}}T}YL}uuYuTTuVu}}yuLTcYuTLY}Y}u}TxL}ixTuTLuTTT}Tui
LiiiLYixL}cuxxxL~LivvriVu}LxiiLxxxxxxxxvvxxxxxxxxxxxxixxxLLxxxvxxxxxxxviM#@@@@@@@@@@@@@@@@@@@@@@@@@@##Q8D6GhTLiiLYYTVMMMd6D8QB##@@@@@@@Bg888$0EOMGmjkc}Yxiix\\\||()r****r)\vxxiTYiYTLLL}YYYx}Tiiu}YLYLiLuTY}}Y}VVTLTTuTLLYY}}}}}uu}YY
cVuLxxY}}}Tu}T}}uvv)>x}LxiLY}x^(}}ixiYixxxxxLLxxxxxvxxxxLLLxxxv|vvxvxxxxxc$@@@@@@@@@@@@@@@@@@@@@@@@@@#######@@@@@@@@@@@@@@@@@@@@@@@@@@Qg8g$0RdGKmXwuT}ixxv|\)())rr)))|xixLxxixYu}xxTT}TTYTY\LT}TTT}LixvxYY}xLYT}}T}YiiLLYYTT}TuVkcuc}
uTTLiYLxvxixx)))}TcviL})*TuxxxvY}YiLxiLxxxxxxxxxxxvxxxvvxiixxxxxxxxxixxLxxxy$#@@@@@@@@@@@@@@@@@@@@@@@#######@@@@@@@@@@@@@@@@@@@@@@@@#88g0DRd5PhwyuT}Lixxvv\|))r)))r\vxvvxxxxLiLLixxTc}}}TTYxTTx}}cT}xxxL}uY}TixvL}}uT}uVVcu}TccuyyuTT
uVTxucuurrxT}}}i)cx^*x*}xxTYi)*vxxvxxLYixxxxLLxxiixxvxxxxxxxxLxLiLi}}iiixxxxLVO#@@@@@@@@@@@@@@@@@@@@@#############@#####@@@@@@@@@@@Bg$DRdM5PPIwuu}Yixxxxv\\|))))))r))r)vi}xiiiiu}xx}}LY}YTTY}TVTuyuuTYL}uTuVcVcTucuy}TTVuuTT}cVyyVcyu
YT}YixT}Lxv}TTxvL}Yx*)*vuui)rvxLT}ixxxxxxLL}ixYYLxxvxixxxxxxxYixiiiixxxxxxxxiiiuMB@@@@@@@@@@@@@@@@@@@BQBBBB##############@@@@@@@@@B00RdMW3mIwVuT}ixxxxxxvv||)))))r)rr)r**v(xxi}YxxxxTYY}uc}L}uccyuT}iiY}ucyuuuccTucccccTTcc}}TcyyVcVc
xT}}}}Y}uYv^L}xu(i=*T)xL|xvxiLL}uixvi}ixxxxxxxxLiLiixxxxxxxxxiixxx|xxxxvxixixLYYYYj0#@@@@@@@@@@@@@@@@B8QQQQQQBBB###BBBB###@@@@@@@BD9d5GPmIkyuLxxxvxxvvvvv\)))()r))r***rr)*^*vvxiLxxYYY}TT}YYTuVuTVTYLYYTT}TTT}L}}TuuuuuuTTcT}VVuVyyVV
Tuu}YLiTucyiT|vuci\xi^x}L}xvL}LiixxxxLYixxxxxxxxxxxxxxLxxxxxixxxxvvxiiYixxxxxxxxxLLTVMB@@@@@@@@@@@@@@#g$g8888QQQQBBQBBBB###@@@@@@DbMGGKUkVu}Yixxxvvx\vvv\)r())rrrr***r)|)^^**^^*vLi}}}uuuTTY}uV}uVu}L}Y}}}}u}}i}}LLYuVuVVTTuTuVVyyVVV
Tu}LYLxiTuuT}}v*T*rTy)vvTVVkTLY}YiLiixxLixixxvvxxiLxxxxxxxxxxvvxvv\vvxLxvvxxiLixxxxYYTuzO#@@@@@@@@@@@@g0$$$g$$$$gg888QQQBB##@@@@BdbPmXyVT}}Lxxvvvxvvv)\|\vv|\()rrrr)rv(\*^<<><;~~>*\LuT}TLLi}u}TTuYYLYY}}cTTTcTucucuuyuYuccucyyVccTuV
*/
pragma solidity >=0.7.0 <0.9.0;
contract CubismCharm is ERC721, Ownable {
using Strings for uint256;
using Counters for Counters.Counter;
Counters.Counter private supply;
string public uriPrefix = "";
string public uriSuffix = ".json";
string public hiddenMetadataUri;
uint256 public cost = 0.00 ether;
uint256 public maxSupply = 1050;
uint256 public maxMintAmountPerTx = 1050;
bool public paused = true;
bool public revealed = false;
constructor() ERC721("Cubism Charm", "CCM") {
setHiddenMetadataUri("ipfs://bafybeifhe6snt6oz5ftf6ywagrrrziivhqorymvpdyh2nza54sff3lkazy/");
}
modifier mintCompliance(uint256 _mintAmount) {
require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
_;
}
function totalSupply() public view returns (uint256) {
return supply.current();
}
function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
require(!paused, "The contract is paused!");
require(msg.value >= cost * _mintAmount, "Insufficient funds!");
_mintLoop(msg.sender, _mintAmount);
}
function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
_mintLoop(_receiver, _mintAmount);
}
function walletOfOwner(address _owner)
public
view
returns (uint256[] memory)
{
uint256 ownerTokenCount = balanceOf(_owner);
uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
uint256 currentTokenId = 1;
uint256 ownedTokenIndex = 0;
while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
address currentTokenOwner = ownerOf(currentTokenId);
if (currentTokenOwner == _owner) {
ownedTokenIds[ownedTokenIndex] = currentTokenId;
ownedTokenIndex++;
}
currentTokenId++;
}
return ownedTokenIds;
}
function tokenURI(uint256 _tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(_tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
if (revealed == false) {
return hiddenMetadataUri;
}
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
: "";
}
function setRevealed(bool _state) public onlyOwner {
revealed = _state;
}
function setCost(uint256 _cost) public onlyOwner {
cost = _cost;
}
function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
maxMintAmountPerTx = _maxMintAmountPerTx;
}
function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
hiddenMetadataUri = _hiddenMetadataUri;
}
function setUriPrefix(string memory _uriPrefix) public onlyOwner {
uriPrefix = _uriPrefix;
}
function setUriSuffix(string memory _uriSuffix) public onlyOwner {
uriSuffix = _uriSuffix;
}
function setPaused(bool _state) public onlyOwner {
paused = _state;
}
function withdraw() public onlyOwner {
// This will transfer the remaining contract balance to the owner.
// Do not remove this otherwise you will not be able to withdraw the funds.
// =============================================================================
(bool os, ) = payable(owner()).call{value: address(this).balance}("");
require(os);
// =============================================================================
}
function _mintLoop(address _receiver, uint256 _mintAmount) internal {
for (uint256 i = 0; i < _mintAmount; i++) {
supply.increment();
_safeMint(_receiver, supply.current());
}
}
function _baseURI() internal view virtual override returns (string memory) {
return uriPrefix;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405260405180602001604052806000815250600890805190602001906200002b92919062000374565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200007992919062000374565b506000600b5561041a600c5561041a600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff021916908315150217905550348015620000ce57600080fd5b506040518060400160405280600c81526020017f43756269736d20436861726d00000000000000000000000000000000000000008152506040518060400160405280600381526020017f43434d000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200015392919062000374565b5080600190805190602001906200016c92919062000374565b5050506200018f62000183620001bf60201b60201c565b620001c760201b60201c565b620001b960405180608001604052806043815260200162004206604391396200028d60201b60201c565b6200050c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200029d620002b960201b60201c565b80600a9080519060200190620002b592919062000374565b5050565b620002c9620001bf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ef6200034a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000348576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033f906200044b565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000382906200047e565b90600052602060002090601f016020900481019282620003a65760008555620003f2565b82601f10620003c157805160ff1916838001178555620003f2565b82800160010185558215620003f2579182015b82811115620003f1578251825591602001919060010190620003d4565b5b50905062000401919062000405565b5090565b5b808211156200042057600081600090555060010162000406565b5090565b6000620004336020836200046d565b91506200044082620004e3565b602082019050919050565b60006020820190508181036000830152620004668162000424565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200049757607f821691505b60208210811415620004ae57620004ad620004b4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613cea806200051c6000396000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb0114610768578063e0a8085314610793578063e985e9c5146107bc578063efbd73f4146107f9578063f2fde38b146108225761020f565b8063a45ba8e7146106ae578063b071401b146106d9578063b88d4fde14610702578063c87b56dd1461072b5761020f565b80638da5cb5b116100e75780638da5cb5b146105e857806394354fd01461061357806395d89b411461063e578063a0712d6814610669578063a22cb465146106855761020f565b80636352211e1461052e57806370a082311461056b578063715018a6146105a85780637ec4a659146105bf5761020f565b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb1461045957806351830227146104825780635503a0e8146104ad5780635c975abb146104d857806362b99ad4146105035761020f565b80633ccfd60b146103b357806342842e0e146103ca578063438b6300146103f357806344a0d68a146104305761020f565b806313faede6116101e257806313faede6146102e257806316ba10e01461030d57806316c38b3c1461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612af4565b61084b565b6040516102489190613140565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b604051610273919061315b565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612b97565b6109bf565b6040516102b091906130b7565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612a87565b610a05565b005b3480156102ee57600080fd5b506102f7610b1d565b60405161030491906133bd565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612b4e565b610b23565b005b34801561034257600080fd5b5061035d60048036038101906103589190612ac7565b610b45565b005b34801561036b57600080fd5b50610374610b6a565b60405161038191906133bd565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612971565b610b7b565b005b3480156103bf57600080fd5b506103c8610bdb565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612971565b610c63565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612904565b610c83565b604051610427919061311e565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612b97565b610d8e565b005b34801561046557600080fd5b50610480600480360381019061047b9190612b4e565b610da0565b005b34801561048e57600080fd5b50610497610dc2565b6040516104a49190613140565b60405180910390f35b3480156104b957600080fd5b506104c2610dd5565b6040516104cf919061315b565b60405180910390f35b3480156104e457600080fd5b506104ed610e63565b6040516104fa9190613140565b60405180910390f35b34801561050f57600080fd5b50610518610e76565b604051610525919061315b565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612b97565b610f04565b60405161056291906130b7565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190612904565b610f8b565b60405161059f91906133bd565b60405180910390f35b3480156105b457600080fd5b506105bd611043565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190612b4e565b611057565b005b3480156105f457600080fd5b506105fd611079565b60405161060a91906130b7565b60405180910390f35b34801561061f57600080fd5b506106286110a3565b60405161063591906133bd565b60405180910390f35b34801561064a57600080fd5b506106536110a9565b604051610660919061315b565b60405180910390f35b610683600480360381019061067e9190612b97565b61113b565b005b34801561069157600080fd5b506106ac60048036038101906106a79190612a47565b611294565b005b3480156106ba57600080fd5b506106c36112aa565b6040516106d0919061315b565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190612b97565b611338565b005b34801561070e57600080fd5b50610729600480360381019061072491906129c4565b61134a565b005b34801561073757600080fd5b50610752600480360381019061074d9190612b97565b6113ac565b60405161075f919061315b565b60405180910390f35b34801561077457600080fd5b5061077d611505565b60405161078a91906133bd565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190612ac7565b61150b565b005b3480156107c857600080fd5b506107e360048036038101906107de9190612931565b611530565b6040516107f09190613140565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612bc4565b6115c4565b005b34801561082e57600080fd5b5061084960048036038101906108449190612904565b611686565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092657506109258261170a565b5b9050919050565b60606000805461093c90613661565b80601f016020809104026020016040519081016040528092919081815260200182805461096890613661565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca82611774565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1082610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061333d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa06117bf565b73ffffffffffffffffffffffffffffffffffffffff161480610acf5750610ace81610ac96117bf565b611530565b5b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b059061337d565b60405180910390fd5b610b1883836117c7565b505050565b600b5481565b610b2b611880565b8060099080519060200190610b41929190612718565b5050565b610b4d611880565b80600e60006101000a81548160ff02191690831515021790555050565b6000610b7660076118fe565b905090565b610b8c610b866117bf565b8261190c565b610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc29061317d565b60405180910390fd5b610bd68383836119a1565b505050565b610be3611880565b6000610bed611079565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c10906130a2565b60006040518083038185875af1925050503d8060008114610c4d576040519150601f19603f3d011682016040523d82523d6000602084013e610c52565b606091505b5050905080610c6057600080fd5b50565b610c7e8383836040518060200160405280600081525061134a565b505050565b60606000610c9083610f8b565b905060008167ffffffffffffffff811115610cae57610cad6137c9565b5b604051908082528060200260200182016040528015610cdc5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610cf95750600c548211155b15610d82576000610d0983610f04565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d6e5782848381518110610d5357610d5261379a565b5b6020026020010181815250508180610d6a906136c4565b9250505b8280610d79906136c4565b93505050610ce8565b82945050505050919050565b610d96611880565b80600b8190555050565b610da8611880565b80600a9080519060200190610dbe929190612718565b5050565b600e60019054906101000a900460ff1681565b60098054610de290613661565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0e90613661565b8015610e5b5780601f10610e3057610100808354040283529160200191610e5b565b820191906000526020600020905b815481529060010190602001808311610e3e57829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610e8390613661565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf90613661565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b505050505081565b600080610f1083611c9b565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f799061331d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff39061327d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61104b611880565b6110556000611cd8565b565b61105f611880565b8060089080519060200190611075929190612718565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546110b890613661565b80601f01602080910402602001604051908101604052809291908181526020018280546110e490613661565b80156111315780601f1061110657610100808354040283529160200191611131565b820191906000526020600020905b81548152906001019060200180831161111457829003601f168201915b5050505050905090565b8060008111801561114e5750600d548111155b61118d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111849061321d565b60405180910390fd5b600c548161119b60076118fe565b6111a591906134fb565b11156111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd9061335d565b60405180910390fd5b600e60009054906101000a900460ff1615611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d906132dd565b60405180910390fd5b81600b546112449190613551565b341015611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d9061339d565b60405180910390fd5b6112903383611d9e565b5050565b6112a661129f6117bf565b8383611dde565b5050565b600a80546112b790613661565b80601f01602080910402602001604051908101604052809291908181526020018280546112e390613661565b80156113305780601f1061130557610100808354040283529160200191611330565b820191906000526020600020905b81548152906001019060200180831161131357829003601f168201915b505050505081565b611340611880565b80600d8190555050565b61135b6113556117bf565b8361190c565b61139a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113919061317d565b60405180910390fd5b6113a684848484611f4b565b50505050565b60606113b782611fa7565b6113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed906132fd565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514156114a457600a805461141f90613661565b80601f016020809104026020016040519081016040528092919081815260200182805461144b90613661565b80156114985780601f1061146d57610100808354040283529160200191611498565b820191906000526020600020905b81548152906001019060200180831161147b57829003601f168201915b50505050509050611500565b60006114ae611fe8565b905060008151116114ce57604051806020016040528060008152506114fc565b806114d88461207a565b60096040516020016114ec93929190613071565b6040516020818303038152906040525b9150505b919050565b600c5481565b611513611880565b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156115d75750600d548111155b611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d9061321d565b60405180910390fd5b600c548161162460076118fe565b61162e91906134fb565b111561166f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116669061335d565b60405180910390fd5b611677611880565b6116818284611d9e565b505050565b61168e611880565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f5906131bd565b60405180910390fd5b61170781611cd8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61177d81611fa7565b6117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b39061331d565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661183a83610f04565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118886117bf565b73ffffffffffffffffffffffffffffffffffffffff166118a6611079565b73ffffffffffffffffffffffffffffffffffffffff16146118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f3906132bd565b60405180910390fd5b565b600081600001549050919050565b60008061191883610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061195a57506119598185611530565b5b8061199857508373ffffffffffffffffffffffffffffffffffffffff16611980846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119c182610f04565b73ffffffffffffffffffffffffffffffffffffffff1614611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e906131dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e9061323d565b60405180910390fd5b611a948383836001612152565b8273ffffffffffffffffffffffffffffffffffffffff16611ab482610f04565b73ffffffffffffffffffffffffffffffffffffffff1614611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b01906131dd565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c968383836001612158565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611dd957611db3600761215e565b611dc683611dc160076118fe565b612174565b8080611dd1906136c4565b915050611da1565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e449061325d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3e9190613140565b60405180910390a3505050565b611f568484846119a1565b611f6284848484612192565b611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f989061319d565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611fc983611c9b565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611ff790613661565b80601f016020809104026020016040519081016040528092919081815260200182805461202390613661565b80156120705780601f1061204557610100808354040283529160200191612070565b820191906000526020600020905b81548152906001019060200180831161205357829003601f168201915b5050505050905090565b60606000600161208984612329565b01905060008167ffffffffffffffff8111156120a8576120a76137c9565b5b6040519080825280601f01601f1916602001820160405280156120da5781602001600182028036833780820191505090505b509050600082602001820190505b600115612147578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816121315761213061373c565b5b049450600085141561214257612147565b6120e8565b819350505050919050565b50505050565b50505050565b6001816000016000828254019250508190555050565b61218e82826040518060200160405280600081525061247c565b5050565b60006121b38473ffffffffffffffffffffffffffffffffffffffff166124d7565b1561231c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121dc6117bf565b8786866040518563ffffffff1660e01b81526004016121fe94939291906130d2565b602060405180830381600087803b15801561221857600080fd5b505af192505050801561224957506040513d601f19601f820116820180604052508101906122469190612b21565b60015b6122cc573d8060008114612279576040519150601f19603f3d011682016040523d82523d6000602084013e61227e565b606091505b506000815114156122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb9061319d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612321565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612387577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161237d5761237c61373c565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106123c4576d04ee2d6d415b85acef810000000083816123ba576123b961373c565b5b0492506020810190505b662386f26fc1000083106123f357662386f26fc1000083816123e9576123e861373c565b5b0492506010810190505b6305f5e100831061241c576305f5e10083816124125761241161373c565b5b0492506008810190505b61271083106124415761271083816124375761243661373c565b5b0492506004810190505b60648310612464576064838161245a5761245961373c565b5b0492506002810190505b600a8310612473576001810190505b80915050919050565b61248683836124fa565b6124936000848484612192565b6124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c99061319d565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561256a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125619061329d565b60405180910390fd5b61257381611fa7565b156125b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125aa906131fd565b60405180910390fd5b6125c1600083836001612152565b6125ca81611fa7565b1561260a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612601906131fd565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612714600083836001612158565b5050565b82805461272490613661565b90600052602060002090601f016020900481019282612746576000855561278d565b82601f1061275f57805160ff191683800117855561278d565b8280016001018555821561278d579182015b8281111561278c578251825591602001919060010190612771565b5b50905061279a919061279e565b5090565b5b808211156127b757600081600090555060010161279f565b5090565b60006127ce6127c9846133fd565b6133d8565b9050828152602081018484840111156127ea576127e96137fd565b5b6127f584828561361f565b509392505050565b600061281061280b8461342e565b6133d8565b90508281526020810184848401111561282c5761282b6137fd565b5b61283784828561361f565b509392505050565b60008135905061284e81613c58565b92915050565b60008135905061286381613c6f565b92915050565b60008135905061287881613c86565b92915050565b60008151905061288d81613c86565b92915050565b600082601f8301126128a8576128a76137f8565b5b81356128b88482602086016127bb565b91505092915050565b600082601f8301126128d6576128d56137f8565b5b81356128e68482602086016127fd565b91505092915050565b6000813590506128fe81613c9d565b92915050565b60006020828403121561291a57612919613807565b5b60006129288482850161283f565b91505092915050565b6000806040838503121561294857612947613807565b5b60006129568582860161283f565b92505060206129678582860161283f565b9150509250929050565b60008060006060848603121561298a57612989613807565b5b60006129988682870161283f565b93505060206129a98682870161283f565b92505060406129ba868287016128ef565b9150509250925092565b600080600080608085870312156129de576129dd613807565b5b60006129ec8782880161283f565b94505060206129fd8782880161283f565b9350506040612a0e878288016128ef565b925050606085013567ffffffffffffffff811115612a2f57612a2e613802565b5b612a3b87828801612893565b91505092959194509250565b60008060408385031215612a5e57612a5d613807565b5b6000612a6c8582860161283f565b9250506020612a7d85828601612854565b9150509250929050565b60008060408385031215612a9e57612a9d613807565b5b6000612aac8582860161283f565b9250506020612abd858286016128ef565b9150509250929050565b600060208284031215612add57612adc613807565b5b6000612aeb84828501612854565b91505092915050565b600060208284031215612b0a57612b09613807565b5b6000612b1884828501612869565b91505092915050565b600060208284031215612b3757612b36613807565b5b6000612b458482850161287e565b91505092915050565b600060208284031215612b6457612b63613807565b5b600082013567ffffffffffffffff811115612b8257612b81613802565b5b612b8e848285016128c1565b91505092915050565b600060208284031215612bad57612bac613807565b5b6000612bbb848285016128ef565b91505092915050565b60008060408385031215612bdb57612bda613807565b5b6000612be9858286016128ef565b9250506020612bfa8582860161283f565b9150509250929050565b6000612c108383613053565b60208301905092915050565b612c25816135ab565b82525050565b6000612c3682613484565b612c4081856134b2565b9350612c4b8361345f565b8060005b83811015612c7c578151612c638882612c04565b9750612c6e836134a5565b925050600181019050612c4f565b5085935050505092915050565b612c92816135bd565b82525050565b6000612ca38261348f565b612cad81856134c3565b9350612cbd81856020860161362e565b612cc68161380c565b840191505092915050565b6000612cdc8261349a565b612ce681856134df565b9350612cf681856020860161362e565b612cff8161380c565b840191505092915050565b6000612d158261349a565b612d1f81856134f0565b9350612d2f81856020860161362e565b80840191505092915050565b60008154612d4881613661565b612d5281866134f0565b94506001821660008114612d6d5760018114612d7e57612db1565b60ff19831686528186019350612db1565b612d878561346f565b60005b83811015612da957815481890152600182019150602081019050612d8a565b838801955050505b50505092915050565b6000612dc7602d836134df565b9150612dd28261381d565b604082019050919050565b6000612dea6032836134df565b9150612df58261386c565b604082019050919050565b6000612e0d6026836134df565b9150612e18826138bb565b604082019050919050565b6000612e306025836134df565b9150612e3b8261390a565b604082019050919050565b6000612e53601c836134df565b9150612e5e82613959565b602082019050919050565b6000612e766014836134df565b9150612e8182613982565b602082019050919050565b6000612e996024836134df565b9150612ea4826139ab565b604082019050919050565b6000612ebc6019836134df565b9150612ec7826139fa565b602082019050919050565b6000612edf6029836134df565b9150612eea82613a23565b604082019050919050565b6000612f026020836134df565b9150612f0d82613a72565b602082019050919050565b6000612f256020836134df565b9150612f3082613a9b565b602082019050919050565b6000612f486017836134df565b9150612f5382613ac4565b602082019050919050565b6000612f6b602f836134df565b9150612f7682613aed565b604082019050919050565b6000612f8e6018836134df565b9150612f9982613b3c565b602082019050919050565b6000612fb16021836134df565b9150612fbc82613b65565b604082019050919050565b6000612fd46000836134d4565b9150612fdf82613bb4565b600082019050919050565b6000612ff76014836134df565b915061300282613bb7565b602082019050919050565b600061301a603d836134df565b915061302582613be0565b604082019050919050565b600061303d6013836134df565b915061304882613c2f565b602082019050919050565b61305c81613615565b82525050565b61306b81613615565b82525050565b600061307d8286612d0a565b91506130898285612d0a565b91506130958284612d3b565b9150819050949350505050565b60006130ad82612fc7565b9150819050919050565b60006020820190506130cc6000830184612c1c565b92915050565b60006080820190506130e76000830187612c1c565b6130f46020830186612c1c565b6131016040830185613062565b81810360608301526131138184612c98565b905095945050505050565b600060208201905081810360008301526131388184612c2b565b905092915050565b60006020820190506131556000830184612c89565b92915050565b600060208201905081810360008301526131758184612cd1565b905092915050565b6000602082019050818103600083015261319681612dba565b9050919050565b600060208201905081810360008301526131b681612ddd565b9050919050565b600060208201905081810360008301526131d681612e00565b9050919050565b600060208201905081810360008301526131f681612e23565b9050919050565b6000602082019050818103600083015261321681612e46565b9050919050565b6000602082019050818103600083015261323681612e69565b9050919050565b6000602082019050818103600083015261325681612e8c565b9050919050565b6000602082019050818103600083015261327681612eaf565b9050919050565b6000602082019050818103600083015261329681612ed2565b9050919050565b600060208201905081810360008301526132b681612ef5565b9050919050565b600060208201905081810360008301526132d681612f18565b9050919050565b600060208201905081810360008301526132f681612f3b565b9050919050565b6000602082019050818103600083015261331681612f5e565b9050919050565b6000602082019050818103600083015261333681612f81565b9050919050565b6000602082019050818103600083015261335681612fa4565b9050919050565b6000602082019050818103600083015261337681612fea565b9050919050565b600060208201905081810360008301526133968161300d565b9050919050565b600060208201905081810360008301526133b681613030565b9050919050565b60006020820190506133d26000830184613062565b92915050565b60006133e26133f3565b90506133ee8282613693565b919050565b6000604051905090565b600067ffffffffffffffff821115613418576134176137c9565b5b6134218261380c565b9050602081019050919050565b600067ffffffffffffffff821115613449576134486137c9565b5b6134528261380c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061350682613615565b915061351183613615565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135465761354561370d565b5b828201905092915050565b600061355c82613615565b915061356783613615565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135a05761359f61370d565b5b828202905092915050565b60006135b6826135f5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561364c578082015181840152602081019050613631565b8381111561365b576000848401525b50505050565b6000600282049050600182168061367957607f821691505b6020821081141561368d5761368c61376b565b5b50919050565b61369c8261380c565b810181811067ffffffffffffffff821117156136bb576136ba6137c9565b5b80604052505050565b60006136cf82613615565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137025761370161370d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613c61816135ab565b8114613c6c57600080fd5b50565b613c78816135bd565b8114613c8357600080fd5b50565b613c8f816135c9565b8114613c9a57600080fd5b50565b613ca681613615565b8114613cb157600080fd5b5056fea264697066735822122054d606469daeed0b807f14bed34aa565f76ec2319229b5cac04392ddcdbda63564736f6c63430008070033697066733a2f2f6261667962656966686536736e74366f7a3566746636797761677272727a69697668716f72796d7670647968326e7a613534736666336c6b617a792f
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636352211e11610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb0114610768578063e0a8085314610793578063e985e9c5146107bc578063efbd73f4146107f9578063f2fde38b146108225761020f565b8063a45ba8e7146106ae578063b071401b146106d9578063b88d4fde14610702578063c87b56dd1461072b5761020f565b80638da5cb5b116100e75780638da5cb5b146105e857806394354fd01461061357806395d89b411461063e578063a0712d6814610669578063a22cb465146106855761020f565b80636352211e1461052e57806370a082311461056b578063715018a6146105a85780637ec4a659146105bf5761020f565b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb1461045957806351830227146104825780635503a0e8146104ad5780635c975abb146104d857806362b99ad4146105035761020f565b80633ccfd60b146103b357806342842e0e146103ca578063438b6300146103f357806344a0d68a146104305761020f565b806313faede6116101e257806313faede6146102e257806316ba10e01461030d57806316c38b3c1461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612af4565b61084b565b6040516102489190613140565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b604051610273919061315b565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612b97565b6109bf565b6040516102b091906130b7565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612a87565b610a05565b005b3480156102ee57600080fd5b506102f7610b1d565b60405161030491906133bd565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612b4e565b610b23565b005b34801561034257600080fd5b5061035d60048036038101906103589190612ac7565b610b45565b005b34801561036b57600080fd5b50610374610b6a565b60405161038191906133bd565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612971565b610b7b565b005b3480156103bf57600080fd5b506103c8610bdb565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612971565b610c63565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612904565b610c83565b604051610427919061311e565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612b97565b610d8e565b005b34801561046557600080fd5b50610480600480360381019061047b9190612b4e565b610da0565b005b34801561048e57600080fd5b50610497610dc2565b6040516104a49190613140565b60405180910390f35b3480156104b957600080fd5b506104c2610dd5565b6040516104cf919061315b565b60405180910390f35b3480156104e457600080fd5b506104ed610e63565b6040516104fa9190613140565b60405180910390f35b34801561050f57600080fd5b50610518610e76565b604051610525919061315b565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612b97565b610f04565b60405161056291906130b7565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190612904565b610f8b565b60405161059f91906133bd565b60405180910390f35b3480156105b457600080fd5b506105bd611043565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190612b4e565b611057565b005b3480156105f457600080fd5b506105fd611079565b60405161060a91906130b7565b60405180910390f35b34801561061f57600080fd5b506106286110a3565b60405161063591906133bd565b60405180910390f35b34801561064a57600080fd5b506106536110a9565b604051610660919061315b565b60405180910390f35b610683600480360381019061067e9190612b97565b61113b565b005b34801561069157600080fd5b506106ac60048036038101906106a79190612a47565b611294565b005b3480156106ba57600080fd5b506106c36112aa565b6040516106d0919061315b565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190612b97565b611338565b005b34801561070e57600080fd5b50610729600480360381019061072491906129c4565b61134a565b005b34801561073757600080fd5b50610752600480360381019061074d9190612b97565b6113ac565b60405161075f919061315b565b60405180910390f35b34801561077457600080fd5b5061077d611505565b60405161078a91906133bd565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190612ac7565b61150b565b005b3480156107c857600080fd5b506107e360048036038101906107de9190612931565b611530565b6040516107f09190613140565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612bc4565b6115c4565b005b34801561082e57600080fd5b5061084960048036038101906108449190612904565b611686565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061092657506109258261170a565b5b9050919050565b60606000805461093c90613661565b80601f016020809104026020016040519081016040528092919081815260200182805461096890613661565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca82611774565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1082610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061333d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa06117bf565b73ffffffffffffffffffffffffffffffffffffffff161480610acf5750610ace81610ac96117bf565b611530565b5b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b059061337d565b60405180910390fd5b610b1883836117c7565b505050565b600b5481565b610b2b611880565b8060099080519060200190610b41929190612718565b5050565b610b4d611880565b80600e60006101000a81548160ff02191690831515021790555050565b6000610b7660076118fe565b905090565b610b8c610b866117bf565b8261190c565b610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc29061317d565b60405180910390fd5b610bd68383836119a1565b505050565b610be3611880565b6000610bed611079565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c10906130a2565b60006040518083038185875af1925050503d8060008114610c4d576040519150601f19603f3d011682016040523d82523d6000602084013e610c52565b606091505b5050905080610c6057600080fd5b50565b610c7e8383836040518060200160405280600081525061134a565b505050565b60606000610c9083610f8b565b905060008167ffffffffffffffff811115610cae57610cad6137c9565b5b604051908082528060200260200182016040528015610cdc5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610cf95750600c548211155b15610d82576000610d0983610f04565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d6e5782848381518110610d5357610d5261379a565b5b6020026020010181815250508180610d6a906136c4565b9250505b8280610d79906136c4565b93505050610ce8565b82945050505050919050565b610d96611880565b80600b8190555050565b610da8611880565b80600a9080519060200190610dbe929190612718565b5050565b600e60019054906101000a900460ff1681565b60098054610de290613661565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0e90613661565b8015610e5b5780601f10610e3057610100808354040283529160200191610e5b565b820191906000526020600020905b815481529060010190602001808311610e3e57829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610e8390613661565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf90613661565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b505050505081565b600080610f1083611c9b565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f799061331d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff39061327d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61104b611880565b6110556000611cd8565b565b61105f611880565b8060089080519060200190611075929190612718565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546110b890613661565b80601f01602080910402602001604051908101604052809291908181526020018280546110e490613661565b80156111315780601f1061110657610100808354040283529160200191611131565b820191906000526020600020905b81548152906001019060200180831161111457829003601f168201915b5050505050905090565b8060008111801561114e5750600d548111155b61118d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111849061321d565b60405180910390fd5b600c548161119b60076118fe565b6111a591906134fb565b11156111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd9061335d565b60405180910390fd5b600e60009054906101000a900460ff1615611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d906132dd565b60405180910390fd5b81600b546112449190613551565b341015611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d9061339d565b60405180910390fd5b6112903383611d9e565b5050565b6112a661129f6117bf565b8383611dde565b5050565b600a80546112b790613661565b80601f01602080910402602001604051908101604052809291908181526020018280546112e390613661565b80156113305780601f1061130557610100808354040283529160200191611330565b820191906000526020600020905b81548152906001019060200180831161131357829003601f168201915b505050505081565b611340611880565b80600d8190555050565b61135b6113556117bf565b8361190c565b61139a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113919061317d565b60405180910390fd5b6113a684848484611f4b565b50505050565b60606113b782611fa7565b6113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed906132fd565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514156114a457600a805461141f90613661565b80601f016020809104026020016040519081016040528092919081815260200182805461144b90613661565b80156114985780601f1061146d57610100808354040283529160200191611498565b820191906000526020600020905b81548152906001019060200180831161147b57829003601f168201915b50505050509050611500565b60006114ae611fe8565b905060008151116114ce57604051806020016040528060008152506114fc565b806114d88461207a565b60096040516020016114ec93929190613071565b6040516020818303038152906040525b9150505b919050565b600c5481565b611513611880565b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156115d75750600d548111155b611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d9061321d565b60405180910390fd5b600c548161162460076118fe565b61162e91906134fb565b111561166f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116669061335d565b60405180910390fd5b611677611880565b6116818284611d9e565b505050565b61168e611880565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f5906131bd565b60405180910390fd5b61170781611cd8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61177d81611fa7565b6117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b39061331d565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661183a83610f04565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118886117bf565b73ffffffffffffffffffffffffffffffffffffffff166118a6611079565b73ffffffffffffffffffffffffffffffffffffffff16146118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f3906132bd565b60405180910390fd5b565b600081600001549050919050565b60008061191883610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061195a57506119598185611530565b5b8061199857508373ffffffffffffffffffffffffffffffffffffffff16611980846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119c182610f04565b73ffffffffffffffffffffffffffffffffffffffff1614611a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0e906131dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e9061323d565b60405180910390fd5b611a948383836001612152565b8273ffffffffffffffffffffffffffffffffffffffff16611ab482610f04565b73ffffffffffffffffffffffffffffffffffffffff1614611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b01906131dd565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c968383836001612158565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611dd957611db3600761215e565b611dc683611dc160076118fe565b612174565b8080611dd1906136c4565b915050611da1565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e449061325d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f3e9190613140565b60405180910390a3505050565b611f568484846119a1565b611f6284848484612192565b611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f989061319d565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff16611fc983611c9b565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b606060088054611ff790613661565b80601f016020809104026020016040519081016040528092919081815260200182805461202390613661565b80156120705780601f1061204557610100808354040283529160200191612070565b820191906000526020600020905b81548152906001019060200180831161205357829003601f168201915b5050505050905090565b60606000600161208984612329565b01905060008167ffffffffffffffff8111156120a8576120a76137c9565b5b6040519080825280601f01601f1916602001820160405280156120da5781602001600182028036833780820191505090505b509050600082602001820190505b600115612147578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816121315761213061373c565b5b049450600085141561214257612147565b6120e8565b819350505050919050565b50505050565b50505050565b6001816000016000828254019250508190555050565b61218e82826040518060200160405280600081525061247c565b5050565b60006121b38473ffffffffffffffffffffffffffffffffffffffff166124d7565b1561231c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121dc6117bf565b8786866040518563ffffffff1660e01b81526004016121fe94939291906130d2565b602060405180830381600087803b15801561221857600080fd5b505af192505050801561224957506040513d601f19601f820116820180604052508101906122469190612b21565b60015b6122cc573d8060008114612279576040519150601f19603f3d011682016040523d82523d6000602084013e61227e565b606091505b506000815114156122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb9061319d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612321565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612387577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161237d5761237c61373c565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106123c4576d04ee2d6d415b85acef810000000083816123ba576123b961373c565b5b0492506020810190505b662386f26fc1000083106123f357662386f26fc1000083816123e9576123e861373c565b5b0492506010810190505b6305f5e100831061241c576305f5e10083816124125761241161373c565b5b0492506008810190505b61271083106124415761271083816124375761243661373c565b5b0492506004810190505b60648310612464576064838161245a5761245961373c565b5b0492506002810190505b600a8310612473576001810190505b80915050919050565b61248683836124fa565b6124936000848484612192565b6124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c99061319d565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561256a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125619061329d565b60405180910390fd5b61257381611fa7565b156125b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125aa906131fd565b60405180910390fd5b6125c1600083836001612152565b6125ca81611fa7565b1561260a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612601906131fd565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612714600083836001612158565b5050565b82805461272490613661565b90600052602060002090601f016020900481019282612746576000855561278d565b82601f1061275f57805160ff191683800117855561278d565b8280016001018555821561278d579182015b8281111561278c578251825591602001919060010190612771565b5b50905061279a919061279e565b5090565b5b808211156127b757600081600090555060010161279f565b5090565b60006127ce6127c9846133fd565b6133d8565b9050828152602081018484840111156127ea576127e96137fd565b5b6127f584828561361f565b509392505050565b600061281061280b8461342e565b6133d8565b90508281526020810184848401111561282c5761282b6137fd565b5b61283784828561361f565b509392505050565b60008135905061284e81613c58565b92915050565b60008135905061286381613c6f565b92915050565b60008135905061287881613c86565b92915050565b60008151905061288d81613c86565b92915050565b600082601f8301126128a8576128a76137f8565b5b81356128b88482602086016127bb565b91505092915050565b600082601f8301126128d6576128d56137f8565b5b81356128e68482602086016127fd565b91505092915050565b6000813590506128fe81613c9d565b92915050565b60006020828403121561291a57612919613807565b5b60006129288482850161283f565b91505092915050565b6000806040838503121561294857612947613807565b5b60006129568582860161283f565b92505060206129678582860161283f565b9150509250929050565b60008060006060848603121561298a57612989613807565b5b60006129988682870161283f565b93505060206129a98682870161283f565b92505060406129ba868287016128ef565b9150509250925092565b600080600080608085870312156129de576129dd613807565b5b60006129ec8782880161283f565b94505060206129fd8782880161283f565b9350506040612a0e878288016128ef565b925050606085013567ffffffffffffffff811115612a2f57612a2e613802565b5b612a3b87828801612893565b91505092959194509250565b60008060408385031215612a5e57612a5d613807565b5b6000612a6c8582860161283f565b9250506020612a7d85828601612854565b9150509250929050565b60008060408385031215612a9e57612a9d613807565b5b6000612aac8582860161283f565b9250506020612abd858286016128ef565b9150509250929050565b600060208284031215612add57612adc613807565b5b6000612aeb84828501612854565b91505092915050565b600060208284031215612b0a57612b09613807565b5b6000612b1884828501612869565b91505092915050565b600060208284031215612b3757612b36613807565b5b6000612b458482850161287e565b91505092915050565b600060208284031215612b6457612b63613807565b5b600082013567ffffffffffffffff811115612b8257612b81613802565b5b612b8e848285016128c1565b91505092915050565b600060208284031215612bad57612bac613807565b5b6000612bbb848285016128ef565b91505092915050565b60008060408385031215612bdb57612bda613807565b5b6000612be9858286016128ef565b9250506020612bfa8582860161283f565b9150509250929050565b6000612c108383613053565b60208301905092915050565b612c25816135ab565b82525050565b6000612c3682613484565b612c4081856134b2565b9350612c4b8361345f565b8060005b83811015612c7c578151612c638882612c04565b9750612c6e836134a5565b925050600181019050612c4f565b5085935050505092915050565b612c92816135bd565b82525050565b6000612ca38261348f565b612cad81856134c3565b9350612cbd81856020860161362e565b612cc68161380c565b840191505092915050565b6000612cdc8261349a565b612ce681856134df565b9350612cf681856020860161362e565b612cff8161380c565b840191505092915050565b6000612d158261349a565b612d1f81856134f0565b9350612d2f81856020860161362e565b80840191505092915050565b60008154612d4881613661565b612d5281866134f0565b94506001821660008114612d6d5760018114612d7e57612db1565b60ff19831686528186019350612db1565b612d878561346f565b60005b83811015612da957815481890152600182019150602081019050612d8a565b838801955050505b50505092915050565b6000612dc7602d836134df565b9150612dd28261381d565b604082019050919050565b6000612dea6032836134df565b9150612df58261386c565b604082019050919050565b6000612e0d6026836134df565b9150612e18826138bb565b604082019050919050565b6000612e306025836134df565b9150612e3b8261390a565b604082019050919050565b6000612e53601c836134df565b9150612e5e82613959565b602082019050919050565b6000612e766014836134df565b9150612e8182613982565b602082019050919050565b6000612e996024836134df565b9150612ea4826139ab565b604082019050919050565b6000612ebc6019836134df565b9150612ec7826139fa565b602082019050919050565b6000612edf6029836134df565b9150612eea82613a23565b604082019050919050565b6000612f026020836134df565b9150612f0d82613a72565b602082019050919050565b6000612f256020836134df565b9150612f3082613a9b565b602082019050919050565b6000612f486017836134df565b9150612f5382613ac4565b602082019050919050565b6000612f6b602f836134df565b9150612f7682613aed565b604082019050919050565b6000612f8e6018836134df565b9150612f9982613b3c565b602082019050919050565b6000612fb16021836134df565b9150612fbc82613b65565b604082019050919050565b6000612fd46000836134d4565b9150612fdf82613bb4565b600082019050919050565b6000612ff76014836134df565b915061300282613bb7565b602082019050919050565b600061301a603d836134df565b915061302582613be0565b604082019050919050565b600061303d6013836134df565b915061304882613c2f565b602082019050919050565b61305c81613615565b82525050565b61306b81613615565b82525050565b600061307d8286612d0a565b91506130898285612d0a565b91506130958284612d3b565b9150819050949350505050565b60006130ad82612fc7565b9150819050919050565b60006020820190506130cc6000830184612c1c565b92915050565b60006080820190506130e76000830187612c1c565b6130f46020830186612c1c565b6131016040830185613062565b81810360608301526131138184612c98565b905095945050505050565b600060208201905081810360008301526131388184612c2b565b905092915050565b60006020820190506131556000830184612c89565b92915050565b600060208201905081810360008301526131758184612cd1565b905092915050565b6000602082019050818103600083015261319681612dba565b9050919050565b600060208201905081810360008301526131b681612ddd565b9050919050565b600060208201905081810360008301526131d681612e00565b9050919050565b600060208201905081810360008301526131f681612e23565b9050919050565b6000602082019050818103600083015261321681612e46565b9050919050565b6000602082019050818103600083015261323681612e69565b9050919050565b6000602082019050818103600083015261325681612e8c565b9050919050565b6000602082019050818103600083015261327681612eaf565b9050919050565b6000602082019050818103600083015261329681612ed2565b9050919050565b600060208201905081810360008301526132b681612ef5565b9050919050565b600060208201905081810360008301526132d681612f18565b9050919050565b600060208201905081810360008301526132f681612f3b565b9050919050565b6000602082019050818103600083015261331681612f5e565b9050919050565b6000602082019050818103600083015261333681612f81565b9050919050565b6000602082019050818103600083015261335681612fa4565b9050919050565b6000602082019050818103600083015261337681612fea565b9050919050565b600060208201905081810360008301526133968161300d565b9050919050565b600060208201905081810360008301526133b681613030565b9050919050565b60006020820190506133d26000830184613062565b92915050565b60006133e26133f3565b90506133ee8282613693565b919050565b6000604051905090565b600067ffffffffffffffff821115613418576134176137c9565b5b6134218261380c565b9050602081019050919050565b600067ffffffffffffffff821115613449576134486137c9565b5b6134528261380c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061350682613615565b915061351183613615565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135465761354561370d565b5b828201905092915050565b600061355c82613615565b915061356783613615565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135a05761359f61370d565b5b828202905092915050565b60006135b6826135f5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561364c578082015181840152602081019050613631565b8381111561365b576000848401525b50505050565b6000600282049050600182168061367957607f821691505b6020821081141561368d5761368c61376b565b5b50919050565b61369c8261380c565b810181811067ffffffffffffffff821117156136bb576136ba6137c9565b5b80604052505050565b60006136cf82613615565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137025761370161370d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613c61816135ab565b8114613c6c57600080fd5b50565b613c78816135bd565b8114613c8357600080fd5b50565b613c8f816135c9565b8114613c9a57600080fd5b50565b613ca681613615565b8114613cb157600080fd5b5056fea264697066735822122054d606469daeed0b807f14bed34aa565f76ec2319229b5cac04392ddcdbda63564736f6c63430008070033
Deployed Bytecode Sourcemap
87833:4018:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42253:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43181:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44693:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44211:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88099:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90877:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90983:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88678:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45393:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91066:462;;;;;;;;;;;;;:::i;:::-;;45765:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89189:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90417:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90633:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88249:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88021:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88219:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87988:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42891:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42622:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21591:103;;;;;;;;;;;;;:::i;:::-;;90771:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20950:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88172:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43350:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88773:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44936:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88059:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90497:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45987:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89830:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88136:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90330:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45162:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89028:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21849:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42253:305;42355:4;42407:25;42392:40;;;:11;:40;;;;:105;;;;42464:33;42449:48;;;:11;:48;;;;42392:105;:158;;;;42514:36;42538:11;42514:23;:36::i;:::-;42392:158;42372:178;;42253:305;;;:::o;43181:100::-;43235:13;43268:5;43261:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43181:100;:::o;44693:171::-;44769:7;44789:23;44804:7;44789:14;:23::i;:::-;44832:15;:24;44848:7;44832:24;;;;;;;;;;;;;;;;;;;;;44825:31;;44693:171;;;:::o;44211:416::-;44292:13;44308:23;44323:7;44308:14;:23::i;:::-;44292:39;;44356:5;44350:11;;:2;:11;;;;44342:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44450:5;44434:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;44459:37;44476:5;44483:12;:10;:12::i;:::-;44459:16;:37::i;:::-;44434:62;44412:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;44598:21;44607:2;44611:7;44598:8;:21::i;:::-;44281:346;44211:416;;:::o;88099:32::-;;;;:::o;90877:100::-;20836:13;:11;:13::i;:::-;90961:10:::1;90949:9;:22;;;;;;;;;;;;:::i;:::-;;90877:100:::0;:::o;90983:77::-;20836:13;:11;:13::i;:::-;91048:6:::1;91039;;:15;;;;;;;;;;;;;;;;;;90983:77:::0;:::o;88678:89::-;88722:7;88745:16;:6;:14;:16::i;:::-;88738:23;;88678:89;:::o;45393:301::-;45554:41;45573:12;:10;:12::i;:::-;45587:7;45554:18;:41::i;:::-;45546:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45658:28;45668:4;45674:2;45678:7;45658:9;:28::i;:::-;45393:301;;;:::o;91066:462::-;20836:13;:11;:13::i;:::-;91350:7:::1;91371;:5;:7::i;:::-;91363:21;;91392;91363:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91349:69;;;91433:2;91425:11;;;::::0;::::1;;91103:425;91066:462::o:0;45765:151::-;45869:39;45886:4;45892:2;45896:7;45869:39;;;;;;;;;;;;:16;:39::i;:::-;45765:151;;;:::o;89189:635::-;89264:16;89292:23;89318:17;89328:6;89318:9;:17::i;:::-;89292:43;;89342:30;89389:15;89375:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89342:63;;89412:22;89437:1;89412:26;;89445:23;89481:309;89506:15;89488;:33;:64;;;;;89543:9;;89525:14;:27;;89488:64;89481:309;;;89563:25;89591:23;89599:14;89591:7;:23::i;:::-;89563:51;;89650:6;89629:27;;:17;:27;;;89625:131;;;89702:14;89669:13;89683:15;89669:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;89729:17;;;;;:::i;:::-;;;;89625:131;89766:16;;;;;:::i;:::-;;;;89554:236;89481:309;;;89805:13;89798:20;;;;;;89189:635;;;:::o;90417:74::-;20836:13;:11;:13::i;:::-;90480:5:::1;90473:4;:12;;;;90417:74:::0;:::o;90633:132::-;20836:13;:11;:13::i;:::-;90741:18:::1;90721:17;:38;;;;;;;;;;;;:::i;:::-;;90633:132:::0;:::o;88249:28::-;;;;;;;;;;;;;:::o;88021:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;88219:25::-;;;;;;;;;;;;;:::o;87988:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42891:223::-;42963:7;42983:13;42999:17;43008:7;42999:8;:17::i;:::-;42983:33;;43052:1;43035:19;;:5;:19;;;;43027:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;43101:5;43094:12;;;42891:223;;;:::o;42622:207::-;42694:7;42739:1;42722:19;;:5;:19;;;;42714:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42805:9;:16;42815:5;42805:16;;;;;;;;;;;;;;;;42798:23;;42622:207;;;:::o;21591:103::-;20836:13;:11;:13::i;:::-;21656:30:::1;21683:1;21656:18;:30::i;:::-;21591:103::o:0;90771:100::-;20836:13;:11;:13::i;:::-;90855:10:::1;90843:9;:22;;;;;;;;;;;;:::i;:::-;;90771:100:::0;:::o;20950:87::-;20996:7;21023:6;;;;;;;;;;;21016:13;;20950:87;:::o;88172:40::-;;;;:::o;43350:104::-;43406:13;43439:7;43432:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43350:104;:::o;88773:247::-;88838:11;88512:1;88498:11;:15;:52;;;;;88532:18;;88517:11;:33;;88498:52;88490:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;88624:9;;88609:11;88590:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;88582:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;88867:6:::1;;;;;;;;;;;88866:7;88858:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;88936:11;88929:4;;:18;;;;:::i;:::-;88916:9;:31;;88908:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;88980:34;88990:10;89002:11;88980:9;:34::i;:::-;88773:247:::0;;:::o;44936:155::-;45031:52;45050:12;:10;:12::i;:::-;45064:8;45074;45031:18;:52::i;:::-;44936:155;;:::o;88059:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;90497:130::-;20836:13;:11;:13::i;:::-;90602:19:::1;90581:18;:40;;;;90497:130:::0;:::o;45987:279::-;46118:41;46137:12;:10;:12::i;:::-;46151:7;46118:18;:41::i;:::-;46110:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;46220:38;46234:4;46240:2;46244:7;46253:4;46220:13;:38::i;:::-;45987:279;;;;:::o;89830:494::-;89929:13;89970:17;89978:8;89970:7;:17::i;:::-;89954:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;90077:5;90065:17;;:8;;;;;;;;;;;:17;;;90061:64;;;90100:17;90093:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90061:64;90133:28;90164:10;:8;:10::i;:::-;90133:41;;90219:1;90194:14;90188:28;:32;:130;;;;;;;;;;;;;;;;;90256:14;90272:19;:8;:17;:19::i;:::-;90293:9;90239:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;90188:130;90181:137;;;89830:494;;;;:::o;88136:31::-;;;;:::o;90330:81::-;20836:13;:11;:13::i;:::-;90399:6:::1;90388:8;;:17;;;;;;;;;;;;;;;;;;90330:81:::0;:::o;45162:164::-;45259:4;45283:18;:25;45302:5;45283:25;;;;;;;;;;;;;;;:35;45309:8;45283:35;;;;;;;;;;;;;;;;;;;;;;;;;45276:42;;45162:164;;;;:::o;89028:155::-;89114:11;88512:1;88498:11;:15;:52;;;;;88532:18;;88517:11;:33;;88498:52;88490:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;88624:9;;88609:11;88590:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;88582:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;20836:13:::1;:11;:13::i;:::-;89144:33:::2;89154:9;89165:11;89144:9;:33::i;:::-;89028:155:::0;;;:::o;21849:201::-;20836:13;:11;:13::i;:::-;21958:1:::1;21938:22;;:8;:22;;;;21930:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22014:28;22033:8;22014:18;:28::i;:::-;21849:201:::0;:::o;34877:157::-;34962:4;35001:25;34986:40;;;:11;:40;;;;34979:47;;34877:157;;;:::o;54256:135::-;54338:16;54346:7;54338;:16::i;:::-;54330:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;54256:135;:::o;19501:98::-;19554:7;19581:10;19574:17;;19501:98;:::o;53569:174::-;53671:2;53644:15;:24;53660:7;53644:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;53727:7;53723:2;53689:46;;53698:23;53713:7;53698:14;:23::i;:::-;53689:46;;;;;;;;;;;;53569:174;;:::o;21115:132::-;21190:12;:10;:12::i;:::-;21179:23;;:7;:5;:7::i;:::-;:23;;;21171:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21115:132::o;907:114::-;972:7;999;:14;;;992:21;;907:114;;;:::o;48256:264::-;48349:4;48366:13;48382:23;48397:7;48382:14;:23::i;:::-;48366:39;;48435:5;48424:16;;:7;:16;;;:52;;;;48444:32;48461:5;48468:7;48444:16;:32::i;:::-;48424:52;:87;;;;48504:7;48480:31;;:20;48492:7;48480:11;:20::i;:::-;:31;;;48424:87;48416:96;;;48256:264;;;;:::o;52221:1229::-;52346:4;52319:31;;:23;52334:7;52319:14;:23::i;:::-;:31;;;52311:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;52425:1;52411:16;;:2;:16;;;;52403:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;52481:42;52502:4;52508:2;52512:7;52521:1;52481:20;:42::i;:::-;52653:4;52626:31;;:23;52641:7;52626:14;:23::i;:::-;:31;;;52618:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;52771:15;:24;52787:7;52771:24;;;;;;;;;;;;52764:31;;;;;;;;;;;53266:1;53247:9;:15;53257:4;53247:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;53299:1;53282:9;:13;53292:2;53282:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;53341:2;53322:7;:16;53330:7;53322:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;53380:7;53376:2;53361:27;;53370:4;53361:27;;;;;;;;;;;;53401:41;53421:4;53427:2;53431:7;53440:1;53401:19;:41::i;:::-;52221:1229;;;:::o;47531:117::-;47597:7;47624;:16;47632:7;47624:16;;;;;;;;;;;;;;;;;;;;;47617:23;;47531:117;;;:::o;22210:191::-;22284:16;22303:6;;;;;;;;;;;22284:25;;22329:8;22320:6;;:17;;;;;;;;;;;;;;;;;;22384:8;22353:40;;22374:8;22353:40;;;;;;;;;;;;22273:128;22210:191;:::o;91534:204::-;91614:9;91609:124;91633:11;91629:1;:15;91609:124;;;91660:18;:6;:16;:18::i;:::-;91687:38;91697:9;91708:16;:6;:14;:16::i;:::-;91687:9;:38::i;:::-;91646:3;;;;;:::i;:::-;;;;91609:124;;;;91534:204;;:::o;53886:281::-;54007:8;53998:17;;:5;:17;;;;53990:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;54094:8;54056:18;:25;54075:5;54056:25;;;;;;;;;;;;;;;:35;54082:8;54056:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;54140:8;54118:41;;54133:5;54118:41;;;54150:8;54118:41;;;;;;:::i;:::-;;;;;;;;53886:281;;;:::o;47147:270::-;47260:28;47270:4;47276:2;47280:7;47260:9;:28::i;:::-;47307:47;47330:4;47336:2;47340:7;47349:4;47307:22;:47::i;:::-;47299:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;47147:270;;;;:::o;47961:128::-;48026:4;48079:1;48050:31;;:17;48059:7;48050:8;:17::i;:::-;:31;;;;48043:38;;47961:128;;;:::o;91744:104::-;91804:13;91833:9;91826:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91744:104;:::o;16420:716::-;16476:13;16527:14;16564:1;16544:17;16555:5;16544:10;:17::i;:::-;:21;16527:38;;16580:20;16614:6;16603:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16580:41;;16636:11;16765:6;16761:2;16757:15;16749:6;16745:28;16738:35;;16802:288;16809:4;16802:288;;;16834:5;;;;;;;;16976:8;16971:2;16964:5;16960:14;16955:30;16950:3;16942:44;17032:2;17023:11;;;;;;:::i;:::-;;;;;17066:1;17057:5;:10;17053:21;;;17069:5;;17053:21;16802:288;;;17111:6;17104:13;;;;;16420:716;;;:::o;56540:116::-;;;;;:::o;57378:115::-;;;;;:::o;1029:127::-;1136:1;1118:7;:14;;;:19;;;;;;;;;;;1029:127;:::o;48862:110::-;48938:26;48948:2;48952:7;48938:26;;;;;;;;;;;;:9;:26::i;:::-;48862:110;;:::o;54955:853::-;55109:4;55130:15;:2;:13;;;:15::i;:::-;55126:675;;;55182:2;55166:36;;;55203:12;:10;:12::i;:::-;55217:4;55223:7;55232:4;55166:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55162:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55424:1;55407:6;:13;:18;55403:328;;;55450:60;;;;;;;;;;:::i;:::-;;;;;;;;55403:328;55681:6;55675:13;55666:6;55662:2;55658:15;55651:38;55162:584;55298:41;;;55288:51;;;:6;:51;;;;55281:58;;;;;55126:675;55785:4;55778:11;;54955:853;;;;;;;:::o;13254:948::-;13307:7;13327:14;13344:1;13327:18;;13394:8;13385:5;:17;13381:106;;13432:8;13423:17;;;;;;:::i;:::-;;;;;13469:2;13459:12;;;;13381:106;13514:8;13505:5;:17;13501:106;;13552:8;13543:17;;;;;;:::i;:::-;;;;;13589:2;13579:12;;;;13501:106;13634:8;13625:5;:17;13621:106;;13672:8;13663:17;;;;;;:::i;:::-;;;;;13709:2;13699:12;;;;13621:106;13754:7;13745:5;:16;13741:103;;13791:7;13782:16;;;;;;:::i;:::-;;;;;13827:1;13817:11;;;;13741:103;13871:7;13862:5;:16;13858:103;;13908:7;13899:16;;;;;;:::i;:::-;;;;;13944:1;13934:11;;;;13858:103;13988:7;13979:5;:16;13975:103;;14025:7;14016:16;;;;;;:::i;:::-;;;;;14061:1;14051:11;;;;13975:103;14105:7;14096:5;:16;14092:68;;14143:1;14133:11;;;;14092:68;14188:6;14181:13;;;13254:948;;;:::o;49199:285::-;49294:18;49300:2;49304:7;49294:5;:18::i;:::-;49345:53;49376:1;49380:2;49384:7;49393:4;49345:22;:53::i;:::-;49323:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;49199:285;;;:::o;23882:326::-;23942:4;24199:1;24177:7;:19;;;:23;24170:30;;23882:326;;;:::o;49820:942::-;49914:1;49900:16;;:2;:16;;;;49892:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49973:16;49981:7;49973;:16::i;:::-;49972:17;49964:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50035:48;50064:1;50068:2;50072:7;50081:1;50035:20;:48::i;:::-;50182:16;50190:7;50182;:16::i;:::-;50181:17;50173:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50597:1;50580:9;:13;50590:2;50580:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;50641:2;50622:7;:16;50630:7;50622:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;50686:7;50682:2;50661:33;;50678:1;50661:33;;;;;;;;;;;;50707:47;50735:1;50739:2;50743:7;50752:1;50707:19;:47::i;:::-;49820:942;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:::-;14643:3;14664:67;14728:2;14723:3;14664:67;:::i;:::-;14657:74;;14740:93;14829:3;14740:93;:::i;:::-;14858:2;14853:3;14849:12;14842:19;;14501:366;;;:::o;14873:::-;15015:3;15036:67;15100:2;15095:3;15036:67;:::i;:::-;15029:74;;15112:93;15201:3;15112:93;:::i;:::-;15230:2;15225:3;15221:12;15214:19;;14873:366;;;:::o;15245:::-;15387:3;15408:67;15472:2;15467:3;15408:67;:::i;:::-;15401:74;;15484:93;15573:3;15484:93;:::i;:::-;15602:2;15597:3;15593:12;15586:19;;15245:366;;;:::o;15617:::-;15759:3;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15856:93;15945:3;15856:93;:::i;:::-;15974:2;15969:3;15965:12;15958:19;;15617:366;;;:::o;15989:::-;16131:3;16152:67;16216:2;16211:3;16152:67;:::i;:::-;16145:74;;16228:93;16317:3;16228:93;:::i;:::-;16346:2;16341:3;16337:12;16330:19;;15989:366;;;:::o;16361:::-;16503:3;16524:67;16588:2;16583:3;16524:67;:::i;:::-;16517:74;;16600:93;16689:3;16600:93;:::i;:::-;16718:2;16713:3;16709:12;16702:19;;16361:366;;;:::o;16733:398::-;16892:3;16913:83;16994:1;16989:3;16913:83;:::i;:::-;16906:90;;17005:93;17094:3;17005:93;:::i;:::-;17123:1;17118:3;17114:11;17107:18;;16733:398;;;:::o;17137:366::-;17279:3;17300:67;17364:2;17359:3;17300:67;:::i;:::-;17293:74;;17376:93;17465:3;17376:93;:::i;:::-;17494:2;17489:3;17485:12;17478:19;;17137:366;;;:::o;17509:::-;17651:3;17672:67;17736:2;17731:3;17672:67;:::i;:::-;17665:74;;17748:93;17837:3;17748:93;:::i;:::-;17866:2;17861:3;17857:12;17850:19;;17509:366;;;:::o;17881:::-;18023:3;18044:67;18108:2;18103:3;18044:67;:::i;:::-;18037:74;;18120:93;18209:3;18120:93;:::i;:::-;18238:2;18233:3;18229:12;18222:19;;17881:366;;;:::o;18253:108::-;18330:24;18348:5;18330:24;:::i;:::-;18325:3;18318:37;18253:108;;:::o;18367:118::-;18454:24;18472:5;18454:24;:::i;:::-;18449:3;18442:37;18367:118;;:::o;18491:589::-;18716:3;18738:95;18829:3;18820:6;18738:95;:::i;:::-;18731:102;;18850:95;18941:3;18932:6;18850:95;:::i;:::-;18843:102;;18962:92;19050:3;19041:6;18962:92;:::i;:::-;18955:99;;19071:3;19064:10;;18491:589;;;;;;:::o;19086:379::-;19270:3;19292:147;19435:3;19292:147;:::i;:::-;19285:154;;19456:3;19449:10;;19086:379;;;:::o;19471:222::-;19564:4;19602:2;19591:9;19587:18;19579:26;;19615:71;19683:1;19672:9;19668:17;19659:6;19615:71;:::i;:::-;19471:222;;;;:::o;19699:640::-;19894:4;19932:3;19921:9;19917:19;19909:27;;19946:71;20014:1;20003:9;19999:17;19990:6;19946:71;:::i;:::-;20027:72;20095:2;20084:9;20080:18;20071:6;20027:72;:::i;:::-;20109;20177:2;20166:9;20162:18;20153:6;20109:72;:::i;:::-;20228:9;20222:4;20218:20;20213:2;20202:9;20198:18;20191:48;20256:76;20327:4;20318:6;20256:76;:::i;:::-;20248:84;;19699:640;;;;;;;:::o;20345:373::-;20488:4;20526:2;20515:9;20511:18;20503:26;;20575:9;20569:4;20565:20;20561:1;20550:9;20546:17;20539:47;20603:108;20706:4;20697:6;20603:108;:::i;:::-;20595:116;;20345:373;;;;:::o;20724:210::-;20811:4;20849:2;20838:9;20834:18;20826:26;;20862:65;20924:1;20913:9;20909:17;20900:6;20862:65;:::i;:::-;20724:210;;;;:::o;20940:313::-;21053:4;21091:2;21080:9;21076:18;21068:26;;21140:9;21134:4;21130:20;21126:1;21115:9;21111:17;21104:47;21168:78;21241:4;21232:6;21168:78;:::i;:::-;21160:86;;20940:313;;;;:::o;21259:419::-;21425:4;21463:2;21452:9;21448:18;21440:26;;21512:9;21506:4;21502:20;21498:1;21487:9;21483:17;21476:47;21540:131;21666:4;21540:131;:::i;:::-;21532:139;;21259:419;;;:::o;21684:::-;21850:4;21888:2;21877:9;21873:18;21865:26;;21937:9;21931:4;21927:20;21923:1;21912:9;21908:17;21901:47;21965:131;22091:4;21965:131;:::i;:::-;21957:139;;21684:419;;;:::o;22109:::-;22275:4;22313:2;22302:9;22298:18;22290:26;;22362:9;22356:4;22352:20;22348:1;22337:9;22333:17;22326:47;22390:131;22516:4;22390:131;:::i;:::-;22382:139;;22109:419;;;:::o;22534:::-;22700:4;22738:2;22727:9;22723:18;22715:26;;22787:9;22781:4;22777:20;22773:1;22762:9;22758:17;22751:47;22815:131;22941:4;22815:131;:::i;:::-;22807:139;;22534:419;;;:::o;22959:::-;23125:4;23163:2;23152:9;23148:18;23140:26;;23212:9;23206:4;23202:20;23198:1;23187:9;23183:17;23176:47;23240:131;23366:4;23240:131;:::i;:::-;23232:139;;22959:419;;;:::o;23384:::-;23550:4;23588:2;23577:9;23573:18;23565:26;;23637:9;23631:4;23627:20;23623:1;23612:9;23608:17;23601:47;23665:131;23791:4;23665:131;:::i;:::-;23657:139;;23384:419;;;:::o;23809:::-;23975:4;24013:2;24002:9;23998:18;23990:26;;24062:9;24056:4;24052:20;24048:1;24037:9;24033:17;24026:47;24090:131;24216:4;24090:131;:::i;:::-;24082:139;;23809:419;;;:::o;24234:::-;24400:4;24438:2;24427:9;24423:18;24415:26;;24487:9;24481:4;24477:20;24473:1;24462:9;24458:17;24451:47;24515:131;24641:4;24515:131;:::i;:::-;24507:139;;24234:419;;;:::o;24659:::-;24825:4;24863:2;24852:9;24848:18;24840:26;;24912:9;24906:4;24902:20;24898:1;24887:9;24883:17;24876:47;24940:131;25066:4;24940:131;:::i;:::-;24932:139;;24659:419;;;:::o;25084:::-;25250:4;25288:2;25277:9;25273:18;25265:26;;25337:9;25331:4;25327:20;25323:1;25312:9;25308:17;25301:47;25365:131;25491:4;25365:131;:::i;:::-;25357:139;;25084:419;;;:::o;25509:::-;25675:4;25713:2;25702:9;25698:18;25690:26;;25762:9;25756:4;25752:20;25748:1;25737:9;25733:17;25726:47;25790:131;25916:4;25790:131;:::i;:::-;25782:139;;25509:419;;;:::o;25934:::-;26100:4;26138:2;26127:9;26123:18;26115:26;;26187:9;26181:4;26177:20;26173:1;26162:9;26158:17;26151:47;26215:131;26341:4;26215:131;:::i;:::-;26207:139;;25934:419;;;:::o;26359:::-;26525:4;26563:2;26552:9;26548:18;26540:26;;26612:9;26606:4;26602:20;26598:1;26587:9;26583:17;26576:47;26640:131;26766:4;26640:131;:::i;:::-;26632:139;;26359:419;;;:::o;26784:::-;26950:4;26988:2;26977:9;26973:18;26965:26;;27037:9;27031:4;27027:20;27023:1;27012:9;27008:17;27001:47;27065:131;27191:4;27065:131;:::i;:::-;27057:139;;26784:419;;;:::o;27209:::-;27375:4;27413:2;27402:9;27398:18;27390:26;;27462:9;27456:4;27452:20;27448:1;27437:9;27433:17;27426:47;27490:131;27616:4;27490:131;:::i;:::-;27482:139;;27209:419;;;:::o;27634:::-;27800:4;27838:2;27827:9;27823:18;27815:26;;27887:9;27881:4;27877:20;27873:1;27862:9;27858:17;27851:47;27915:131;28041:4;27915:131;:::i;:::-;27907:139;;27634:419;;;:::o;28059:::-;28225:4;28263:2;28252:9;28248:18;28240:26;;28312:9;28306:4;28302:20;28298:1;28287:9;28283:17;28276:47;28340:131;28466:4;28340:131;:::i;:::-;28332:139;;28059:419;;;:::o;28484:::-;28650:4;28688:2;28677:9;28673:18;28665:26;;28737:9;28731:4;28727:20;28723:1;28712:9;28708:17;28701:47;28765:131;28891:4;28765:131;:::i;:::-;28757:139;;28484:419;;;:::o;28909:222::-;29002:4;29040:2;29029:9;29025:18;29017:26;;29053:71;29121:1;29110:9;29106:17;29097:6;29053:71;:::i;:::-;28909:222;;;;:::o;29137:129::-;29171:6;29198:20;;:::i;:::-;29188:30;;29227:33;29255:4;29247:6;29227:33;:::i;:::-;29137:129;;;:::o;29272:75::-;29305:6;29338:2;29332:9;29322:19;;29272:75;:::o;29353:307::-;29414:4;29504:18;29496:6;29493:30;29490:56;;;29526:18;;:::i;:::-;29490:56;29564:29;29586:6;29564:29;:::i;:::-;29556:37;;29648:4;29642;29638:15;29630:23;;29353:307;;;:::o;29666:308::-;29728:4;29818:18;29810:6;29807:30;29804:56;;;29840:18;;:::i;:::-;29804:56;29878:29;29900:6;29878:29;:::i;:::-;29870:37;;29962:4;29956;29952:15;29944:23;;29666:308;;;:::o;29980:132::-;30047:4;30070:3;30062:11;;30100:4;30095:3;30091:14;30083:22;;29980:132;;;:::o;30118:141::-;30167:4;30190:3;30182:11;;30213:3;30210:1;30203:14;30247:4;30244:1;30234:18;30226:26;;30118:141;;;:::o;30265:114::-;30332:6;30366:5;30360:12;30350:22;;30265:114;;;:::o;30385:98::-;30436:6;30470:5;30464:12;30454:22;;30385:98;;;:::o;30489:99::-;30541:6;30575:5;30569:12;30559:22;;30489:99;;;:::o;30594:113::-;30664:4;30696;30691:3;30687:14;30679:22;;30594:113;;;:::o;30713:184::-;30812:11;30846:6;30841:3;30834:19;30886:4;30881:3;30877:14;30862:29;;30713:184;;;;:::o;30903:168::-;30986:11;31020:6;31015:3;31008:19;31060:4;31055:3;31051:14;31036:29;;30903:168;;;;:::o;31077:147::-;31178:11;31215:3;31200:18;;31077:147;;;;:::o;31230:169::-;31314:11;31348:6;31343:3;31336:19;31388:4;31383:3;31379:14;31364:29;;31230:169;;;;:::o;31405:148::-;31507:11;31544:3;31529:18;;31405:148;;;;:::o;31559:305::-;31599:3;31618:20;31636:1;31618:20;:::i;:::-;31613:25;;31652:20;31670:1;31652:20;:::i;:::-;31647:25;;31806:1;31738:66;31734:74;31731:1;31728:81;31725:107;;;31812:18;;:::i;:::-;31725:107;31856:1;31853;31849:9;31842:16;;31559:305;;;;:::o;31870:348::-;31910:7;31933:20;31951:1;31933:20;:::i;:::-;31928:25;;31967:20;31985:1;31967:20;:::i;:::-;31962:25;;32155:1;32087:66;32083:74;32080:1;32077:81;32072:1;32065:9;32058:17;32054:105;32051:131;;;32162:18;;:::i;:::-;32051:131;32210:1;32207;32203:9;32192:20;;31870:348;;;;:::o;32224:96::-;32261:7;32290:24;32308:5;32290:24;:::i;:::-;32279:35;;32224:96;;;:::o;32326:90::-;32360:7;32403:5;32396:13;32389:21;32378:32;;32326:90;;;:::o;32422:149::-;32458:7;32498:66;32491:5;32487:78;32476:89;;32422:149;;;:::o;32577:126::-;32614:7;32654:42;32647:5;32643:54;32632:65;;32577:126;;;:::o;32709:77::-;32746:7;32775:5;32764:16;;32709:77;;;:::o;32792:154::-;32876:6;32871:3;32866;32853:30;32938:1;32929:6;32924:3;32920:16;32913:27;32792:154;;;:::o;32952:307::-;33020:1;33030:113;33044:6;33041:1;33038:13;33030:113;;;33129:1;33124:3;33120:11;33114:18;33110:1;33105:3;33101:11;33094:39;33066:2;33063:1;33059:10;33054:15;;33030:113;;;33161:6;33158:1;33155:13;33152:101;;;33241:1;33232:6;33227:3;33223:16;33216:27;33152:101;33001:258;32952:307;;;:::o;33265:320::-;33309:6;33346:1;33340:4;33336:12;33326:22;;33393:1;33387:4;33383:12;33414:18;33404:81;;33470:4;33462:6;33458:17;33448:27;;33404:81;33532:2;33524:6;33521:14;33501:18;33498:38;33495:84;;;33551:18;;:::i;:::-;33495:84;33316:269;33265:320;;;:::o;33591:281::-;33674:27;33696:4;33674:27;:::i;:::-;33666:6;33662:40;33804:6;33792:10;33789:22;33768:18;33756:10;33753:34;33750:62;33747:88;;;33815:18;;:::i;:::-;33747:88;33855:10;33851:2;33844:22;33634:238;33591:281;;:::o;33878:233::-;33917:3;33940:24;33958:5;33940:24;:::i;:::-;33931:33;;33986:66;33979:5;33976:77;33973:103;;;34056:18;;:::i;:::-;33973:103;34103:1;34096:5;34092:13;34085:20;;33878:233;;;:::o;34117:180::-;34165:77;34162:1;34155:88;34262:4;34259:1;34252:15;34286:4;34283:1;34276:15;34303:180;34351:77;34348:1;34341:88;34448:4;34445:1;34438:15;34472:4;34469:1;34462:15;34489:180;34537:77;34534:1;34527:88;34634:4;34631:1;34624:15;34658:4;34655:1;34648:15;34675:180;34723:77;34720:1;34713:88;34820:4;34817:1;34810:15;34844:4;34841:1;34834:15;34861:180;34909:77;34906:1;34899:88;35006:4;35003:1;34996:15;35030:4;35027:1;35020:15;35047:117;35156:1;35153;35146:12;35170:117;35279:1;35276;35269:12;35293:117;35402:1;35399;35392:12;35416:117;35525:1;35522;35515:12;35539:102;35580:6;35631:2;35627:7;35622:2;35615:5;35611:14;35607:28;35597:38;;35539:102;;;:::o;35647:232::-;35787:34;35783:1;35775:6;35771:14;35764:58;35856:15;35851:2;35843:6;35839:15;35832:40;35647:232;:::o;35885:237::-;36025:34;36021:1;36013:6;36009:14;36002:58;36094:20;36089:2;36081:6;36077:15;36070:45;35885:237;:::o;36128:225::-;36268:34;36264:1;36256:6;36252:14;36245:58;36337:8;36332:2;36324:6;36320:15;36313:33;36128:225;:::o;36359:224::-;36499:34;36495:1;36487:6;36483:14;36476:58;36568:7;36563:2;36555:6;36551:15;36544:32;36359:224;:::o;36589:178::-;36729:30;36725:1;36717:6;36713:14;36706:54;36589:178;:::o;36773:170::-;36913:22;36909:1;36901:6;36897:14;36890:46;36773:170;:::o;36949:223::-;37089:34;37085:1;37077:6;37073:14;37066:58;37158:6;37153:2;37145:6;37141:15;37134:31;36949:223;:::o;37178:175::-;37318:27;37314:1;37306:6;37302:14;37295:51;37178:175;:::o;37359:228::-;37499:34;37495:1;37487:6;37483:14;37476:58;37568:11;37563:2;37555:6;37551:15;37544:36;37359:228;:::o;37593:182::-;37733:34;37729:1;37721:6;37717:14;37710:58;37593:182;:::o;37781:::-;37921:34;37917:1;37909:6;37905:14;37898:58;37781:182;:::o;37969:173::-;38109:25;38105:1;38097:6;38093:14;38086:49;37969:173;:::o;38148:234::-;38288:34;38284:1;38276:6;38272:14;38265:58;38357:17;38352:2;38344:6;38340:15;38333:42;38148:234;:::o;38388:174::-;38528:26;38524:1;38516:6;38512:14;38505:50;38388:174;:::o;38568:220::-;38708:34;38704:1;38696:6;38692:14;38685:58;38777:3;38772:2;38764:6;38760:15;38753:28;38568:220;:::o;38794:114::-;;:::o;38914:170::-;39054:22;39050:1;39042:6;39038:14;39031:46;38914:170;:::o;39090:248::-;39230:34;39226:1;39218:6;39214:14;39207:58;39299:31;39294:2;39286:6;39282:15;39275:56;39090:248;:::o;39344:169::-;39484:21;39480:1;39472:6;39468:14;39461:45;39344:169;:::o;39519:122::-;39592:24;39610:5;39592:24;:::i;:::-;39585:5;39582:35;39572:63;;39631:1;39628;39621:12;39572:63;39519:122;:::o;39647:116::-;39717:21;39732:5;39717:21;:::i;:::-;39710:5;39707:32;39697:60;;39753:1;39750;39743:12;39697:60;39647:116;:::o;39769:120::-;39841:23;39858:5;39841:23;:::i;:::-;39834:5;39831:34;39821:62;;39879:1;39876;39869:12;39821:62;39769:120;:::o;39895:122::-;39968:24;39986:5;39968:24;:::i;:::-;39961:5;39958:35;39948:63;;40007:1;40004;39997:12;39948:63;39895:122;:::o
Swarm Source
ipfs://54d606469daeed0b807f14bed34aa565f76ec2319229b5cac04392ddcdbda635
Loading...
Loading
Loading...
Loading
OVERVIEW
Immerse yourself in the vibrant world of Cubism Charm, blending modern, abstract, and contemporary styles with a whimsical, bohemian touch. Revel in the rich patterns and colorful explosions, with texture intricately interwoven into each stroke.This captivating NFT series boas...Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.