Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 19 from a total of 19 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Whitelist | 19169377 | 773 days ago | IN | 0 ETH | 0.00212963 | ||||
| Approve | 19169347 | 773 days ago | IN | 0 ETH | 0.00199928 | ||||
| Set Whitelist | 19169343 | 773 days ago | IN | 0 ETH | 0.00196413 | ||||
| Set Whitelist | 19168992 | 773 days ago | IN | 0 ETH | 0.00142091 | ||||
| Set Whitelist | 19168990 | 773 days ago | IN | 0 ETH | 0.00150483 | ||||
| Approve | 19168983 | 773 days ago | IN | 0 ETH | 0.00138754 | ||||
| Set Whitelist | 19168976 | 773 days ago | IN | 0 ETH | 0.001315 | ||||
| Set Whitelist | 19168975 | 773 days ago | IN | 0 ETH | 0.00134016 | ||||
| Set Whitelist | 19168956 | 773 days ago | IN | 0 ETH | 0.00098758 | ||||
| Approve | 19168942 | 773 days ago | IN | 0 ETH | 0.00214579 | ||||
| Set Whitelist | 19168930 | 773 days ago | IN | 0 ETH | 0.00113473 | ||||
| Set Whitelist | 19168921 | 773 days ago | IN | 0 ETH | 0.00181062 | ||||
| Approve | 19168892 | 773 days ago | IN | 0 ETH | 0.00170734 | ||||
| Approve | 19168892 | 773 days ago | IN | 0 ETH | 0.00170734 | ||||
| Approve | 19168892 | 773 days ago | IN | 0 ETH | 0.00318388 | ||||
| Set Whitelist | 19168890 | 773 days ago | IN | 0 ETH | 0.00135636 | ||||
| Set Whitelist | 19168888 | 773 days ago | IN | 0 ETH | 0.00107253 | ||||
| Approve | 19168888 | 773 days ago | IN | 0 ETH | 0.00112583 | ||||
| Set Token URI | 19168872 | 773 days ago | IN | 0 ETH | 0.00395855 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
DOTSERC404
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2024-02-06
*/
//A meme collection 1,000,000,000 enabled by ERC404,
//Telegram: https://t.me/dotserc404portal
// File: @openzeppelin/contracts/utils/math/SignedMath.sol
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}
// File: @openzeppelin/contracts/utils/math/Math.sol
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Muldiv operation overflow.
*/
error MathOverflowedMulDiv();
enum Rounding {
Floor, // Toward negative infinity
Ceil, // Toward positive infinity
Trunc, // Toward zero
Expand // Away from zero
}
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds towards infinity instead
* of rounding towards zero.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
if (b == 0) {
// Guarantee the same behavior as in a regular Solidity division.
return a / b;
}
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
* denominator == 0.
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
* Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0 = x * y; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
if (denominator <= prod1) {
revert MathOverflowedMulDiv();
}
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator.
// Always >= 1. See https://cs.stackexchange.com/q/138556/92363.
uint256 twos = denominator & (0 - denominator);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
// works in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
* towards zero.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256 of a positive value rounded towards zero.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
}
}
/**
* @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
*/
function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
return uint8(rounding) % 2 == 1;
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)
pragma solidity ^0.8.20;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant HEX_DIGITS = "0123456789abcdef";
uint8 private constant ADDRESS_LENGTH = 20;
/**
* @dev The `value` string doesn't fit in the specified `length`.
*/
error StringsInsufficientHexLength(uint256 value, uint256 length);
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toStringSigned(int256 value) internal pure returns (string memory) {
return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
uint256 localValue = value;
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = HEX_DIGITS[localValue & 0xf];
localValue >>= 4;
}
if (localValue != 0) {
revert StringsInsufficientHexLength(value, length);
}
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
* representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
}
}
// File: dots/ERC404.sol
pragma solidity ^0.8.0;
abstract contract Ownable {
event OwnershipTransferred(address indexed user, address indexed newOwner);
error Unauthorized();
error InvalidOwner();
address public owner;
modifier onlyOwner() virtual {
if (msg.sender != owner) revert Unauthorized();
_;
}
constructor(address _owner) {
if (_owner == address(0)) revert InvalidOwner();
owner = _owner;
emit OwnershipTransferred(address(0), _owner);
}
function transferOwnership(address _owner) public virtual onlyOwner {
if (_owner == address(0)) revert InvalidOwner();
owner = _owner;
emit OwnershipTransferred(msg.sender, _owner);
}
function revokeOwnership() public virtual onlyOwner {
owner = address(0);
emit OwnershipTransferred(msg.sender, address(0));
}
}
abstract contract ERC721Receiver {
function onERC721Received(
address,
address,
uint256,
bytes calldata
) external virtual returns (bytes4) {
return ERC721Receiver.onERC721Received.selector;
}
}
/// @notice ERC404
/// A gas-efficient, mixed ERC20 / ERC721 implementation
/// with native liquidity and fractionalization.
///
/// This is an experimental standard designed to integrate
/// with pre-existing ERC20 / ERC721 support as smoothly as
/// possible.
///
/// @dev In order to support full functionality of ERC20 and ERC721
/// supply assumptions are made that slightly constraint usage.
/// Ensure decimals are sufficiently large (standard 18 recommended)
/// as ids are effectively encoded in the lowest range of amounts.
///
/// NFTs are spent on ERC20 functions in a FILO queue, this is by
/// design.
///
abstract contract ERC404 is Ownable {
// Events
event ERC20Transfer(
address indexed from,
address indexed to,
uint256 amount
);
event Approval(
address indexed owner,
address indexed spender,
uint256 amount
);
event Transfer(
address indexed from,
address indexed to,
uint256 indexed id
);
event ERC721Approval(
address indexed owner,
address indexed spender,
uint256 indexed id
);
event ApprovalForAll(
address indexed owner,
address indexed operator,
bool approved
);
// Errors
error NotFound();
error AlreadyExists();
error InvalidRecipient();
error InvalidSender();
error UnsafeRecipient();
// Metadata
/// @dev Token name
string public name;
/// @dev Token symbol
string public symbol;
/// @dev Decimals for fractional representation
uint8 public immutable decimals;
/// @dev Total supply in fractionalized representation
uint256 public immutable totalSupply;
/// @dev Current mint counter, monotonically increasing to ensure accurate ownership
uint256 public minted;
// Mappings
/// @dev Balance of user in fractional representation
mapping(address => uint256) public balanceOf;
/// @dev Allowance of user in fractional representation
mapping(address => mapping(address => uint256)) public allowance;
/// @dev Approval in native representaion
mapping(uint256 => address) public getApproved;
/// @dev Approval for all in native representation
mapping(address => mapping(address => bool)) public isApprovedForAll;
/// @dev Owner of id in native representation
mapping(uint256 => address) internal _ownerOf;
/// @dev Array of owned ids in native representation
mapping(address => uint256[]) internal _owned;
/// @dev Tracks indices for the _owned mapping
mapping(uint256 => uint256) internal _ownedIndex;
/// @dev Addresses whitelisted from minting / burning for gas savings (pairs, routers, etc)
mapping(address => bool) public whitelist;
// Constructor
constructor(
string memory _name,
string memory _symbol,
uint8 _decimals,
uint256 _totalNativeSupply,
address _owner
) Ownable(_owner) {
name = _name;
symbol = _symbol;
decimals = _decimals;
totalSupply = _totalNativeSupply * (10 ** decimals);
}
/// @notice Initialization function to set pairs / etc
/// saving gas by avoiding mint / burn on unnecessary targets
function setWhitelist(address target, bool state) public onlyOwner {
whitelist[target] = state;
}
/// @notice Function to find owner of a given native token
function ownerOf(uint256 id) public view virtual returns (address owner) {
owner = _ownerOf[id];
if (owner == address(0)) {
revert NotFound();
}
}
/// @notice tokenURI must be implemented by child contract
function tokenURI(uint256 id) public view virtual returns (string memory);
/// @notice Function for token approvals
/// @dev This function assumes id / native if amount less than or equal to current max id
function approve(
address spender,
uint256 amountOrId
) public virtual returns (bool) {
if (amountOrId <= minted && amountOrId > 0) {
address owner = _ownerOf[amountOrId];
if (msg.sender != owner && !isApprovedForAll[owner][msg.sender]) {
revert Unauthorized();
}
getApproved[amountOrId] = spender;
emit Approval(owner, spender, amountOrId);
} else {
allowance[msg.sender][spender] = amountOrId;
emit Approval(msg.sender, spender, amountOrId);
}
return true;
}
/// @notice Function native approvals
function setApprovalForAll(address operator, bool approved) public virtual {
isApprovedForAll[msg.sender][operator] = approved;
emit ApprovalForAll(msg.sender, operator, approved);
}
/// @notice Function for mixed transfers
/// @dev This function assumes id / native if amount less than or equal to current max id
function transferFrom(
address from,
address to,
uint256 amountOrId
) public virtual {
if (amountOrId <= minted) {
if (from != _ownerOf[amountOrId]) {
revert InvalidSender();
}
if (to == address(0)) {
revert InvalidRecipient();
}
if (
msg.sender != from &&
!isApprovedForAll[from][msg.sender] &&
msg.sender != getApproved[amountOrId]
) {
revert Unauthorized();
}
balanceOf[from] -= _getUnit();
unchecked {
balanceOf[to] += _getUnit();
}
_ownerOf[amountOrId] = to;
delete getApproved[amountOrId];
// update _owned for sender
uint256 updatedId = _owned[from][_owned[from].length - 1];
_owned[from][_ownedIndex[amountOrId]] = updatedId;
// pop
_owned[from].pop();
// update index for the moved id
_ownedIndex[updatedId] = _ownedIndex[amountOrId];
// push token to to owned
_owned[to].push(amountOrId);
// update index for to owned
_ownedIndex[amountOrId] = _owned[to].length - 1;
emit Transfer(from, to, amountOrId);
emit ERC20Transfer(from, to, _getUnit());
} else {
uint256 allowed = allowance[from][msg.sender];
if (allowed != type(uint256).max)
allowance[from][msg.sender] = allowed - amountOrId;
_transfer(from, to, amountOrId);
}
}
/// @notice Function for fractional transfers
function transfer(
address to,
uint256 amount
) public virtual returns (bool) {
return _transfer(msg.sender, to, amount);
}
/// @notice Function for native transfers with contract support
function safeTransferFrom(
address from,
address to,
uint256 id
) public virtual {
transferFrom(from, to, id);
if (
to.code.length != 0 &&
ERC721Receiver(to).onERC721Received(msg.sender, from, id, "") !=
ERC721Receiver.onERC721Received.selector
) {
revert UnsafeRecipient();
}
}
/// @notice Function for native transfers with contract support and callback data
function safeTransferFrom(
address from,
address to,
uint256 id,
bytes calldata data
) public virtual {
transferFrom(from, to, id);
if (
to.code.length != 0 &&
ERC721Receiver(to).onERC721Received(msg.sender, from, id, data) !=
ERC721Receiver.onERC721Received.selector
) {
revert UnsafeRecipient();
}
}
/// @notice Internal function for fractional transfers
function _transfer(
address from,
address to,
uint256 amount
) internal returns (bool) {
uint256 unit = _getUnit();
uint256 balanceBeforeSender = balanceOf[from];
uint256 balanceBeforeReceiver = balanceOf[to];
balanceOf[from] -= amount;
unchecked {
balanceOf[to] += amount;
}
// Skip burn for certain addresses to save gas
if (!whitelist[from]) {
uint256 tokens_to_burn = (balanceBeforeSender / unit) -
(balanceOf[from] / unit);
for (uint256 i = 0; i < tokens_to_burn; i++) {
_burn(from);
}
}
// Skip minting for certain addresses to save gas
if (!whitelist[to]) {
uint256 tokens_to_mint = (balanceOf[to] / unit) -
(balanceBeforeReceiver / unit);
for (uint256 i = 0; i < tokens_to_mint; i++) {
_mint(to);
}
}
emit ERC20Transfer(from, to, amount);
return true;
}
// Internal utility logic
function _getUnit() internal view returns (uint256) {
return 10 ** decimals;
}
function _mint(address to) internal virtual {
if (to == address(0)) {
revert InvalidRecipient();
}
unchecked {
minted++;
}
uint256 id = minted;
if (_ownerOf[id] != address(0)) {
revert AlreadyExists();
}
_ownerOf[id] = to;
_owned[to].push(id);
_ownedIndex[id] = _owned[to].length - 1;
emit Transfer(address(0), to, id);
}
function _burn(address from) internal virtual {
if (from == address(0)) {
revert InvalidSender();
}
uint256 id = _owned[from][_owned[from].length - 1];
_owned[from].pop();
delete _ownedIndex[id];
delete _ownerOf[id];
delete getApproved[id];
emit Transfer(from, address(0), id);
}
function _setNameSymbol(
string memory _name,
string memory _symbol
) internal {
name = _name;
symbol = _symbol;
}
}
// File: dots/dots.sol
pragma solidity ^0.8.0;
contract DOTSERC404 is ERC404 {
string public dataURI;
string public baseTokenURI;
constructor(
address _owner,
uint256 _supply
) ERC404("DOTS", "DOTS", 18, _supply, _owner) {
balanceOf[_owner] = _supply * 10 ** 18;
}
function setDataURI(string memory _dataURI) public onlyOwner {
dataURI = _dataURI;
}
function setTokenURI(string memory _tokenURI) public onlyOwner {
baseTokenURI = _tokenURI;
}
function setNameSymbol(
string memory _name,
string memory _symbol
) public onlyOwner {
_setNameSymbol(_name, _symbol);
}
function tokenURI(uint256 id) public view override returns (string memory) {
if (bytes(baseTokenURI).length > 0) {
return string.concat(baseTokenURI, Strings.toString(id), ".json");
} else {
uint8 seed = uint8(bytes1(keccak256(abi.encodePacked(id))));
string memory image;
string memory color;
if (seed <= 100) {
image = "1.gif";
color = "Green";
} else if (seed <= 160) {
image = "2.gif";
color = "Blue";
} else if (seed <= 210) {
image = "3.gif";
color = "Purple";
} else if (seed <= 240) {
image = "4.gif";
color = "Orange";
} else if (seed <= 255) {
image = "5.gif";
color = "Red";
}
string memory jsonPreImage = string.concat(
string.concat(
string.concat('{"name": "DOTS #', Strings.toString(id)),
'","description":"DOTS.","external_url":"https://pandora.build","image":"'
),
string.concat(dataURI, image)
);
string memory jsonPostImage = string.concat(
'","attributes":[{"trait_type":"Color","value":"',
color
);
string memory jsonPostTraits = '"}]}';
return
string.concat(
"data:application/json;utf8,",
string.concat(
string.concat(jsonPreImage, jsonPostImage),
jsonPostTraits
)
);
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnsafeRecipient","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ERC721Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","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":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revokeOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","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":"id","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":"string","name":"_dataURI","type":"string"}],"name":"setDataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"setNameSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60c060405234801562000010575f80fd5b506040516200452e3803806200452e8339818101604052810190620000369190620002ff565b6040518060400160405280600481526020017f444f5453000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f444f54530000000000000000000000000000000000000000000000000000000081525060128385805f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200010d576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508460019081620001b891906200059f565b508360029081620001ca91906200059f565b508260ff1660808160ff1681525050608051600a620001ea91906200080c565b82620001f791906200085c565b60a081815250505050505050670de0b6b3a7640000816200021991906200085c565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050620008a6565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620002918262000266565b9050919050565b620002a38162000285565b8114620002ae575f80fd5b50565b5f81519050620002c18162000298565b92915050565b5f819050919050565b620002db81620002c7565b8114620002e6575f80fd5b50565b5f81519050620002f981620002d0565b92915050565b5f806040838503121562000318576200031762000262565b5b5f6200032785828601620002b1565b92505060206200033a85828601620002e9565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620003c057607f821691505b602082108103620003d657620003d56200037b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200043a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003fd565b620004468683620003fd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000487620004816200047b84620002c7565b6200045e565b620002c7565b9050919050565b5f819050919050565b620004a28362000467565b620004ba620004b1826200048e565b84845462000409565b825550505050565b5f90565b620004d0620004c2565b620004dd81848462000497565b505050565b5b818110156200050457620004f85f82620004c6565b600181019050620004e3565b5050565b601f82111562000553576200051d81620003dc565b6200052884620003ee565b8101602085101562000538578190505b620005506200054785620003ee565b830182620004e2565b50505b505050565b5f82821c905092915050565b5f620005755f198460080262000558565b1980831691505092915050565b5f6200058f838362000564565b9150826002028217905092915050565b620005aa8262000344565b67ffffffffffffffff811115620005c657620005c56200034e565b5b620005d28254620003a8565b620005df82828562000508565b5f60209050601f83116001811462000615575f841562000600578287015190505b6200060c858262000582565b8655506200067b565b601f1984166200062586620003dc565b5f5b828110156200064e5784890151825560018201915060208501945060208101905062000627565b868310156200066e57848901516200066a601f89168262000564565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200070d57808604811115620006e557620006e462000683565b5b6001851615620006f55780820291505b80810290506200070585620006b0565b9450620006c5565b94509492505050565b5f82620007275760019050620007f9565b8162000736575f9050620007f9565b81600181146200074f57600281146200075a5762000790565b6001915050620007f9565b60ff8411156200076f576200076e62000683565b5b8360020a91508482111562000789576200078862000683565b5b50620007f9565b5060208310610133831016604e8410600b8410161715620007ca5782820a905083811115620007c457620007c362000683565b5b620007f9565b620007d98484846001620006bc565b92509050818404811115620007f357620007f262000683565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200081882620002c7565b9150620008258362000800565b9250620008547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000716565b905092915050565b5f6200086882620002c7565b91506200087583620002c7565b92508282026200088581620002c7565b915082820484148315176200089f576200089e62000683565b5b5092915050565b60805160a051613c5f620008cf5f395f6108f601525f81816112c701526121200152613c5f5ff3fe608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806370a08231116100f7578063c87b56dd11610095578063e0df5b6f1161006f578063e0df5b6f146104cb578063e985e9c5146104e7578063f28ca1dd14610517578063f2fde38b14610535576101a7565b8063c87b56dd1461044d578063d547cfb71461047d578063dd62ed3e1461049b576101a7565b80639b19251a116100d15780639b19251a146103b5578063a22cb465146103e5578063a9059cbb14610401578063b88d4fde14610431576101a7565b806370a08231146103495780638da5cb5b1461037957806395d89b4114610397576101a7565b80632b968958116101645780634f02c4201161013e5780634f02c420146102c3578063504334c2146102e157806353d6fd59146102fd5780636352211e14610319576101a7565b80632b9689581461027f578063313ce5671461028957806342842e0e146102a7576101a7565b806306fdde03146101ab578063081812fc146101c9578063095ea7b3146101f957806318160ddd1461022957806318d217c31461024757806323b872dd14610263575b5f80fd5b6101b3610551565b6040516101c09190612c24565b60405180910390f35b6101e360048036038101906101de9190612c88565b6105dd565b6040516101f09190612cf2565b60405180910390f35b610213600480360381019061020e9190612d35565b61060d565b6040516102209190612d8d565b60405180910390f35b6102316108f4565b60405161023e9190612db5565b60405180910390f35b610261600480360381019061025c9190612efa565b610918565b005b61027d60048036038101906102789190612f41565b6109af565b005b6102876111a6565b005b6102916112c5565b60405161029e9190612fac565b60405180910390f35b6102c160048036038101906102bc9190612f41565b6112e9565b005b6102cb611418565b6040516102d89190612db5565b60405180910390f35b6102fb60048036038101906102f69190612fc5565b61141e565b005b61031760048036038101906103129190613065565b6114b0565b005b610333600480360381019061032e9190612c88565b61158c565b6040516103409190612cf2565b60405180910390f35b610363600480360381019061035e91906130a3565b61162a565b6040516103709190612db5565b60405180910390f35b61038161163f565b60405161038e9190612cf2565b60405180910390f35b61039f611662565b6040516103ac9190612c24565b60405180910390f35b6103cf60048036038101906103ca91906130a3565b6116ee565b6040516103dc9190612d8d565b60405180910390f35b6103ff60048036038101906103fa9190613065565b61170b565b005b61041b60048036038101906104169190612d35565b611803565b6040516104289190612d8d565b60405180910390f35b61044b6004803603810190610446919061312b565b611817565b005b61046760048036038101906104629190612c88565b61194c565b6040516104749190612c24565b60405180910390f35b610485611d9f565b6040516104929190612c24565b60405180910390f35b6104b560048036038101906104b091906131af565b611e2b565b6040516104c29190612db5565b60405180910390f35b6104e560048036038101906104e09190612efa565b611e4b565b005b61050160048036038101906104fc91906131af565b611ee2565b60405161050e9190612d8d565b60405180910390f35b61051f611f0c565b60405161052c9190612c24565b60405180910390f35b61054f600480360381019061054a91906130a3565b611f98565b005b6001805461055e9061321a565b80601f016020809104026020016040519081016040528092919081815260200182805461058a9061321a565b80156105d55780601f106105ac576101008083540402835291602001916105d5565b820191905f5260205f20905b8154815290600101906020018083116105b857829003601f168201915b505050505081565b6006602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600354821115801561061f57505f82115b15610807575f60085f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610716575060075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561074d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360065f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516107f99190612db5565b60405180910390a3506108ea565b8160055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108e19190612db5565b60405180910390a35b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c90816109ab91906133e7565b5050565b60035481116110675760085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab2576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610b70575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610bd8575060065f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610c0f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1761211d565b60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c6291906134e3565b92505081905550610c7161211d565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610dc791906134e3565b81548110610dd857610dd7613516565b5b905f5260205f20015490508060095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600a5f8581526020019081526020015f205481548110610e4457610e43613516565b5b905f5260205f20018190555060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610e9d57610e9c613543565b5b600190038181905f5260205f20015f90559055600a5f8381526020019081526020015f2054600a5f8381526020019081526020015f208190555060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610f8591906134e3565b600a5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761104c61211d565b6040516110599190612db5565b60405180910390a3506111a1565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461119357818161111691906134e3565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61119e848484612150565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000000081565b6112f48383836109af565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113dc575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161137a939291906135a3565b6020604051808303815f875af1158015611396573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ba9190613640565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611413576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60035481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ac8282612494565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611534576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611625576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6004602052805f5260405f205f915090505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002805461166f9061321a565b80601f016020809104026020016040519081016040528092919081815260200182805461169b9061321a565b80156116e65780601f106116bd576101008083540402835291602001916116e6565b820191905f5260205f20905b8154815290600101906020018083116116c957829003601f168201915b505050505081565b600b602052805f5260405f205f915054906101000a900460ff1681565b8060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f79190612d8d565b60405180910390a35050565b5f61180f338484612150565b905092915050565b6118228585856109af565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1415801561190e575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118ac959493929190613697565b6020604051808303815f875af11580156118c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ec9190613640565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611945576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60605f600d805461195c9061321a565b9050111561199657600d61196f836124b8565b6040516020016119809291906137c3565b6040516020818303038152906040529050611d9a565b5f826040516020016119a89190613815565b6040516020818303038152906040528051906020012060f81c905060608060648360ff1611611a46576040518060400160405280600581526020017f312e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600581526020017f477265656e0000000000000000000000000000000000000000000000000000008152509050611c46565b60a08360ff1611611ac6576040518060400160405280600581526020017f322e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600481526020017f426c7565000000000000000000000000000000000000000000000000000000008152509050611c45565b60d28360ff1611611b46576040518060400160405280600581526020017f332e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f507572706c6500000000000000000000000000000000000000000000000000008152509050611c44565b60f08360ff1611611bc6576040518060400160405280600581526020017f342e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f4f72616e676500000000000000000000000000000000000000000000000000008152509050611c43565b60ff8360ff1611611c42576040518060400160405280600581526020017f352e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600381526020017f526564000000000000000000000000000000000000000000000000000000000081525090505b5b5b5b5b5f611c50866124b8565b604051602001611c609190613855565b604051602081830303815290604052604051602001611c7f9190613910565b604051602081830303815290604052600c84604051602001611ca2929190613931565b604051602081830303815290604052604051602001611cc2929190613954565b60405160208183030381529060405290505f82604051602001611ce591906139e7565b60405160208183030381529060405290505f6040518060400160405280600481526020017f227d5d7d0000000000000000000000000000000000000000000000000000000081525090508282604051602001611d42929190613954565b60405160208183030381529060405281604051602001611d63929190613954565b604051602081830303815290604052604051602001611d829190613a2e565b60405160208183030381529060405296505050505050505b919050565b600d8054611dac9061321a565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd89061321a565b8015611e235780601f10611dfa57610100808354040283529160200191611e23565b820191905f5260205f20905b815481529060010190602001808311611e0657829003601f168201915b505050505081565b6005602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ecf576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d9081611ede91906133e7565b5050565b6007602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600c8054611f199061321a565b80601f0160208091040260200160405190810160405280929190818152602001828054611f459061321a565b8015611f905780601f10611f6757610100808354040283529160200191611f90565b820191905f5260205f20905b815481529060010190602001808311611f7357829003601f168201915b505050505081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461201c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612081576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b5f7f0000000000000000000000000000000000000000000000000000000000000000600a61214b9190613b82565b905090565b5f8061215a61211d565b90505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460045f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461222a91906134e3565b925050819055508460045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661234e575f8360045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123139190613bf9565b848461231f9190613bf9565b61232991906134e3565b90505f5b8181101561234b5761233e89612582565b808060010191505061232d565b50505b600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612421575f83826123a99190613bf9565b8460045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123f29190613bf9565b6123fc91906134e3565b90505f5b8181101561241e57612411886127c7565b8080600101915050612400565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878760405161247e9190612db5565b60405180910390a3600193505050509392505050565b81600190816124a391906133e7565b5080600290816124b391906133e7565b505050565b60605f60016124c684612a49565b0190505f8167ffffffffffffffff8111156124e4576124e3612dd6565b5b6040519080825280601f01601f1916602001820160405280156125165781602001600182028036833780820191505090505b5090505f82602001820190505b600115612577578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161256c5761256b613bcc565b5b0494505f8503612523575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125e7576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054905061267291906134e3565b8154811061268357612682613516565b5b905f5260205f200154905060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054806126db576126da613543565b5b600190038181905f5260205f20015f90559055600a5f8281526020019081526020015f205f905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361282c576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035f81548092919060010191905055505f60035490505f73ffffffffffffffffffffffffffffffffffffffff1660085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128d8576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506129d591906134e3565b600a5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612aa5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a9b57612a9a613bcc565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612ae2576d04ee2d6d415b85acef81000000008381612ad857612ad7613bcc565b5b0492506020810190505b662386f26fc100008310612b1157662386f26fc100008381612b0757612b06613bcc565b5b0492506010810190505b6305f5e1008310612b3a576305f5e1008381612b3057612b2f613bcc565b5b0492506008810190505b6127108310612b5f576127108381612b5557612b54613bcc565b5b0492506004810190505b60648310612b825760648381612b7857612b77613bcc565b5b0492506002810190505b600a8310612b91576001810190505b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612bd1578082015181840152602081019050612bb6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612bf682612b9a565b612c008185612ba4565b9350612c10818560208601612bb4565b612c1981612bdc565b840191505092915050565b5f6020820190508181035f830152612c3c8184612bec565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612c6781612c55565b8114612c71575f80fd5b50565b5f81359050612c8281612c5e565b92915050565b5f60208284031215612c9d57612c9c612c4d565b5b5f612caa84828501612c74565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612cdc82612cb3565b9050919050565b612cec81612cd2565b82525050565b5f602082019050612d055f830184612ce3565b92915050565b612d1481612cd2565b8114612d1e575f80fd5b50565b5f81359050612d2f81612d0b565b92915050565b5f8060408385031215612d4b57612d4a612c4d565b5b5f612d5885828601612d21565b9250506020612d6985828601612c74565b9150509250929050565b5f8115159050919050565b612d8781612d73565b82525050565b5f602082019050612da05f830184612d7e565b92915050565b612daf81612c55565b82525050565b5f602082019050612dc85f830184612da6565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612e0c82612bdc565b810181811067ffffffffffffffff82111715612e2b57612e2a612dd6565b5b80604052505050565b5f612e3d612c44565b9050612e498282612e03565b919050565b5f67ffffffffffffffff821115612e6857612e67612dd6565b5b612e7182612bdc565b9050602081019050919050565b828183375f83830152505050565b5f612e9e612e9984612e4e565b612e34565b905082815260208101848484011115612eba57612eb9612dd2565b5b612ec5848285612e7e565b509392505050565b5f82601f830112612ee157612ee0612dce565b5b8135612ef1848260208601612e8c565b91505092915050565b5f60208284031215612f0f57612f0e612c4d565b5b5f82013567ffffffffffffffff811115612f2c57612f2b612c51565b5b612f3884828501612ecd565b91505092915050565b5f805f60608486031215612f5857612f57612c4d565b5b5f612f6586828701612d21565b9350506020612f7686828701612d21565b9250506040612f8786828701612c74565b9150509250925092565b5f60ff82169050919050565b612fa681612f91565b82525050565b5f602082019050612fbf5f830184612f9d565b92915050565b5f8060408385031215612fdb57612fda612c4d565b5b5f83013567ffffffffffffffff811115612ff857612ff7612c51565b5b61300485828601612ecd565b925050602083013567ffffffffffffffff81111561302557613024612c51565b5b61303185828601612ecd565b9150509250929050565b61304481612d73565b811461304e575f80fd5b50565b5f8135905061305f8161303b565b92915050565b5f806040838503121561307b5761307a612c4d565b5b5f61308885828601612d21565b925050602061309985828601613051565b9150509250929050565b5f602082840312156130b8576130b7612c4d565b5b5f6130c584828501612d21565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126130eb576130ea612dce565b5b8235905067ffffffffffffffff811115613108576131076130ce565b5b602083019150836001820283011115613124576131236130d2565b5b9250929050565b5f805f805f6080868803121561314457613143612c4d565b5b5f61315188828901612d21565b955050602061316288828901612d21565b945050604061317388828901612c74565b935050606086013567ffffffffffffffff81111561319457613193612c51565b5b6131a0888289016130d6565b92509250509295509295909350565b5f80604083850312156131c5576131c4612c4d565b5b5f6131d285828601612d21565b92505060206131e385828601612d21565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061323157607f821691505b602082108103613244576132436131ed565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026132a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261326b565b6132b0868361326b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6132eb6132e66132e184612c55565b6132c8565b612c55565b9050919050565b5f819050919050565b613304836132d1565b613318613310826132f2565b848454613277565b825550505050565b5f90565b61332c613320565b6133378184846132fb565b505050565b5b8181101561335a5761334f5f82613324565b60018101905061333d565b5050565b601f82111561339f576133708161324a565b6133798461325c565b81016020851015613388578190505b61339c6133948561325c565b83018261333c565b50505b505050565b5f82821c905092915050565b5f6133bf5f19846008026133a4565b1980831691505092915050565b5f6133d783836133b0565b9150826002028217905092915050565b6133f082612b9a565b67ffffffffffffffff81111561340957613408612dd6565b5b613413825461321a565b61341e82828561335e565b5f60209050601f83116001811461344f575f841561343d578287015190505b61344785826133cc565b8655506134ae565b601f19841661345d8661324a565b5f5b828110156134845784890151825560018201915060208501945060208101905061345f565b868310156134a1578489015161349d601f8916826133b0565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6134ed82612c55565b91506134f883612c55565b92508282039050818111156135105761350f6134b6565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f61358e5f83613570565b915061359982613580565b5f82019050919050565b5f6080820190506135b65f830186612ce3565b6135c36020830185612ce3565b6135d06040830184612da6565b81810360608301526135e181613583565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61361f816135eb565b8114613629575f80fd5b50565b5f8151905061363a81613616565b92915050565b5f6020828403121561365557613654612c4d565b5b5f6136628482850161362c565b91505092915050565b5f6136768385613570565b9350613683838584612e7e565b61368c83612bdc565b840190509392505050565b5f6080820190506136aa5f830188612ce3565b6136b76020830187612ce3565b6136c46040830186612da6565b81810360608301526136d781848661366b565b90509695505050505050565b5f81905092915050565b5f81546136f98161321a565b61370381866136e3565b9450600182165f811461371d576001811461373257613764565b60ff1983168652811515820286019350613764565b61373b8561324a565b5f5b8381101561375c5781548189015260018201915060208101905061373d565b838801955050505b50505092915050565b5f61377782612b9a565b61378181856136e3565b9350613791818560208601612bb4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b5f6137ce82856136ed565b91506137da828461376d565b91506137e58261379d565b6005820191508190509392505050565b5f819050919050565b61380f61380a82612c55565b6137f5565b82525050565b5f61382082846137fe565b60208201915081905092915050565b7f7b226e616d65223a2022444f5453202300000000000000000000000000000000815250565b5f61385f8261382f565b60108201915061386f828461376d565b915081905092915050565b7f222c226465736372697074696f6e223a22444f54532e222c2265787465726e615f8201527f6c5f75726c223a2268747470733a2f2f70616e646f72612e6275696c64222c2260208201527f696d616765223a22000000000000000000000000000000000000000000000000604082015250565b5f6138fa6048836136e3565b91506139058261387a565b604882019050919050565b5f61391b828461376d565b9150613926826138ee565b915081905092915050565b5f61393c82856136ed565b9150613948828461376d565b91508190509392505050565b5f61395f828561376d565b915061396b828461376d565b91508190509392505050565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a22435f8201527f6f6c6f72222c2276616c7565223a220000000000000000000000000000000000602082015250565b5f6139d1602f836136e3565b91506139dc82613977565b602f82019050919050565b5f6139f1826139c5565b91506139fd828461376d565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f613a3882613a08565b601b82019150613a48828461376d565b915081905092915050565b5f8160011c9050919050565b5f808291508390505b6001851115613aa857808604811115613a8457613a836134b6565b5b6001851615613a935780820291505b8081029050613aa185613a53565b9450613a68565b94509492505050565b5f82613ac05760019050613b7b565b81613acd575f9050613b7b565b8160018114613ae35760028114613aed57613b1c565b6001915050613b7b565b60ff841115613aff57613afe6134b6565b5b8360020a915084821115613b1657613b156134b6565b5b50613b7b565b5060208310610133831016604e8410600b8410161715613b515782820a905083811115613b4c57613b4b6134b6565b5b613b7b565b613b5e8484846001613a5f565b92509050818404811115613b7557613b746134b6565b5b81810290505b9392505050565b5f613b8c82612c55565b9150613b9783612f91565b9250613bc47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613ab1565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613c0382612c55565b9150613c0e83612c55565b925082613c1e57613c1d613bcc565b5b82820490509291505056fea26469706673582212202e72497c973d70a6af9777500a0bc8c354ec2f5ef786ab2e0ead686281a60d5264736f6c63430008180033000000000000000000000000681933eb59fa374f5d4aff781e7638a73cca4e4900000000000000000000000000000000000000000000000000000002540be400
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806370a08231116100f7578063c87b56dd11610095578063e0df5b6f1161006f578063e0df5b6f146104cb578063e985e9c5146104e7578063f28ca1dd14610517578063f2fde38b14610535576101a7565b8063c87b56dd1461044d578063d547cfb71461047d578063dd62ed3e1461049b576101a7565b80639b19251a116100d15780639b19251a146103b5578063a22cb465146103e5578063a9059cbb14610401578063b88d4fde14610431576101a7565b806370a08231146103495780638da5cb5b1461037957806395d89b4114610397576101a7565b80632b968958116101645780634f02c4201161013e5780634f02c420146102c3578063504334c2146102e157806353d6fd59146102fd5780636352211e14610319576101a7565b80632b9689581461027f578063313ce5671461028957806342842e0e146102a7576101a7565b806306fdde03146101ab578063081812fc146101c9578063095ea7b3146101f957806318160ddd1461022957806318d217c31461024757806323b872dd14610263575b5f80fd5b6101b3610551565b6040516101c09190612c24565b60405180910390f35b6101e360048036038101906101de9190612c88565b6105dd565b6040516101f09190612cf2565b60405180910390f35b610213600480360381019061020e9190612d35565b61060d565b6040516102209190612d8d565b60405180910390f35b6102316108f4565b60405161023e9190612db5565b60405180910390f35b610261600480360381019061025c9190612efa565b610918565b005b61027d60048036038101906102789190612f41565b6109af565b005b6102876111a6565b005b6102916112c5565b60405161029e9190612fac565b60405180910390f35b6102c160048036038101906102bc9190612f41565b6112e9565b005b6102cb611418565b6040516102d89190612db5565b60405180910390f35b6102fb60048036038101906102f69190612fc5565b61141e565b005b61031760048036038101906103129190613065565b6114b0565b005b610333600480360381019061032e9190612c88565b61158c565b6040516103409190612cf2565b60405180910390f35b610363600480360381019061035e91906130a3565b61162a565b6040516103709190612db5565b60405180910390f35b61038161163f565b60405161038e9190612cf2565b60405180910390f35b61039f611662565b6040516103ac9190612c24565b60405180910390f35b6103cf60048036038101906103ca91906130a3565b6116ee565b6040516103dc9190612d8d565b60405180910390f35b6103ff60048036038101906103fa9190613065565b61170b565b005b61041b60048036038101906104169190612d35565b611803565b6040516104289190612d8d565b60405180910390f35b61044b6004803603810190610446919061312b565b611817565b005b61046760048036038101906104629190612c88565b61194c565b6040516104749190612c24565b60405180910390f35b610485611d9f565b6040516104929190612c24565b60405180910390f35b6104b560048036038101906104b091906131af565b611e2b565b6040516104c29190612db5565b60405180910390f35b6104e560048036038101906104e09190612efa565b611e4b565b005b61050160048036038101906104fc91906131af565b611ee2565b60405161050e9190612d8d565b60405180910390f35b61051f611f0c565b60405161052c9190612c24565b60405180910390f35b61054f600480360381019061054a91906130a3565b611f98565b005b6001805461055e9061321a565b80601f016020809104026020016040519081016040528092919081815260200182805461058a9061321a565b80156105d55780601f106105ac576101008083540402835291602001916105d5565b820191905f5260205f20905b8154815290600101906020018083116105b857829003601f168201915b505050505081565b6006602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600354821115801561061f57505f82115b15610807575f60085f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610716575060075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561074d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360065f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516107f99190612db5565b60405180910390a3506108ea565b8160055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108e19190612db5565b60405180910390a35b6001905092915050565b7f0000000000000000000000000000000000000000204fce5e3e2502611000000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c90816109ab91906133e7565b5050565b60035481116110675760085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab2576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610b70575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610bd8575060065f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610c0f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1761211d565b60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c6291906134e3565b92505081905550610c7161211d565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610dc791906134e3565b81548110610dd857610dd7613516565b5b905f5260205f20015490508060095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600a5f8581526020019081526020015f205481548110610e4457610e43613516565b5b905f5260205f20018190555060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610e9d57610e9c613543565b5b600190038181905f5260205f20015f90559055600a5f8381526020019081526020015f2054600a5f8381526020019081526020015f208190555060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610f8591906134e3565b600a5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761104c61211d565b6040516110599190612db5565b60405180910390a3506111a1565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461119357818161111691906134e3565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61119e848484612150565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000001281565b6112f48383836109af565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113dc575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161137a939291906135a3565b6020604051808303815f875af1158015611396573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ba9190613640565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611413576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60035481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ac8282612494565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611534576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611625576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6004602052805f5260405f205f915090505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002805461166f9061321a565b80601f016020809104026020016040519081016040528092919081815260200182805461169b9061321a565b80156116e65780601f106116bd576101008083540402835291602001916116e6565b820191905f5260205f20905b8154815290600101906020018083116116c957829003601f168201915b505050505081565b600b602052805f5260405f205f915054906101000a900460ff1681565b8060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f79190612d8d565b60405180910390a35050565b5f61180f338484612150565b905092915050565b6118228585856109af565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1415801561190e575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118ac959493929190613697565b6020604051808303815f875af11580156118c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ec9190613640565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611945576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60605f600d805461195c9061321a565b9050111561199657600d61196f836124b8565b6040516020016119809291906137c3565b6040516020818303038152906040529050611d9a565b5f826040516020016119a89190613815565b6040516020818303038152906040528051906020012060f81c905060608060648360ff1611611a46576040518060400160405280600581526020017f312e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600581526020017f477265656e0000000000000000000000000000000000000000000000000000008152509050611c46565b60a08360ff1611611ac6576040518060400160405280600581526020017f322e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600481526020017f426c7565000000000000000000000000000000000000000000000000000000008152509050611c45565b60d28360ff1611611b46576040518060400160405280600581526020017f332e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f507572706c6500000000000000000000000000000000000000000000000000008152509050611c44565b60f08360ff1611611bc6576040518060400160405280600581526020017f342e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f4f72616e676500000000000000000000000000000000000000000000000000008152509050611c43565b60ff8360ff1611611c42576040518060400160405280600581526020017f352e67696600000000000000000000000000000000000000000000000000000081525091506040518060400160405280600381526020017f526564000000000000000000000000000000000000000000000000000000000081525090505b5b5b5b5b5f611c50866124b8565b604051602001611c609190613855565b604051602081830303815290604052604051602001611c7f9190613910565b604051602081830303815290604052600c84604051602001611ca2929190613931565b604051602081830303815290604052604051602001611cc2929190613954565b60405160208183030381529060405290505f82604051602001611ce591906139e7565b60405160208183030381529060405290505f6040518060400160405280600481526020017f227d5d7d0000000000000000000000000000000000000000000000000000000081525090508282604051602001611d42929190613954565b60405160208183030381529060405281604051602001611d63929190613954565b604051602081830303815290604052604051602001611d829190613a2e565b60405160208183030381529060405296505050505050505b919050565b600d8054611dac9061321a565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd89061321a565b8015611e235780601f10611dfa57610100808354040283529160200191611e23565b820191905f5260205f20905b815481529060010190602001808311611e0657829003601f168201915b505050505081565b6005602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ecf576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d9081611ede91906133e7565b5050565b6007602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600c8054611f199061321a565b80601f0160208091040260200160405190810160405280929190818152602001828054611f459061321a565b8015611f905780601f10611f6757610100808354040283529160200191611f90565b820191905f5260205f20905b815481529060010190602001808311611f7357829003601f168201915b505050505081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461201c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612081576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b5f7f0000000000000000000000000000000000000000000000000000000000000012600a61214b9190613b82565b905090565b5f8061215a61211d565b90505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460045f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461222a91906134e3565b925050819055508460045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661234e575f8360045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123139190613bf9565b848461231f9190613bf9565b61232991906134e3565b90505f5b8181101561234b5761233e89612582565b808060010191505061232d565b50505b600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612421575f83826123a99190613bf9565b8460045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123f29190613bf9565b6123fc91906134e3565b90505f5b8181101561241e57612411886127c7565b8080600101915050612400565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878760405161247e9190612db5565b60405180910390a3600193505050509392505050565b81600190816124a391906133e7565b5080600290816124b391906133e7565b505050565b60605f60016124c684612a49565b0190505f8167ffffffffffffffff8111156124e4576124e3612dd6565b5b6040519080825280601f01601f1916602001820160405280156125165781602001600182028036833780820191505090505b5090505f82602001820190505b600115612577578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161256c5761256b613bcc565b5b0494505f8503612523575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125e7576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054905061267291906134e3565b8154811061268357612682613516565b5b905f5260205f200154905060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054806126db576126da613543565b5b600190038181905f5260205f20015f90559055600a5f8281526020019081526020015f205f905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361282c576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035f81548092919060010191905055505f60035490505f73ffffffffffffffffffffffffffffffffffffffff1660085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128d8576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506129d591906134e3565b600a5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612aa5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a9b57612a9a613bcc565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612ae2576d04ee2d6d415b85acef81000000008381612ad857612ad7613bcc565b5b0492506020810190505b662386f26fc100008310612b1157662386f26fc100008381612b0757612b06613bcc565b5b0492506010810190505b6305f5e1008310612b3a576305f5e1008381612b3057612b2f613bcc565b5b0492506008810190505b6127108310612b5f576127108381612b5557612b54613bcc565b5b0492506004810190505b60648310612b825760648381612b7857612b77613bcc565b5b0492506002810190505b600a8310612b91576001810190505b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612bd1578082015181840152602081019050612bb6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612bf682612b9a565b612c008185612ba4565b9350612c10818560208601612bb4565b612c1981612bdc565b840191505092915050565b5f6020820190508181035f830152612c3c8184612bec565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612c6781612c55565b8114612c71575f80fd5b50565b5f81359050612c8281612c5e565b92915050565b5f60208284031215612c9d57612c9c612c4d565b5b5f612caa84828501612c74565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612cdc82612cb3565b9050919050565b612cec81612cd2565b82525050565b5f602082019050612d055f830184612ce3565b92915050565b612d1481612cd2565b8114612d1e575f80fd5b50565b5f81359050612d2f81612d0b565b92915050565b5f8060408385031215612d4b57612d4a612c4d565b5b5f612d5885828601612d21565b9250506020612d6985828601612c74565b9150509250929050565b5f8115159050919050565b612d8781612d73565b82525050565b5f602082019050612da05f830184612d7e565b92915050565b612daf81612c55565b82525050565b5f602082019050612dc85f830184612da6565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612e0c82612bdc565b810181811067ffffffffffffffff82111715612e2b57612e2a612dd6565b5b80604052505050565b5f612e3d612c44565b9050612e498282612e03565b919050565b5f67ffffffffffffffff821115612e6857612e67612dd6565b5b612e7182612bdc565b9050602081019050919050565b828183375f83830152505050565b5f612e9e612e9984612e4e565b612e34565b905082815260208101848484011115612eba57612eb9612dd2565b5b612ec5848285612e7e565b509392505050565b5f82601f830112612ee157612ee0612dce565b5b8135612ef1848260208601612e8c565b91505092915050565b5f60208284031215612f0f57612f0e612c4d565b5b5f82013567ffffffffffffffff811115612f2c57612f2b612c51565b5b612f3884828501612ecd565b91505092915050565b5f805f60608486031215612f5857612f57612c4d565b5b5f612f6586828701612d21565b9350506020612f7686828701612d21565b9250506040612f8786828701612c74565b9150509250925092565b5f60ff82169050919050565b612fa681612f91565b82525050565b5f602082019050612fbf5f830184612f9d565b92915050565b5f8060408385031215612fdb57612fda612c4d565b5b5f83013567ffffffffffffffff811115612ff857612ff7612c51565b5b61300485828601612ecd565b925050602083013567ffffffffffffffff81111561302557613024612c51565b5b61303185828601612ecd565b9150509250929050565b61304481612d73565b811461304e575f80fd5b50565b5f8135905061305f8161303b565b92915050565b5f806040838503121561307b5761307a612c4d565b5b5f61308885828601612d21565b925050602061309985828601613051565b9150509250929050565b5f602082840312156130b8576130b7612c4d565b5b5f6130c584828501612d21565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126130eb576130ea612dce565b5b8235905067ffffffffffffffff811115613108576131076130ce565b5b602083019150836001820283011115613124576131236130d2565b5b9250929050565b5f805f805f6080868803121561314457613143612c4d565b5b5f61315188828901612d21565b955050602061316288828901612d21565b945050604061317388828901612c74565b935050606086013567ffffffffffffffff81111561319457613193612c51565b5b6131a0888289016130d6565b92509250509295509295909350565b5f80604083850312156131c5576131c4612c4d565b5b5f6131d285828601612d21565b92505060206131e385828601612d21565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061323157607f821691505b602082108103613244576132436131ed565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026132a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261326b565b6132b0868361326b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6132eb6132e66132e184612c55565b6132c8565b612c55565b9050919050565b5f819050919050565b613304836132d1565b613318613310826132f2565b848454613277565b825550505050565b5f90565b61332c613320565b6133378184846132fb565b505050565b5b8181101561335a5761334f5f82613324565b60018101905061333d565b5050565b601f82111561339f576133708161324a565b6133798461325c565b81016020851015613388578190505b61339c6133948561325c565b83018261333c565b50505b505050565b5f82821c905092915050565b5f6133bf5f19846008026133a4565b1980831691505092915050565b5f6133d783836133b0565b9150826002028217905092915050565b6133f082612b9a565b67ffffffffffffffff81111561340957613408612dd6565b5b613413825461321a565b61341e82828561335e565b5f60209050601f83116001811461344f575f841561343d578287015190505b61344785826133cc565b8655506134ae565b601f19841661345d8661324a565b5f5b828110156134845784890151825560018201915060208501945060208101905061345f565b868310156134a1578489015161349d601f8916826133b0565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6134ed82612c55565b91506134f883612c55565b92508282039050818111156135105761350f6134b6565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f61358e5f83613570565b915061359982613580565b5f82019050919050565b5f6080820190506135b65f830186612ce3565b6135c36020830185612ce3565b6135d06040830184612da6565b81810360608301526135e181613583565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61361f816135eb565b8114613629575f80fd5b50565b5f8151905061363a81613616565b92915050565b5f6020828403121561365557613654612c4d565b5b5f6136628482850161362c565b91505092915050565b5f6136768385613570565b9350613683838584612e7e565b61368c83612bdc565b840190509392505050565b5f6080820190506136aa5f830188612ce3565b6136b76020830187612ce3565b6136c46040830186612da6565b81810360608301526136d781848661366b565b90509695505050505050565b5f81905092915050565b5f81546136f98161321a565b61370381866136e3565b9450600182165f811461371d576001811461373257613764565b60ff1983168652811515820286019350613764565b61373b8561324a565b5f5b8381101561375c5781548189015260018201915060208101905061373d565b838801955050505b50505092915050565b5f61377782612b9a565b61378181856136e3565b9350613791818560208601612bb4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815250565b5f6137ce82856136ed565b91506137da828461376d565b91506137e58261379d565b6005820191508190509392505050565b5f819050919050565b61380f61380a82612c55565b6137f5565b82525050565b5f61382082846137fe565b60208201915081905092915050565b7f7b226e616d65223a2022444f5453202300000000000000000000000000000000815250565b5f61385f8261382f565b60108201915061386f828461376d565b915081905092915050565b7f222c226465736372697074696f6e223a22444f54532e222c2265787465726e615f8201527f6c5f75726c223a2268747470733a2f2f70616e646f72612e6275696c64222c2260208201527f696d616765223a22000000000000000000000000000000000000000000000000604082015250565b5f6138fa6048836136e3565b91506139058261387a565b604882019050919050565b5f61391b828461376d565b9150613926826138ee565b915081905092915050565b5f61393c82856136ed565b9150613948828461376d565b91508190509392505050565b5f61395f828561376d565b915061396b828461376d565b91508190509392505050565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a22435f8201527f6f6c6f72222c2276616c7565223a220000000000000000000000000000000000602082015250565b5f6139d1602f836136e3565b91506139dc82613977565b602f82019050919050565b5f6139f1826139c5565b91506139fd828461376d565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f613a3882613a08565b601b82019150613a48828461376d565b915081905092915050565b5f8160011c9050919050565b5f808291508390505b6001851115613aa857808604811115613a8457613a836134b6565b5b6001851615613a935780820291505b8081029050613aa185613a53565b9450613a68565b94509492505050565b5f82613ac05760019050613b7b565b81613acd575f9050613b7b565b8160018114613ae35760028114613aed57613b1c565b6001915050613b7b565b60ff841115613aff57613afe6134b6565b5b8360020a915084821115613b1657613b156134b6565b5b50613b7b565b5060208310610133831016604e8410600b8410161715613b515782820a905083811115613b4c57613b4b6134b6565b5b613b7b565b613b5e8484846001613a5f565b92509050818404811115613b7557613b746134b6565b5b81810290505b9392505050565b5f613b8c82612c55565b9150613b9783612f91565b9250613bc47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613ab1565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613c0382612c55565b9150613c0e83612c55565b925082613c1e57613c1d613bcc565b5b82820490509291505056fea26469706673582212202e72497c973d70a6af9777500a0bc8c354ec2f5ef786ab2e0ead686281a60d5264736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000681933eb59fa374f5d4aff781e7638a73cca4e4900000000000000000000000000000000000000000000000000000002540be400
-----Decoded View---------------
Arg [0] : _owner (address): 0x681933EB59fa374F5d4Aff781E7638A73CCa4e49
Arg [1] : _supply (uint256): 10000000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000681933eb59fa374f5d4aff781e7638a73cca4e49
Arg [1] : 00000000000000000000000000000000000000000000000000000002540be400
Deployed Bytecode Sourcemap
31843:2452:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22918:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23629:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25460:642;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23154:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32122:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26509:1716;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20915:151;;;:::i;:::-;;23054:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28521:405;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23289:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32342:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24789:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24972:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23395:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20356:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22972;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24240:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26153:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28284:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29021:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32508:1784;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31908:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23509:64;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32228:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23740:68;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31880:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20688:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22918:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23629:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;25460:642::-;25563:4;25598:6;;25584:10;:20;;:38;;;;;25621:1;25608:10;:14;25584:38;25580:491;;;25639:13;25655:8;:20;25664:10;25655:20;;;;;;;;;;;;;;;;;;;;;25639:36;;25710:5;25696:19;;:10;:19;;;;:59;;;;;25720:16;:23;25737:5;25720:23;;;;;;;;;;;;;;;:35;25744:10;25720:35;;;;;;;;;;;;;;;;;;;;;;;;;25719:36;25696:59;25692:121;;;25783:14;;;;;;;;;;;;;;25692:121;25855:7;25829:11;:23;25841:10;25829:23;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;25900:7;25884:36;;25893:5;25884:36;;;25909:10;25884:36;;;;;;:::i;:::-;;;;;;;;25624:308;25580:491;;;25986:10;25953:9;:21;25963:10;25953:21;;;;;;;;;;;;;;;:30;25975:7;25953:30;;;;;;;;;;;;;;;:43;;;;26039:7;26018:41;;26027:10;26018:41;;;26048:10;26018:41;;;;;;:::i;:::-;;;;;;;;25580:491;26090:4;26083:11;;25460:642;;;;:::o;23154:36::-;;;:::o;32122:98::-;20443:5;;;;;;;;;;20429:19;;:10;:19;;;20425:46;;20457:14;;;;;;;;;;;;;;20425:46;32204:8:::1;32194:7;:18;;;;;;:::i;:::-;;32122:98:::0;:::o;26509:1716::-;26655:6;;26641:10;:20;26637:1581;;26690:8;:20;26699:10;26690:20;;;;;;;;;;;;;;;;;;;;;26682:28;;:4;:28;;;26678:91;;26738:15;;;;;;;;;;;;;;26678:91;26803:1;26789:16;;:2;:16;;;26785:82;;26833:18;;;;;;;;;;;;;;26785:82;26919:4;26905:18;;:10;:18;;;;:74;;;;;26945:16;:22;26962:4;26945:22;;;;;;;;;;;;;;;:34;26968:10;26945:34;;;;;;;;;;;;;;;;;;;;;;;;;26944:35;26905:74;:132;;;;;27014:11;:23;27026:10;27014:23;;;;;;;;;;;;;;;;;;;;;27000:37;;:10;:37;;;;26905:132;26883:226;;;27079:14;;;;;;;;;;;;;;26883:226;27144:10;:8;:10::i;:::-;27125:9;:15;27135:4;27125:15;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;27217:10;:8;:10::i;:::-;27200:9;:13;27210:2;27200:13;;;;;;;;;;;;;;;;:27;;;;;;;;;;;27282:2;27259:8;:20;27268:10;27259:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;27306:11;:23;27318:10;27306:23;;;;;;;;;;;;27299:30;;;;;;;;;;;27387:17;27407:6;:12;27414:4;27407:12;;;;;;;;;;;;;;;27442:1;27420:6;:12;27427:4;27420:12;;;;;;;;;;;;;;;:19;;;;:23;;;;:::i;:::-;27407:37;;;;;;;;:::i;:::-;;;;;;;;;;27387:57;;27499:9;27459:6;:12;27466:4;27459:12;;;;;;;;;;;;;;;27472:11;:23;27484:10;27472:23;;;;;;;;;;;;27459:37;;;;;;;;:::i;:::-;;;;;;;;;:49;;;;27543:6;:12;27550:4;27543:12;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27647:11;:23;27659:10;27647:23;;;;;;;;;;;;27622:11;:22;27634:9;27622:22;;;;;;;;;;;:48;;;;27724:6;:10;27731:2;27724:10;;;;;;;;;;;;;;;27740;27724:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27854:1;27834:6;:10;27841:2;27834:10;;;;;;;;;;;;;;;:17;;;;:21;;;;:::i;:::-;27808:11;:23;27820:10;27808:23;;;;;;;;;;;:47;;;;27896:10;27892:2;27877:30;;27886:4;27877:30;;;;;;;;;;;;27947:2;27927:35;;27941:4;27927:35;;;27951:10;:8;:10::i;:::-;27927:35;;;;;;:::i;:::-;;;;;;;;26663:1311;26637:1581;;;27995:15;28013:9;:15;28023:4;28013:15;;;;;;;;;;;;;;;:27;28029:10;28013:27;;;;;;;;;;;;;;;;27995:45;;28072:17;28061:7;:28;28057:101;;28148:10;28138:7;:20;;;;:::i;:::-;28108:9;:15;28118:4;28108:15;;;;;;;;;;;;;;;:27;28124:10;28108:27;;;;;;;;;;;;;;;:50;;;;28057:101;28175:31;28185:4;28191:2;28195:10;28175:9;:31::i;:::-;;27980:238;26637:1581;26509:1716;;;:::o;20915:151::-;20443:5;;;;;;;;;;20429:19;;:10;:19;;;20425:46;;20457:14;;;;;;;;;;;;;;20425:46;20994:1:::1;20978:5:::0;::::1;:18;;;;;;;;;;;;;;;;;;21055:1;21014:44;;21035:10;21014:44;;;;;;;;;;;;20915:151::o:0;23054:31::-;;;:::o;28521:405::-;28645:26;28658:4;28664:2;28668;28645:12;:26::i;:::-;28720:1;28702:2;:14;;;:19;;:154;;;;;28816:40;;;28738:118;;;28753:2;28738:35;;;28774:10;28786:4;28792:2;28738:61;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:118;;;;;28702:154;28684:235;;;28890:17;;;;;;;;;;;;;;28684:235;28521:405;;;:::o;23289:21::-;;;;:::o;32342:158::-;20443:5;;;;;;;;;;20429:19;;:10;:19;;;20425:46;;20457:14;;;;;;;;;;;;;;20425:46;32462:30:::1;32477:5;32484:7;32462:14;:30::i;:::-;32342:158:::0;;:::o;24789:111::-;20443:5;;;;;;;;;;20429:19;;:10;:19;;;20425:46;;20457:14;;;;;;;;;;;;;;20425:46;24887:5:::1;24867:9;:17;24877:6;24867:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;24789:111:::0;;:::o;24972:193::-;25030:13;25064:8;:12;25073:2;25064:12;;;;;;;;;;;;;;;;;;;;;25056:20;;25110:1;25093:19;;:5;:19;;;25089:69;;25136:10;;;;;;;;;;;;;;25089:69;24972:193;;;:::o;23395:44::-;;;;;;;;;;;;;;;;;:::o;20356:20::-;;;;;;;;;;;;:::o;22972:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24240:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;26153:207::-;26280:8;26239:16;:28;26256:10;26239:28;;;;;;;;;;;;;;;:38;26268:8;26239:38;;;;;;;;;;;;;;;;:49;;;;;;;;;;;;;;;;;;26333:8;26306:46;;26321:10;26306:46;;;26343:8;26306:46;;;;;;:::i;:::-;;;;;;;;26153:207;;:::o;28284:160::-;28379:4;28403:33;28413:10;28425:2;28429:6;28403:9;:33::i;:::-;28396:40;;28284:160;;;;:::o;29021:437::-;29175:26;29188:4;29194:2;29198;29175:12;:26::i;:::-;29250:1;29232:2;:14;;;:19;;:156;;;;;29348:40;;;29268:120;;;29283:2;29268:35;;;29304:10;29316:4;29322:2;29326:4;;29268:63;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:120;;;;;29232:156;29214:237;;;29422:17;;;;;;;;;;;;;;29214:237;29021:437;;;;;:::o;32508:1784::-;32568:13;32627:1;32604:12;32598:26;;;;;:::i;:::-;;;:30;32594:1691;;;32666:12;32680:20;32697:2;32680:16;:20::i;:::-;32652:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32645:65;;;;32594:1691;32743:10;32796:2;32779:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;32769:31;;;;;;32756:46;;32743:59;;32817:19;32851;32899:3;32891:4;:11;;;32887:528;;32923:15;;;;;;;;;;;;;;;;;;;32957;;;;;;;;;;;;;;;;;;;32887:528;;;33006:3;32998:4;:11;;;32994:421;;33030:15;;;;;;;;;;;;;;;;;;;33064:14;;;;;;;;;;;;;;;;;;;32994:421;;;33112:3;33104:4;:11;;;33100:315;;33136:15;;;;;;;;;;;;;;;;;;;33170:16;;;;;;;;;;;;;;;;;;;33100:315;;;33220:3;33212:4;:11;;;33208:207;;33244:15;;;;;;;;;;;;;;;;;;;33278:16;;;;;;;;;;;;;;;;;;;33208:207;;;33328:3;33320:4;:11;;;33316:99;;33352:15;;;;;;;;;;;;;;;;;;;33386:13;;;;;;;;;;;;;;;;;;;33316:99;33208:207;33100:315;32994:421;32887:528;33431:26;33562:20;33579:2;33562:16;:20::i;:::-;33528:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;33492:207;;;;;;;;:::i;:::-;;;;;;;;;;;;;33732:7;33741:5;33718:29;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33460:302;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33431:331;;33777:27;33907:5;33807:120;;;;;;;;:::i;:::-;;;;;;;;;;;;;33777:150;;33942:28;:37;;;;;;;;;;;;;;;;;;;34162:12;34176:13;34148:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34217:14;34108:146;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34020:253;;;;;;;;:::i;:::-;;;;;;;;;;;;;33996:277;;;;;;;;32508:1784;;;;:::o;31908:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23509:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32228:106::-;20443:5;;;;;;;;;;20429:19;;:10;:19;;;20425:46;;20457:14;;;;;;;;;;;;;;20425:46;32317:9:::1;32302:12;:24;;;;;;:::i;:::-;;32228:106:::0;:::o;23740:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31880:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20688:219::-;20443:5;;;;;;;;;;20429:19;;:10;:19;;;20425:46;;20457:14;;;;;;;;;;;;;;20425:46;20789:1:::1;20771:20;;:6;:20;;::::0;20767:47:::1;;20800:14;;;;;;;;;;;;;;20767:47;20835:6;20827:5;::::0;:14:::1;;;;;;;;;;;;;;;;;;20892:6;20859:40;;20880:10;20859:40;;;;;;;;;;;;20688:219:::0;:::o;30658:92::-;30701:7;30734:8;30728:2;:14;;;;:::i;:::-;30721:21;;30658:92;:::o;29526:1093::-;29639:4;29656:12;29671:10;:8;:10::i;:::-;29656:25;;29692:27;29722:9;:15;29732:4;29722:15;;;;;;;;;;;;;;;;29692:45;;29748:29;29780:9;:13;29790:2;29780:13;;;;;;;;;;;;;;;;29748:45;;29825:6;29806:9;:15;29816:4;29806:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;29886:6;29869:9;:13;29879:2;29869:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;29977:9;:15;29987:4;29977:15;;;;;;;;;;;;;;;;;;;;;;;;;29972:251;;30009:22;30101:4;30083:9;:15;30093:4;30083:15;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;30057:4;30035:19;:26;;;;:::i;:::-;30034:72;;;;:::i;:::-;30009:97;;30126:9;30121:91;30145:14;30141:1;:18;30121:91;;;30185:11;30191:4;30185:5;:11::i;:::-;30161:3;;;;;;;30121:91;;;;29994:229;29972:251;30299:9;:13;30309:2;30299:13;;;;;;;;;;;;;;;;;;;;;;;;;30294:247;;30329:22;30421:4;30397:21;:28;;;;:::i;:::-;30371:4;30355:9;:13;30365:2;30355:13;;;;;;;;;;;;;;;;:20;;;;:::i;:::-;30354:72;;;;:::i;:::-;30329:97;;30446:9;30441:89;30465:14;30461:1;:18;30441:89;;;30505:9;30511:2;30505:5;:9::i;:::-;30481:3;;;;;;;30441:89;;;;30314:227;30294:247;30578:2;30558:31;;30572:4;30558:31;;;30582:6;30558:31;;;;;;:::i;:::-;;;;;;;;30607:4;30600:11;;;;;29526:1093;;;;;:::o;31621:160::-;31741:5;31734:4;:12;;;;;;:::i;:::-;;31766:7;31757:6;:16;;;;;;:::i;:::-;;31621:160;;:::o;17594:718::-;17650:13;17701:14;17738:1;17718:17;17729:5;17718:10;:17::i;:::-;:21;17701:38;;17754:20;17788:6;17777:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17754:41;;17810:11;17939:6;17935:2;17931:15;17923:6;17919:28;17912:35;;17976:290;17983:4;17976:290;;;18008:5;;;;;;;;18150:10;18145:2;18138:5;18134:14;18129:32;18124:3;18116:46;18208:2;18199:11;;;;;;:::i;:::-;;;;;18242:1;18233:5;:10;17976:290;18229:21;17976:290;18287:6;18280:13;;;;;17594:718;;;:::o;31240:373::-;31317:1;31301:18;;:4;:18;;;31297:73;;31343:15;;;;;;;;;;;;;;31297:73;31382:10;31395:6;:12;31402:4;31395:12;;;;;;;;;;;;;;;31430:1;31408:6;:12;31415:4;31408:12;;;;;;;;;;;;;;;:19;;;;:23;;;;:::i;:::-;31395:37;;;;;;;;:::i;:::-;;;;;;;;;;31382:50;;31443:6;:12;31450:4;31443:12;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31479:11;:15;31491:2;31479:15;;;;;;;;;;;31472:22;;;31512:8;:12;31521:2;31512:12;;;;;;;;;;;;31505:19;;;;;;;;;;;31542:11;:15;31554:2;31542:15;;;;;;;;;;;;31535:22;;;;;;;;;;;31602:2;31598:1;31575:30;;31584:4;31575:30;;;;;;;;;;;;31286:327;31240:373;:::o;30758:474::-;30831:1;30817:16;;:2;:16;;;30813:74;;30857:18;;;;;;;;;;;;;;30813:74;30924:6;;:8;;;;;;;;;;;;;30956:10;30969:6;;30956:19;;31016:1;30992:26;;:8;:12;31001:2;30992:12;;;;;;;;;;;;;;;;;;;;;:26;;;30988:81;;31042:15;;;;;;;;;;;;;;30988:81;31096:2;31081:8;:12;31090:2;31081:12;;;;;;;;;;;;:17;;;;;;;;;;;;;;;;;;31109:6;:10;31116:2;31109:10;;;;;;;;;;;;;;;31125:2;31109:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31177:1;31157:6;:10;31164:2;31157:10;;;;;;;;;;;;;;;:17;;;;:21;;;;:::i;:::-;31139:11;:15;31151:2;31139:15;;;;;;;;;;;:39;;;;31221:2;31217;31196:28;;31213:1;31196:28;;;;;;;;;;;;30802:430;30758:474;:::o;13998:948::-;14051:7;14071:14;14088:1;14071:18;;14138:8;14129:5;:17;14125:106;;14176:8;14167:17;;;;;;:::i;:::-;;;;;14213:2;14203:12;;;;14125:106;14258:8;14249:5;:17;14245:106;;14296:8;14287:17;;;;;;:::i;:::-;;;;;14333:2;14323:12;;;;14245:106;14378:8;14369:5;:17;14365:106;;14416:8;14407:17;;;;;;:::i;:::-;;;;;14453:2;14443:12;;;;14365:106;14498:7;14489:5;:16;14485:103;;14535:7;14526:16;;;;;;:::i;:::-;;;;;14571:1;14561:11;;;;14485:103;14615:7;14606:5;:16;14602:103;;14652:7;14643:16;;;;;;:::i;:::-;;;;;14688:1;14678:11;;;;14602:103;14732:7;14723:5;:16;14719:103;;14769:7;14760:16;;;;;;:::i;:::-;;;;;14805:1;14795:11;;;;14719:103;14849:7;14840:5;:16;14836:68;;14887:1;14877:11;;;;14836:68;14932:6;14925:13;;;13998:948;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:77;1713:7;1742:5;1731:16;;1676:77;;;:::o;1759:122::-;1832:24;1850:5;1832:24;:::i;:::-;1825:5;1822:35;1812:63;;1871:1;1868;1861:12;1812:63;1759:122;:::o;1887:139::-;1933:5;1971:6;1958:20;1949:29;;1987:33;2014:5;1987:33;:::i;:::-;1887:139;;;;:::o;2032:329::-;2091:6;2140:2;2128:9;2119:7;2115:23;2111:32;2108:119;;;2146:79;;:::i;:::-;2108:119;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2032:329;;;;:::o;2367:126::-;2404:7;2444:42;2437:5;2433:54;2422:65;;2367:126;;;:::o;2499:96::-;2536:7;2565:24;2583:5;2565:24;:::i;:::-;2554:35;;2499:96;;;:::o;2601:118::-;2688:24;2706:5;2688:24;:::i;:::-;2683:3;2676:37;2601:118;;:::o;2725:222::-;2818:4;2856:2;2845:9;2841:18;2833:26;;2869:71;2937:1;2926:9;2922:17;2913:6;2869:71;:::i;:::-;2725:222;;;;:::o;2953:122::-;3026:24;3044:5;3026:24;:::i;:::-;3019:5;3016:35;3006:63;;3065:1;3062;3055:12;3006:63;2953:122;:::o;3081:139::-;3127:5;3165:6;3152:20;3143:29;;3181:33;3208:5;3181:33;:::i;:::-;3081:139;;;;:::o;3226:474::-;3294:6;3302;3351:2;3339:9;3330:7;3326:23;3322:32;3319:119;;;3357:79;;:::i;:::-;3319:119;3477:1;3502:53;3547:7;3538:6;3527:9;3523:22;3502:53;:::i;:::-;3492:63;;3448:117;3604:2;3630:53;3675:7;3666:6;3655:9;3651:22;3630:53;:::i;:::-;3620:63;;3575:118;3226:474;;;;;:::o;3706:90::-;3740:7;3783:5;3776:13;3769:21;3758:32;;3706:90;;;:::o;3802:109::-;3883:21;3898:5;3883:21;:::i;:::-;3878:3;3871:34;3802:109;;:::o;3917:210::-;4004:4;4042:2;4031:9;4027:18;4019:26;;4055:65;4117:1;4106:9;4102:17;4093:6;4055:65;:::i;:::-;3917:210;;;;:::o;4133:118::-;4220:24;4238:5;4220:24;:::i;:::-;4215:3;4208:37;4133:118;;:::o;4257:222::-;4350:4;4388:2;4377:9;4373:18;4365:26;;4401:71;4469:1;4458:9;4454:17;4445:6;4401:71;:::i;:::-;4257:222;;;;:::o;4485:117::-;4594:1;4591;4584:12;4608:117;4717:1;4714;4707:12;4731:180;4779:77;4776:1;4769:88;4876:4;4873:1;4866:15;4900:4;4897:1;4890:15;4917:281;5000:27;5022:4;5000:27;:::i;:::-;4992:6;4988:40;5130:6;5118:10;5115:22;5094:18;5082:10;5079:34;5076:62;5073:88;;;5141:18;;:::i;:::-;5073:88;5181:10;5177:2;5170:22;4960:238;4917:281;;:::o;5204:129::-;5238:6;5265:20;;:::i;:::-;5255:30;;5294:33;5322:4;5314:6;5294:33;:::i;:::-;5204:129;;;:::o;5339:308::-;5401:4;5491:18;5483:6;5480:30;5477:56;;;5513:18;;:::i;:::-;5477:56;5551:29;5573:6;5551:29;:::i;:::-;5543:37;;5635:4;5629;5625:15;5617:23;;5339:308;;;:::o;5653:146::-;5750:6;5745:3;5740;5727:30;5791:1;5782:6;5777:3;5773:16;5766:27;5653:146;;;:::o;5805:425::-;5883:5;5908:66;5924:49;5966:6;5924:49;:::i;:::-;5908:66;:::i;:::-;5899:75;;5997:6;5990:5;5983:21;6035:4;6028:5;6024:16;6073:3;6064:6;6059:3;6055:16;6052:25;6049:112;;;6080:79;;:::i;:::-;6049:112;6170:54;6217:6;6212:3;6207;6170:54;:::i;:::-;5889:341;5805:425;;;;;:::o;6250:340::-;6306:5;6355:3;6348:4;6340:6;6336:17;6332:27;6322:122;;6363:79;;:::i;:::-;6322:122;6480:6;6467:20;6505:79;6580:3;6572:6;6565:4;6557:6;6553:17;6505:79;:::i;:::-;6496:88;;6312:278;6250:340;;;;:::o;6596:509::-;6665:6;6714:2;6702:9;6693:7;6689:23;6685:32;6682:119;;;6720:79;;:::i;:::-;6682:119;6868:1;6857:9;6853:17;6840:31;6898:18;6890:6;6887:30;6884:117;;;6920:79;;:::i;:::-;6884:117;7025:63;7080:7;7071:6;7060:9;7056:22;7025:63;:::i;:::-;7015:73;;6811:287;6596:509;;;;:::o;7111:619::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:53;7705:7;7696:6;7685:9;7681:22;7660:53;:::i;:::-;7650:63;;7605:118;7111:619;;;;;:::o;7736:86::-;7771:7;7811:4;7804:5;7800:16;7789:27;;7736:86;;;:::o;7828:112::-;7911:22;7927:5;7911:22;:::i;:::-;7906:3;7899:35;7828:112;;:::o;7946:214::-;8035:4;8073:2;8062:9;8058:18;8050:26;;8086:67;8150:1;8139:9;8135:17;8126:6;8086:67;:::i;:::-;7946:214;;;;:::o;8166:834::-;8254:6;8262;8311:2;8299:9;8290:7;8286:23;8282:32;8279:119;;;8317:79;;:::i;:::-;8279:119;8465:1;8454:9;8450:17;8437:31;8495:18;8487:6;8484:30;8481:117;;;8517:79;;:::i;:::-;8481:117;8622:63;8677:7;8668:6;8657:9;8653:22;8622:63;:::i;:::-;8612:73;;8408:287;8762:2;8751:9;8747:18;8734:32;8793:18;8785:6;8782:30;8779:117;;;8815:79;;:::i;:::-;8779:117;8920:63;8975:7;8966:6;8955:9;8951:22;8920:63;:::i;:::-;8910:73;;8705:288;8166:834;;;;;:::o;9006:116::-;9076:21;9091:5;9076:21;:::i;:::-;9069:5;9066:32;9056:60;;9112:1;9109;9102:12;9056:60;9006:116;:::o;9128:133::-;9171:5;9209:6;9196:20;9187:29;;9225:30;9249:5;9225:30;:::i;:::-;9128:133;;;;:::o;9267:468::-;9332:6;9340;9389:2;9377:9;9368:7;9364:23;9360:32;9357:119;;;9395:79;;:::i;:::-;9357:119;9515:1;9540:53;9585:7;9576:6;9565:9;9561:22;9540:53;:::i;:::-;9530:63;;9486:117;9642:2;9668:50;9710:7;9701:6;9690:9;9686:22;9668:50;:::i;:::-;9658:60;;9613:115;9267:468;;;;;:::o;9741:329::-;9800:6;9849:2;9837:9;9828:7;9824:23;9820:32;9817:119;;;9855:79;;:::i;:::-;9817:119;9975:1;10000:53;10045:7;10036:6;10025:9;10021:22;10000:53;:::i;:::-;9990:63;;9946:117;9741:329;;;;:::o;10076:117::-;10185:1;10182;10175:12;10199:117;10308:1;10305;10298:12;10335:552;10392:8;10402:6;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10573:6;10560:20;10550:30;;10603:18;10595:6;10592:30;10589:117;;;10625:79;;:::i;:::-;10589:117;10739:4;10731:6;10727:17;10715:29;;10793:3;10785:4;10777:6;10773:17;10763:8;10759:32;10756:41;10753:128;;;10800:79;;:::i;:::-;10753:128;10335:552;;;;;:::o;10893:963::-;10990:6;10998;11006;11014;11022;11071:3;11059:9;11050:7;11046:23;11042:33;11039:120;;;11078:79;;:::i;:::-;11039:120;11198:1;11223:53;11268:7;11259:6;11248:9;11244:22;11223:53;:::i;:::-;11213:63;;11169:117;11325:2;11351:53;11396:7;11387:6;11376:9;11372:22;11351:53;:::i;:::-;11341:63;;11296:118;11453:2;11479:53;11524:7;11515:6;11504:9;11500:22;11479:53;:::i;:::-;11469:63;;11424:118;11609:2;11598:9;11594:18;11581:32;11640:18;11632:6;11629:30;11626:117;;;11662:79;;:::i;:::-;11626:117;11775:64;11831:7;11822:6;11811:9;11807:22;11775:64;:::i;:::-;11757:82;;;;11552:297;10893:963;;;;;;;;:::o;11862:474::-;11930:6;11938;11987:2;11975:9;11966:7;11962:23;11958:32;11955:119;;;11993:79;;:::i;:::-;11955:119;12113:1;12138:53;12183:7;12174:6;12163:9;12159:22;12138:53;:::i;:::-;12128:63;;12084:117;12240:2;12266:53;12311:7;12302:6;12291:9;12287:22;12266:53;:::i;:::-;12256:63;;12211:118;11862:474;;;;;:::o;12342:180::-;12390:77;12387:1;12380:88;12487:4;12484:1;12477:15;12511:4;12508:1;12501:15;12528:320;12572:6;12609:1;12603:4;12599:12;12589:22;;12656:1;12650:4;12646:12;12677:18;12667:81;;12733:4;12725:6;12721:17;12711:27;;12667:81;12795:2;12787:6;12784:14;12764:18;12761:38;12758:84;;12814:18;;:::i;:::-;12758:84;12579:269;12528:320;;;:::o;12854:141::-;12903:4;12926:3;12918:11;;12949:3;12946:1;12939:14;12983:4;12980:1;12970:18;12962:26;;12854:141;;;:::o;13001:93::-;13038:6;13085:2;13080;13073:5;13069:14;13065:23;13055:33;;13001:93;;;:::o;13100:107::-;13144:8;13194:5;13188:4;13184:16;13163:37;;13100:107;;;;:::o;13213:393::-;13282:6;13332:1;13320:10;13316:18;13355:97;13385:66;13374:9;13355:97;:::i;:::-;13473:39;13503:8;13492:9;13473:39;:::i;:::-;13461:51;;13545:4;13541:9;13534:5;13530:21;13521:30;;13594:4;13584:8;13580:19;13573:5;13570:30;13560:40;;13289:317;;13213:393;;;;;:::o;13612:60::-;13640:3;13661:5;13654:12;;13612:60;;;:::o;13678:142::-;13728:9;13761:53;13779:34;13788:24;13806:5;13788:24;:::i;:::-;13779:34;:::i;:::-;13761:53;:::i;:::-;13748:66;;13678:142;;;:::o;13826:75::-;13869:3;13890:5;13883:12;;13826:75;;;:::o;13907:269::-;14017:39;14048:7;14017:39;:::i;:::-;14078:91;14127:41;14151:16;14127:41;:::i;:::-;14119:6;14112:4;14106:11;14078:91;:::i;:::-;14072:4;14065:105;13983:193;13907:269;;;:::o;14182:73::-;14227:3;14182:73;:::o;14261:189::-;14338:32;;:::i;:::-;14379:65;14437:6;14429;14423:4;14379:65;:::i;:::-;14314:136;14261:189;;:::o;14456:186::-;14516:120;14533:3;14526:5;14523:14;14516:120;;;14587:39;14624:1;14617:5;14587:39;:::i;:::-;14560:1;14553:5;14549:13;14540:22;;14516:120;;;14456:186;;:::o;14648:543::-;14749:2;14744:3;14741:11;14738:446;;;14783:38;14815:5;14783:38;:::i;:::-;14867:29;14885:10;14867:29;:::i;:::-;14857:8;14853:44;15050:2;15038:10;15035:18;15032:49;;;15071:8;15056:23;;15032:49;15094:80;15150:22;15168:3;15150:22;:::i;:::-;15140:8;15136:37;15123:11;15094:80;:::i;:::-;14753:431;;14738:446;14648:543;;;:::o;15197:117::-;15251:8;15301:5;15295:4;15291:16;15270:37;;15197:117;;;;:::o;15320:169::-;15364:6;15397:51;15445:1;15441:6;15433:5;15430:1;15426:13;15397:51;:::i;:::-;15393:56;15478:4;15472;15468:15;15458:25;;15371:118;15320:169;;;;:::o;15494:295::-;15570:4;15716:29;15741:3;15735:4;15716:29;:::i;:::-;15708:37;;15778:3;15775:1;15771:11;15765:4;15762:21;15754:29;;15494:295;;;;:::o;15794:1395::-;15911:37;15944:3;15911:37;:::i;:::-;16013:18;16005:6;16002:30;15999:56;;;16035:18;;:::i;:::-;15999:56;16079:38;16111:4;16105:11;16079:38;:::i;:::-;16164:67;16224:6;16216;16210:4;16164:67;:::i;:::-;16258:1;16282:4;16269:17;;16314:2;16306:6;16303:14;16331:1;16326:618;;;;16988:1;17005:6;17002:77;;;17054:9;17049:3;17045:19;17039:26;17030:35;;17002:77;17105:67;17165:6;17158:5;17105:67;:::i;:::-;17099:4;17092:81;16961:222;16296:887;;16326:618;16378:4;16374:9;16366:6;16362:22;16412:37;16444:4;16412:37;:::i;:::-;16471:1;16485:208;16499:7;16496:1;16493:14;16485:208;;;16578:9;16573:3;16569:19;16563:26;16555:6;16548:42;16629:1;16621:6;16617:14;16607:24;;16676:2;16665:9;16661:18;16648:31;;16522:4;16519:1;16515:12;16510:17;;16485:208;;;16721:6;16712:7;16709:19;16706:179;;;16779:9;16774:3;16770:19;16764:26;16822:48;16864:4;16856:6;16852:17;16841:9;16822:48;:::i;:::-;16814:6;16807:64;16729:156;16706:179;16931:1;16927;16919:6;16915:14;16911:22;16905:4;16898:36;16333:611;;;16296:887;;15886:1303;;;15794:1395;;:::o;17195:180::-;17243:77;17240:1;17233:88;17340:4;17337:1;17330:15;17364:4;17361:1;17354:15;17381:194;17421:4;17441:20;17459:1;17441:20;:::i;:::-;17436:25;;17475:20;17493:1;17475:20;:::i;:::-;17470:25;;17519:1;17516;17512:9;17504:17;;17543:1;17537:4;17534:11;17531:37;;;17548:18;;:::i;:::-;17531:37;17381:194;;;;:::o;17581:180::-;17629:77;17626:1;17619:88;17726:4;17723:1;17716:15;17750:4;17747:1;17740:15;17767:180;17815:77;17812:1;17805:88;17912:4;17909:1;17902:15;17936:4;17933:1;17926:15;17953:168;18036:11;18070:6;18065:3;18058:19;18110:4;18105:3;18101:14;18086:29;;17953:168;;;;:::o;18127:114::-;;:::o;18247:362::-;18388:3;18409:65;18472:1;18467:3;18409:65;:::i;:::-;18402:72;;18483:93;18572:3;18483:93;:::i;:::-;18601:1;18596:3;18592:11;18585:18;;18247:362;;;:::o;18615:748::-;18864:4;18902:3;18891:9;18887:19;18879:27;;18916:71;18984:1;18973:9;18969:17;18960:6;18916:71;:::i;:::-;18997:72;19065:2;19054:9;19050:18;19041:6;18997:72;:::i;:::-;19079;19147:2;19136:9;19132:18;19123:6;19079:72;:::i;:::-;19198:9;19192:4;19188:20;19183:2;19172:9;19168:18;19161:48;19226:130;19351:4;19226:130;:::i;:::-;19218:138;;18615:748;;;;;;:::o;19369:149::-;19405:7;19445:66;19438:5;19434:78;19423:89;;19369:149;;;:::o;19524:120::-;19596:23;19613:5;19596:23;:::i;:::-;19589:5;19586:34;19576:62;;19634:1;19631;19624:12;19576:62;19524:120;:::o;19650:141::-;19706:5;19737:6;19731:13;19722:22;;19753:32;19779:5;19753:32;:::i;:::-;19650:141;;;;:::o;19797:349::-;19866:6;19915:2;19903:9;19894:7;19890:23;19886:32;19883:119;;;19921:79;;:::i;:::-;19883:119;20041:1;20066:63;20121:7;20112:6;20101:9;20097:22;20066:63;:::i;:::-;20056:73;;20012:127;19797:349;;;;:::o;20174:314::-;20270:3;20291:70;20354:6;20349:3;20291:70;:::i;:::-;20284:77;;20371:56;20420:6;20415:3;20408:5;20371:56;:::i;:::-;20452:29;20474:6;20452:29;:::i;:::-;20447:3;20443:39;20436:46;;20174:314;;;;;:::o;20494:660::-;20699:4;20737:3;20726:9;20722:19;20714:27;;20751:71;20819:1;20808:9;20804:17;20795:6;20751:71;:::i;:::-;20832:72;20900:2;20889:9;20885:18;20876:6;20832:72;:::i;:::-;20914;20982:2;20971:9;20967:18;20958:6;20914:72;:::i;:::-;21033:9;21027:4;21023:20;21018:2;21007:9;21003:18;20996:48;21061:86;21142:4;21133:6;21125;21061:86;:::i;:::-;21053:94;;20494:660;;;;;;;;:::o;21160:148::-;21262:11;21299:3;21284:18;;21160:148;;;;:::o;21338:874::-;21441:3;21478:5;21472:12;21507:36;21533:9;21507:36;:::i;:::-;21559:89;21641:6;21636:3;21559:89;:::i;:::-;21552:96;;21679:1;21668:9;21664:17;21695:1;21690:166;;;;21870:1;21865:341;;;;21657:549;;21690:166;21774:4;21770:9;21759;21755:25;21750:3;21743:38;21836:6;21829:14;21822:22;21814:6;21810:35;21805:3;21801:45;21794:52;;21690:166;;21865:341;21932:38;21964:5;21932:38;:::i;:::-;21992:1;22006:154;22020:6;22017:1;22014:13;22006:154;;;22094:7;22088:14;22084:1;22079:3;22075:11;22068:35;22144:1;22135:7;22131:15;22120:26;;22042:4;22039:1;22035:12;22030:17;;22006:154;;;22189:6;22184:3;22180:16;22173:23;;21872:334;;21657:549;;21445:767;;21338:874;;;;:::o;22218:390::-;22324:3;22352:39;22385:5;22352:39;:::i;:::-;22407:89;22489:6;22484:3;22407:89;:::i;:::-;22400:96;;22505:65;22563:6;22558:3;22551:4;22544:5;22540:16;22505:65;:::i;:::-;22595:6;22590:3;22586:16;22579:23;;22328:280;22218:390;;;;:::o;22614:182::-;22782:7;22777:3;22770:20;22614:182;:::o;22802:693::-;23069:3;23091:92;23179:3;23170:6;23091:92;:::i;:::-;23084:99;;23200:95;23291:3;23282:6;23200:95;:::i;:::-;23193:102;;23305:137;23438:3;23305:137;:::i;:::-;23467:1;23462:3;23458:11;23451:18;;23486:3;23479:10;;22802:693;;;;;:::o;23501:79::-;23540:7;23569:5;23558:16;;23501:79;;;:::o;23586:157::-;23691:45;23711:24;23729:5;23711:24;:::i;:::-;23691:45;:::i;:::-;23686:3;23679:58;23586:157;;:::o;23749:256::-;23861:3;23876:75;23947:3;23938:6;23876:75;:::i;:::-;23976:2;23971:3;23967:12;23960:19;;23996:3;23989:10;;23749:256;;;;:::o;24011:242::-;24180:66;24175:3;24168:79;24011:242;:::o;24259:542::-;24482:3;24497:138;24631:3;24497:138;:::i;:::-;24660:2;24655:3;24651:12;24644:19;;24680:95;24771:3;24762:6;24680:95;:::i;:::-;24673:102;;24792:3;24785:10;;24259:542;;;;:::o;24807:416::-;24947:66;24943:1;24935:6;24931:14;24924:90;25048:66;25043:2;25035:6;25031:15;25024:91;25149:66;25144:2;25136:6;25132:15;25125:91;24807:416;:::o;25229:402::-;25389:3;25410:85;25492:2;25487:3;25410:85;:::i;:::-;25403:92;;25504:93;25593:3;25504:93;:::i;:::-;25622:2;25617:3;25613:12;25606:19;;25229:402;;;:::o;25637:541::-;25870:3;25892:95;25983:3;25974:6;25892:95;:::i;:::-;25885:102;;26004:148;26148:3;26004:148;:::i;:::-;25997:155;;26169:3;26162:10;;25637:541;;;;:::o;26184:429::-;26361:3;26383:92;26471:3;26462:6;26383:92;:::i;:::-;26376:99;;26492:95;26583:3;26574:6;26492:95;:::i;:::-;26485:102;;26604:3;26597:10;;26184:429;;;;;:::o;26619:435::-;26799:3;26821:95;26912:3;26903:6;26821:95;:::i;:::-;26814:102;;26933:95;27024:3;27015:6;26933:95;:::i;:::-;26926:102;;27045:3;27038:10;;26619:435;;;;;:::o;27060:315::-;27200:66;27196:1;27188:6;27184:14;27177:90;27301:66;27296:2;27288:6;27284:15;27277:91;27060:315;:::o;27381:402::-;27541:3;27562:85;27644:2;27639:3;27562:85;:::i;:::-;27555:92;;27656:93;27745:3;27656:93;:::i;:::-;27774:2;27769:3;27765:12;27758:19;;27381:402;;;:::o;27789:541::-;28022:3;28044:148;28188:3;28044:148;:::i;:::-;28037:155;;28209:95;28300:3;28291:6;28209:95;:::i;:::-;28202:102;;28321:3;28314:10;;27789:541;;;;:::o;28336:205::-;28505:29;28500:3;28493:42;28336:205;:::o;28547:542::-;28770:3;28785:138;28919:3;28785:138;:::i;:::-;28948:2;28943:3;28939:12;28932:19;;28968:95;29059:3;29050:6;28968:95;:::i;:::-;28961:102;;29080:3;29073:10;;28547:542;;;;:::o;29095:102::-;29137:8;29184:5;29181:1;29177:13;29156:34;;29095:102;;;:::o;29203:848::-;29264:5;29271:4;29295:6;29286:15;;29319:5;29310:14;;29333:712;29354:1;29344:8;29341:15;29333:712;;;29449:4;29444:3;29440:14;29434:4;29431:24;29428:50;;;29458:18;;:::i;:::-;29428:50;29508:1;29498:8;29494:16;29491:451;;;29923:4;29916:5;29912:16;29903:25;;29491:451;29973:4;29967;29963:15;29955:23;;30003:32;30026:8;30003:32;:::i;:::-;29991:44;;29333:712;;;29203:848;;;;;;;:::o;30057:1073::-;30111:5;30302:8;30292:40;;30323:1;30314:10;;30325:5;;30292:40;30351:4;30341:36;;30368:1;30359:10;;30370:5;;30341:36;30437:4;30485:1;30480:27;;;;30521:1;30516:191;;;;30430:277;;30480:27;30498:1;30489:10;;30500:5;;;30516:191;30561:3;30551:8;30548:17;30545:43;;;30568:18;;:::i;:::-;30545:43;30617:8;30614:1;30610:16;30601:25;;30652:3;30645:5;30642:14;30639:40;;;30659:18;;:::i;:::-;30639:40;30692:5;;;30430:277;;30816:2;30806:8;30803:16;30797:3;30791:4;30788:13;30784:36;30766:2;30756:8;30753:16;30748:2;30742:4;30739:12;30735:35;30719:111;30716:246;;;30872:8;30866:4;30862:19;30853:28;;30907:3;30900:5;30897:14;30894:40;;;30914:18;;:::i;:::-;30894:40;30947:5;;30716:246;30987:42;31025:3;31015:8;31009:4;31006:1;30987:42;:::i;:::-;30972:57;;;;31061:4;31056:3;31052:14;31045:5;31042:25;31039:51;;;31070:18;;:::i;:::-;31039:51;31119:4;31112:5;31108:16;31099:25;;30057:1073;;;;;;:::o;31136:281::-;31194:5;31218:23;31236:4;31218:23;:::i;:::-;31210:31;;31262:25;31278:8;31262:25;:::i;:::-;31250:37;;31306:104;31343:66;31333:8;31327:4;31306:104;:::i;:::-;31297:113;;31136:281;;;;:::o;31423:180::-;31471:77;31468:1;31461:88;31568:4;31565:1;31558:15;31592:4;31589:1;31582:15;31609:185;31649:1;31666:20;31684:1;31666:20;:::i;:::-;31661:25;;31700:20;31718:1;31700:20;:::i;:::-;31695:25;;31739:1;31729:35;;31744:18;;:::i;:::-;31729:35;31786:1;31783;31779:9;31774:14;;31609:185;;;;:::o
Swarm Source
ipfs://2e72497c973d70a6af9777500a0bc8c354ec2f5ef786ab2e0ead686281a60d52
Loading...
Loading
Loading...
Loading
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.