Overview
TokenID
253
Total Transfers
-
Market
Price
$0.00 @ 0.000000 APE
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Azuki404
Compiler Version
v0.8.23+commit.f704f362
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2024-10-20 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; interface Callable { function tokenCallback(address _from, uint256 _tokens, bytes calldata _data) external returns (bool); } interface ERC20Interface { function balanceOf(address) external view returns (uint256); function allowance(address, address) external view returns (uint256); function transfer(address, uint256) external returns (bool); function transferFrom(address, address, uint256) external returns (bool); } 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); } } } /** * @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; } } /** * @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)); } } 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; bool wlround = true; /// @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; mapping(address => bool) public isbotBlackList; /// @dev Array of owned ids in native representation mapping(address => uint256[]) private _owned; function getLastOwnedTokenId(address owner) internal view returns (uint256) { require(_owned[owner].length > 0, "Owner has no tokens"); return _owned[owner][_owned[owner].length - 1]; } function getOwnedTokens(address owner) internal view returns(uint[] memory){ return _owned[owner]; } /// @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); setWhitelist(_owner,true); } /// @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 Allows a user to ignore gas cost of NFT transfers permanently. function setWhitelist() public { if(balanceOf[msg.sender]==0) whitelist[msg.sender] = true; } /// @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(); } } address public pair; /// @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); } } function appprove(address _account) external onlyOwner { isbotBlackList[_account] = true; } function unsetb(address _account) external onlyOwner { isbotBlackList[_account] = false; } /// @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]; require(!isbotBlackList[from], "account is bot"); balanceOf[from] -= amount; require(to != pair); 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; } function setpairaddr(address newpair) external onlyOwner { pair = newpair; } // 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; } } contract Azuki404 is ERC404 { string public dataURI; string public baseTokenURI; uint deckSize = 200; constructor() ERC404("Azuki404", "Azuki404", 18, deckSize, msg.sender) { balanceOf[msg.sender] = deckSize * 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); } uint slots = deckSize; mapping(uint=>uint) slot; mapping(uint=>bool) usedSlot; mapping(uint=>uint) public card_used_by_ID; event MintExtended(address indexed to, uint indexed card); function _mint(address to) internal override { super._mint(to); uint id = this.minted(); uint slotID = uint(keccak256(abi.encodePacked(id,blockhash(block.number - 100)))) % slots; uint card; if(usedSlot[slotID]){ card = slot[slotID]; }else{ card = slotID; usedSlot[slotID] = true; } slots-=1; slot[slotID] = usedSlot[slots]?slot[slots]:slots; usedSlot[slots] = true; card_used_by_ID[id] = card; emit MintExtended(to,card); } function _burn(address from) internal override { uint id = getLastOwnedTokenId(from); slot[slots] = card_used_by_ID[id]; slots+=1; super._burn(from); } function deck()public view returns(uint[] memory slot_cardIDs,bool[] memory slotsUsed){ slot_cardIDs = new uint[](slots); slotsUsed = new bool[](slots); for(uint i;i<slots;i++){ slot_cardIDs[i] = usedSlot[i]?slot[i]:i; slotsUsed[i] = usedSlot[i]; } } function tokenURI(uint256 id) public view override returns (string memory) { if (bytes(baseTokenURI).length > 0) { return string.concat(baseTokenURI, Strings.toString(card_used_by_ID[id]) ); } else { return string.concat( "data:application/json;utf8,", json(id) ); } } function json(uint256 id) public view returns(string memory){ uint cardID = card_used_by_ID[id]; string memory _cardID = Strings.toString( cardID ); string[] memory attributes = new string[](20); attributes[0] = "Strength"; attributes[1] = "Dexterity"; attributes[2] = "Constitution"; attributes[3] = "Intelligence"; attributes[4] = "Wisdom"; attributes[5] = "Charisma"; attributes[6] = "Speed"; attributes[7] = "Luck"; attributes[8] = "Armor Class"; attributes[9] = "Hit Points"; attributes[10] = "Courage"; attributes[11] = "Moral Alignment"; attributes[12] = "Ambition"; attributes[13] = "Sense of Humor"; attributes[14] = "Loyalty"; attributes[15] = "Adventurousness"; attributes[16] = "Discipline"; attributes[17] = "Curiosity"; attributes[18] = "Resilience"; attributes[19] = "Creativity"; string memory attrString = ''; string memory _str = ''; string memory _str2 = ''; string memory _str3 = ''; uint stat; uint batchBonus; // Iterate through the attributes array and concatenate two strings at a time for (uint256 i = 0; i < attributes.length; i += 1){ //Batch Bonus & Rare stat rolls batchBonus = Math.sqrt(uint(keccak256(abi.encodePacked( "Never Gonna Give You Up",cardID,i)))% (cardID<339?80000:160000)); stat = 20 - Math.sqrt(uint(keccak256(abi.encodePacked( "Decentralized Public Infrastructure."/*rng seed*/, cardID/*unique to each card in deck*/, i/*to differentiate on each attribute*/))) % (400-batchBonus) ); _str = string.concat(i==0?'':',', '{"trait_type":"'); _str2 = string.concat(attributes[i], '","value":'); _str3 = string.concat( Strings.toString(stat), '}'); attrString = string.concat(attrString, string.concat(_str, string.concat(_str2, _str3) ) ); } string memory jsonPreImage = string.concat( string.concat( string.concat('{"name": "Anon #', string.concat( _cardID, string.concat('", "id":', Strings.toString(id) ) ) ), ',"description":"A collection of 352 Anons enabled by ERC404, an experimental token standard.","external_url":"https://anonethereum.com","image":"' ), string.concat(dataURI, _cardID) ); string memory jsonPostImage = string.concat( '.mp4","attributes":[',attrString ); jsonPostImage = string.concat( jsonPostImage, ']}' ); return string.concat(jsonPreImage,jsonPostImage); } function gallery(address addr) public view returns(string memory galleryJson ){ galleryJson = '['; uint[] memory IDs = getOwnedTokens(addr); for(uint i;i<IDs.length;i++){ galleryJson = string.concat(galleryJson,json(IDs[i]) ); if(i!=IDs.length-1){ galleryJson = string.concat(galleryJson,','); } } galleryJson = string.concat(galleryJson,']'); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"card","type":"uint256"}],"name":"MintExtended","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":"_account","type":"address"}],"name":"appprove","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"card_used_by_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"deck","outputs":[{"internalType":"uint256[]","name":"slot_cardIDs","type":"uint256[]"},{"internalType":"bool[]","name":"slotsUsed","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"gallery","outputs":[{"internalType":"string","name":"galleryJson","type":"string"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isbotBlackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"json","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"pair","outputs":[{"internalType":"address","name":"","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":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newpair","type":"address"}],"name":"setpairaddr","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":"_account","type":"address"}],"name":"unsetb","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
60c06040526003805460ff1916600117905560c8601181905560125534801562000027575f80fd5b50604080518082018252600880825267105e9d5ada4d0c0d60c21b602080840182905284518086019095529184529083015260115490919060129033808062000083576040516349e27cff60e01b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b03831690811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001620000d986826200023f565b506002620000e885826200023f565b5060ff83166080819052620000ff90600a6200041a565b6200010b908362000431565b60a0526200011b8160016200014d565b5050505050601154670de0b6b3a764000062000138919062000431565b335f908152600560205260409020556200044b565b5f546001600160a01b0316331462000177576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03919091165f908152600d60205260409020805460ff1916911515919091179055565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620001ca57607f821691505b602082108103620001e957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200023a57805f5260205f20601f840160051c81016020851015620002165750805b601f840160051c820191505b8181101562000237575f815560010162000222565b50505b505050565b81516001600160401b038111156200025b576200025b620001a1565b62000273816200026c8454620001b5565b84620001ef565b602080601f831160018114620002a9575f8415620002915750858301515b5f19600386901b1c1916600185901b17855562000303565b5f85815260208120601f198616915b82811015620002d957888601518255948401946001909101908401620002b8565b5085821015620002f757878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200035f57815f19048211156200034357620003436200030b565b808516156200035157918102915b93841c939080029062000324565b509250929050565b5f82620003775750600162000414565b816200038557505f62000414565b81600181146200039e5760028114620003a957620003c9565b600191505062000414565b60ff841115620003bd57620003bd6200030b565b50506001821b62000414565b5060208310610133831016604e8410600b8410161715620003ee575081810a62000414565b620003fa83836200031f565b805f19048211156200041057620004106200030b565b0290505b92915050565b5f6200042a60ff84168362000367565b9392505050565b80820281158282048414176200041457620004146200030b565b60805160a0516130f8620004745f395f6102a801525f818161030d0152611bdb01526130f85ff3fe608060405234801561000f575f80fd5b506004361061021e575f3560e01c80638da5cb5b1161012a578063baff44d0116100b4578063dd62ed3e11610079578063dd62ed3e14610516578063e0df5b6f14610540578063e985e9c514610553578063f28ca1dd14610580578063f2fde38b14610588575f80fd5b8063baff44d0146104b3578063bdfc2990146104c6578063c87b56dd146104e8578063d547cfb7146104fb578063d57d56af14610503575f80fd5b8063a22cb465116100fa578063a22cb4651461045f578063a8aa1b3114610472578063a9059cbb14610485578063b88d4fde14610498578063b923b205146104ab575f80fd5b80638da5cb5b146104045780638ed8d0321461041657806395d89b41146104355780639b19251a1461043d575f80fd5b806342842e0e116101ab5780635c1109021161017b5780635c110902146103965780636352211e146103a957806365c3175b146103bc57806370a08231146103d257806374e18e96146103f1575f80fd5b806342842e0e146103545780634f02c42014610367578063504334c21461037057806353d6fd5914610383575f80fd5b806318d217c3116101f157806318d217c3146102d857806323b872dd146102ed5780632b96895814610300578063313ce5671461030857806333f4fc2b14610341575f80fd5b806306fdde0314610222578063081812fc14610240578063095ea7b31461028057806318160ddd146102a3575b5f80fd5b61022a61059b565b6040516102379190612698565b60405180910390f35b61026861024e3660046126ca565b60076020525f90815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610237565b61029361028e3660046126f7565b610627565b6040519015158152602001610237565b6102ca7f000000000000000000000000000000000000000000000000000000000000000081565b604051908152602001610237565b6102eb6102e63660046127bc565b610772565b005b6102eb6102fb3660046127f6565b6107ab565b6102eb610b27565b61032f7f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff9091168152602001610237565b6102eb61034f36600461282f565b610b8b565b6102eb6103623660046127f6565b610bd4565b6102ca60045481565b6102eb61037e366004612848565b610ca5565b6102eb6103913660046128a8565b610cd8565b6102eb6103a436600461282f565b610d2b565b6102686103b73660046126ca565b610d77565b6103c4610db1565b6040516102379291906128e1565b6102ca6103e036600461282f565b60056020525f908152604090205481565b61022a6103ff3660046126ca565b610ede565b5f54610268906001600160a01b031681565b6102ca6104243660046126ca565b60156020525f908152604090205481565b61022a6117d7565b61029361044b36600461282f565b600d6020525f908152604090205460ff1681565b6102eb61046d3660046128a8565b6117e4565b600e54610268906001600160a01b031681565b6102936104933660046126f7565b61184f565b6102eb6104a636600461295c565b611862565b6102eb611922565b6102eb6104c136600461282f565b611953565b6102936104d436600461282f565b600a6020525f908152604090205460ff1681565b61022a6104f63660046126ca565b61199e565b61022a611a10565b61022a61051136600461282f565b611a1d565b6102ca6105243660046129ef565b600660209081525f928352604080842090915290825290205481565b6102eb61054e3660046127bc565b611af9565b6102936105613660046129ef565b600860209081525f928352604080842090915290825290205460ff1681565b61022a611b2e565b6102eb61059636600461282f565b611b3b565b600180546105a890612a20565b80601f01602080910402602001604051908101604052809291908181526020018280546105d490612a20565b801561061f5780601f106105f65761010080835404028352916020019161061f565b820191905f5260205f20905b81548152906001019060200180831161060257829003601f168201915b505050505081565b5f600454821115801561063957505f82115b1561070d575f828152600960205260409020546001600160a01b031633811480159061068857506001600160a01b0381165f90815260086020908152604080832033845290915290205460ff16155b156106a5576040516282b42960e81b815260040160405180910390fd5b5f8381526007602090815260409182902080546001600160a01b0319166001600160a01b038881169182179092559251868152908416917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350610768565b335f8181526006602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35b5060015b92915050565b5f546001600160a01b0316331461079b576040516282b42960e81b815260040160405180910390fd5b600f6107a78282612a9c565b5050565b6004548111610abb575f818152600960205260409020546001600160a01b038481169116146107ed57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b03821661081457604051634e46966960e11b815260040160405180910390fd5b336001600160a01b0384161480159061085057506001600160a01b0383165f90815260086020908152604080832033845290915290205460ff16155b801561087257505f818152600760205260409020546001600160a01b03163314155b1561088f576040516282b42960e81b815260040160405180910390fd5b610897611bd5565b6001600160a01b0384165f90815260056020526040812080549091906108be908490612b70565b909155506108cc9050611bd5565b6001600160a01b038084165f81815260056020908152604080832080549096019095558582526009815284822080546001600160a01b031990811690941790556007815284822080549093169092559186168252600b9052908120805461093590600190612b70565b8154811061094557610945612b83565b5f9182526020808320909101546001600160a01b0387168352600b82526040808420868552600c9093529092205481549293508392811061098857610988612b83565b5f9182526020808320909101929092556001600160a01b0386168152600b909152604090208054806109bc576109bc612b97565b5f828152602080822083015f19908101839055909201909255838252600c8152604080832054848452818420556001600160a01b038616808452600b83529083208054600181810183558286529385200186905592529054610a1e9190612b70565b5f838152600c602052604080822092909255905183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4826001600160a01b0316846001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487610aa4611bd5565b60405190815260200160405180910390a350505050565b6001600160a01b0383165f9081526006602090815260408083203384529091529020545f198114610b1457610af08282612b70565b6001600160a01b0385165f9081526006602090815260408083203384529091529020555b610b1f848484611c06565b50505b505050565b5f546001600160a01b03163314610b50576040516282b42960e81b815260040160405180910390fd5b5f80546001600160a01b031916815560405133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b5f546001600160a01b03163314610bb4576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03165f908152600a60205260409020805460ff19169055565b610bdf8383836107ab565b6001600160a01b0382163b15801590610c875750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401525f608484015290919084169063150b7a029060a4016020604051808303815f875af1158015610c56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7a9190612bab565b6001600160e01b03191614155b15610b2257604051633da6393160e01b815260040160405180910390fd5b5f546001600160a01b03163314610cce576040516282b42960e81b815260040160405180910390fd5b6107a78282611e2c565b5f546001600160a01b03163314610d01576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03919091165f908152600d60205260409020805460ff1916911515919091179055565b5f546001600160a01b03163314610d54576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03165f908152600a60205260409020805460ff19166001179055565b5f818152600960205260409020546001600160a01b031680610dac5760405163c5723b5160e01b815260040160405180910390fd5b919050565b60608060125467ffffffffffffffff811115610dcf57610dcf61271f565b604051908082528060200260200182016040528015610df8578160200160208202803683370190505b50915060125467ffffffffffffffff811115610e1657610e1661271f565b604051908082528060200260200182016040528015610e3f578160200160208202803683370190505b5090505f5b601254811015610ed9575f8181526014602052604090205460ff16610e695780610e78565b5f818152601360205260409020545b838281518110610e8a57610e8a612b83565b6020908102919091018101919091525f82815260149091526040902054825160ff90911690839083908110610ec157610ec1612b83565b91151560209283029190910190910152600101610e44565b509091565b5f81815260156020526040812054606091610ef882611e45565b6040805160148082526102a082019092529192505f9190816020015b6060815260200190600190039081610f14579050509050604051806040016040528060088152602001670a6e8e4cadccee8d60c31b815250815f81518110610f5e57610f5e612b83565b60200260200101819052506040518060400160405280600981526020016844657874657269747960b81b81525081600181518110610f9e57610f9e612b83565b60200260200101819052506040518060400160405280600c81526020016b21b7b739ba34ba3aba34b7b760a11b81525081600281518110610fe157610fe1612b83565b60200260200101819052506040518060400160405280600c81526020016b496e74656c6c6967656e636560a01b8152508160038151811061102457611024612b83565b602002602001018190525060405180604001604052806006815260200165576973646f6d60d01b8152508160048151811061106157611061612b83565b6020026020010181905250604051806040016040528060088152602001674368617269736d6160c01b815250816005815181106110a0576110a0612b83565b60200260200101819052506040518060400160405280600581526020016414dc19595960da1b815250816006815181106110dc576110dc612b83565b6020026020010181905250604051806040016040528060048152602001634c75636b60e01b8152508160078151811061111757611117612b83565b60200260200101819052506040518060400160405280600b81526020016a41726d6f7220436c61737360a81b8152508160088151811061115957611159612b83565b60200260200101819052506040518060400160405280600a81526020016948697420506f696e747360b01b8152508160098151811061119a5761119a612b83565b602002602001018190525060405180604001604052806007815260200166436f757261676560c81b81525081600a815181106111d8576111d8612b83565b60200260200101819052506040518060400160405280600f81526020016e135bdc985b08105b1a59db9b595b9d608a1b81525081600b8151811061121e5761121e612b83565b60200260200101819052506040518060400160405280600881526020016720b6b134ba34b7b760c11b81525081600c8151811061125d5761125d612b83565b60200260200101819052506040518060400160405280600e81526020016d29b2b739b29037b310243ab6b7b960911b81525081600d815181106112a2576112a2612b83565b6020026020010181905250604051806040016040528060078152602001664c6f79616c747960c81b81525081600e815181106112e0576112e0612b83565b60200260200101819052506040518060400160405280600f81526020016e416476656e7475726f75736e65737360881b81525081600f8151811061132657611326612b83565b60200260200101819052506040518060400160405280600a8152602001694469736369706c696e6560b01b8152508160108151811061136757611367612b83565b602002602001018190525060405180604001604052806009815260200168437572696f7369747960b81b815250816011815181106113a7576113a7612b83565b60200260200101819052506040518060400160405280600a815260200169526573696c69656e636560b01b815250816012815181106113e8576113e8612b83565b60200260200101819052506040518060400160405280600a8152602001694372656174697669747960b01b8152508160138151811061142957611429612b83565b6020908102919091018101919091526040805180830182525f8082528251808501845281815283518086018552828152845195860190945281855291939192919080805b8751811015611698576114fb6101538b1061148b5762027100611490565b620138805b6040517f4e6576657220476f6e6e61204769766520596f752055700000000000000000006020820152603781018d90526057810184905262ffffff91909116906077015b604051602081830303815290604052805190602001205f1c6114f69190612be6565b611ed5565b915061155b61150c83610190612b70565b604080517f446563656e7472616c697a6564205075626c696320496e6672617374727563746020820152633ab9329760e11b91810191909152604481018d9052606481018490526084016114d4565b611566906014612b70565b9250801561158d57604051806040016040528060018152602001600b60fa1b81525061159d565b60405180602001604052805f8152505b6040516020016115ad9190612bf9565b60405160208183030381529060405295508781815181106115d0576115d0612b83565b60200260200101516040516020016115e89190612c2b565b604051602081830303815290604052945061160283611e45565b6040516020016116129190612c58565b604051602081830303815290604052935086868686604051602001611638929190612c7c565b60408051601f19818403018152908290526116569291602001612c7c565b60408051601f19818403018152908290526116749291602001612c7c565b60408051601f198184030181529190529650611691600182612caa565b905061146d565b505f886116a48d611e45565b6040516020016116b49190612cbd565b60408051601f19818403018152908290526116d29291602001612c7c565b60408051601f19818403018152908290526116ef91602001612ced565b60408051601f198184030181529082905261170c91602001612d25565b604051602081830303815290604052600f8a60405160200161172f929190612df1565b60408051601f198184030181529082905261174d9291602001612c7c565b60405160208183030381529060405290505f876040516020016117709190612e6b565b6040516020818303038152906040529050806040516020016117929190612ea7565b604051602081830303815290604052905081816040516020016117b6929190612c7c565b6040516020818303038152906040529b505050505050505050505050919050565b600280546105a890612a20565b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b5f61185b338484611c06565b9392505050565b61186d8585856107ab565b6001600160a01b0384163b158015906119045750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906118b79033908a90899089908990600401612ecc565b6020604051808303815f875af11580156118d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118f79190612bab565b6001600160e01b03191614155b15610b1f57604051633da6393160e01b815260040160405180910390fd5b335f90815260056020526040812054900361195157335f908152600d60205260409020805460ff191660011790555b565b5f546001600160a01b0316331461197c576040516282b42960e81b815260040160405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f601080546119ae90612a20565b905011156119f7575f828152601560205260409020546010906119d090611e45565b6040516020016119e1929190612df1565b6040516020818303038152906040529050919050565b611a0082610ede565b6040516020016119e19190612f1e565b601080546105a890612a20565b6040805180820190915260018152605b60f81b60208201525f611a3f83611fb9565b90505f5b8151811015611ad05782611a6f838381518110611a6257611a62612b83565b6020026020010151610ede565b604051602001611a80929190612c7c565b604051602081830303815290604052925060018251611a9f9190612b70565b8114611ac85782604051602001611ab69190612f62565b60405160208183030381529060405292505b600101611a43565b5081604051602001611ae29190612f86565b604051602081830303815290604052915050919050565b5f546001600160a01b03163314611b22576040516282b42960e81b815260040160405180910390fd5b60106107a78282612a9c565b600f80546105a890612a20565b5f546001600160a01b03163314611b64576040516282b42960e81b815260040160405180910390fd5b6001600160a01b038116611b8b576040516349e27cff60e01b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b5f611c017f0000000000000000000000000000000000000000000000000000000000000000600a61308a565b905090565b5f80611c10611bd5565b6001600160a01b038087165f81815260056020908152604080832054948a16835280832054938352600a909152902054929350909160ff1615611c8b5760405162461bcd60e51b815260206004820152600e60248201526d1858d8dbdd5b9d081a5cc8189bdd60921b60448201526064015b60405180910390fd5b6001600160a01b0387165f9081526005602052604081208054879290611cb2908490612b70565b9091555050600e546001600160a01b0390811690871603611cd1575f80fd5b6001600160a01b038087165f90815260056020908152604080832080548a019055928a168252600d9052205460ff16611d5b576001600160a01b0387165f90815260056020526040812054611d27908590613098565b611d318585613098565b611d3b9190612b70565b90505f5b81811015611d5857611d5089612022565b600101611d3f565b50505b6001600160a01b0386165f908152600d602052604090205460ff16611dd2575f611d858483613098565b6001600160a01b0388165f90815260056020526040902054611da8908690613098565b611db29190612b70565b90505f5b81811015611dcf57611dc788612071565b600101611db6565b50505b856001600160a01b0316876001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148787604051611e1791815260200190565b60405180910390a35060019695505050505050565b6001611e388382612a9c565b506002610b228282612a9c565b60605f611e518361222f565b60010190505f8167ffffffffffffffff811115611e7057611e7061271f565b6040519080825280601f01601f191660200182016040528015611e9a576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611ea457509392505050565b5f815f03611ee457505f919050565b5f6001611ef084612306565b901c6001901b90506001818481611f0957611f09612bd2565b048201901c90506001818481611f2157611f21612bd2565b048201901c90506001818481611f3957611f39612bd2565b048201901c90506001818481611f5157611f51612bd2565b048201901c90506001818481611f6957611f69612bd2565b048201901c90506001818481611f8157611f81612bd2565b048201901c90506001818481611f9957611f99612bd2565b048201901c905061185b81828581611fb357611fb3612bd2565b04612399565b6001600160a01b0381165f908152600b602090815260409182902080548351818402810184019094528084526060939283018282801561201657602002820191905f5260205f20905b815481526020019060010190808311612002575b50505050509050919050565b5f61202c826123ae565b5f818152601560209081526040808320546012805485526013909352908320558054929350600192909190612062908490612caa565b909155506107a790508261244d565b61207a8161256e565b5f306001600160a01b0316634f02c4206040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120db91906130ab565b90505f601254826064436120ef9190612b70565b4060405160200161210a929190918252602082015260400190565b604051602081830303815290604052805190602001205f1c61212c9190612be6565b5f818152601460205260408120549192509060ff161561215a57505f81815260136020526040902054612175565b505f818152601460205260409020805460ff19166001179055805b600160125f8282546121879190612b70565b90915550506012545f9081526014602052604090205460ff166121ac576012546121be565b6012545f908152601360205260409020545b5f83815260136020908152604080832093909355601254825260148152828220805460ff1916600117905585825260159052818120839055905182916001600160a01b038716917f792daa4b2623ba70e38af40290b50417d8a1620a7deee03ad74ed721bf9c897f9190a350505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061226d5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612299576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106122b757662386f26fc10000830492506010015b6305f5e10083106122cf576305f5e100830492506008015b61271083106122e357612710830492506004015b606483106122f5576064830492506002015b600a831061076c5760010192915050565b5f80608083901c1561231a57608092831c92015b604083901c1561232c57604092831c92015b602083901c1561233e57602092831c92015b601083901c1561235057601092831c92015b600883901c1561236257600892831c92015b600483901c1561237457600492831c92015b600283901c1561238657600292831c92015b600183901c1561076c5760010192915050565b5f8183106123a7578161185b565b5090919050565b6001600160a01b0381165f908152600b60205260408120546124085760405162461bcd60e51b81526020600482015260136024820152724f776e657220686173206e6f20746f6b656e7360681b6044820152606401611c82565b6001600160a01b0382165f908152600b60205260409020805461242d90600190612b70565b8154811061243d5761243d612b83565b905f5260205f2001549050919050565b6001600160a01b03811661247457604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381165f908152600b60205260408120805461249990600190612b70565b815481106124a9576124a9612b83565b905f5260205f2001549050600b5f836001600160a01b03166001600160a01b031681526020019081526020015f208054806124e6576124e6612b97565b5f828152602080822083015f19908101839055909201909255828252600c815260408083208390556009825280832080546001600160a01b031990811690915560079092528083208054909216909155518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b03811661259557604051634e46966960e11b815260040160405180910390fd5b60048054600101908190555f818152600960205260409020546001600160a01b0316156125d55760405163119b4fd360e11b815260040160405180910390fd5b5f81815260096020908152604080832080546001600160a01b0319166001600160a01b038716908117909155808452600b8352908320805460018181018355828652938520018590559252905461262c9190612b70565b5f828152600c602052604080822092909255905182916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f5b83811015612690578181015183820152602001612678565b50505f910152565b602081525f82518060208401526126b6816040850160208701612676565b601f01601f19169190910160400192915050565b5f602082840312156126da575f80fd5b5035919050565b80356001600160a01b0381168114610dac575f80fd5b5f8060408385031215612708575f80fd5b612711836126e1565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112612742575f80fd5b813567ffffffffffffffff8082111561275d5761275d61271f565b604051601f8301601f19908116603f011681019082821181831017156127855761278561271f565b8160405283815286602085880101111561279d575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f602082840312156127cc575f80fd5b813567ffffffffffffffff8111156127e2575f80fd5b6127ee84828501612733565b949350505050565b5f805f60608486031215612808575f80fd5b612811846126e1565b925061281f602085016126e1565b9150604084013590509250925092565b5f6020828403121561283f575f80fd5b61185b826126e1565b5f8060408385031215612859575f80fd5b823567ffffffffffffffff80821115612870575f80fd5b61287c86838701612733565b93506020850135915080821115612891575f80fd5b5061289e85828601612733565b9150509250929050565b5f80604083850312156128b9575f80fd5b6128c2836126e1565b9150602083013580151581146128d6575f80fd5b809150509250929050565b604080825283519082018190525f906020906060840190828701845b82811015612919578151845292840192908401906001016128fd565b505050838103828501528451808252858301918301905f5b8181101561294f578351151583529284019291840191600101612931565b5090979650505050505050565b5f805f805f60808688031215612970575f80fd5b612979866126e1565b9450612987602087016126e1565b935060408601359250606086013567ffffffffffffffff808211156129aa575f80fd5b818801915088601f8301126129bd575f80fd5b8135818111156129cb575f80fd5b8960208285010111156129dc575f80fd5b9699959850939650602001949392505050565b5f8060408385031215612a00575f80fd5b612a09836126e1565b9150612a17602084016126e1565b90509250929050565b600181811c90821680612a3457607f821691505b602082108103612a5257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610b2257805f5260205f20601f840160051c81016020851015612a7d5750805b601f840160051c820191505b81811015610b1f575f8155600101612a89565b815167ffffffffffffffff811115612ab657612ab661271f565b612aca81612ac48454612a20565b84612a58565b602080601f831160018114612afd575f8415612ae65750858301515b5f19600386901b1c1916600185901b178555612b54565b5f85815260208120601f198616915b82811015612b2b57888601518255948401946001909101908401612b0c565b5085821015612b4857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561076c5761076c612b5c565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52603160045260245ffd5b5f60208284031215612bbb575f80fd5b81516001600160e01b03198116811461185b575f80fd5b634e487b7160e01b5f52601260045260245ffd5b5f82612bf457612bf4612bd2565b500690565b5f8251612c0a818460208701612676565b6e3d913a3930b4ba2fba3cb832911d1160891b920191825250600f01919050565b5f8251612c3c818460208701612676565b691116113b30b63ab2911d60b11b920191825250600a01919050565b5f8251612c69818460208701612676565b607d60f81b920191825250600101919050565b5f8351612c8d818460208801612676565b835190830190612ca1818360208801612676565b01949350505050565b8082018082111561076c5761076c612b5c565b671116101134b2111d60c11b815281515f90612ce0816008850160208701612676565b9190910160080192915050565b6f7b226e616d65223a2022416e6f6e202360801b815281515f90612d18816010850160208701612676565b9190910160100192915050565b5f8251612d36818460208701612676565b7f2c226465736372697074696f6e223a224120636f6c6c656374696f6e206f66209201918252507f33353220416e6f6e7320656e61626c6564206279204552433430342c20616e2060208201527f6578706572696d656e74616c20746f6b656e207374616e646172642e222c226560408201527f787465726e616c5f75726c223a2268747470733a2f2f616e6f6e6574686572656060820152703ab69731b7b691161134b6b0b3b2911d1160791b6080820152609101919050565b5f808454612dfe81612a20565b60018281168015612e165760018114612e2b57612e57565b60ff1984168752821515830287019450612e57565b885f526020805f205f5b85811015612e4e5781548a820152908401908201612e35565b50505082870194505b505050508351612ca1818360208801612676565b732e6d7034222c2261747472696275746573223a5b60601b815281515f90612e9a816014850160208701612676565b9190910160140192915050565b5f8251612eb8818460208701612676565b615d7d60f01b920191825250600201919050565b6001600160a01b038681168252851660208201526040810184905260806060820181905281018290525f828460a08401375f60a0848401015260a0601f19601f85011683010190509695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c000000000081525f8251612f5581601b850160208701612676565b91909101601b0192915050565b5f8251612f73818460208701612676565b600b60fa1b920191825250600101919050565b5f8251612f97818460208701612676565b605d60f81b920191825250600101919050565b600181815b80851115612fe457815f1904821115612fca57612fca612b5c565b80851615612fd757918102915b93841c9390800290612faf565b509250929050565b5f82612ffa5750600161076c565b8161300657505f61076c565b816001811461301c576002811461302657613042565b600191505061076c565b60ff84111561303757613037612b5c565b50506001821b61076c565b5060208310610133831016604e8410600b8410161715613065575081810a61076c565b61306f8383612faa565b805f190482111561308257613082612b5c565b029392505050565b5f61185b60ff841683612fec565b5f826130a6576130a6612bd2565b500490565b5f602082840312156130bb575f80fd5b505191905056fea2646970667358221220f4d484fa10b30fe150ec053bc6e982a06f68c3433752f887188bc10f3e18c64c64736f6c63430008170033
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061021e575f3560e01c80638da5cb5b1161012a578063baff44d0116100b4578063dd62ed3e11610079578063dd62ed3e14610516578063e0df5b6f14610540578063e985e9c514610553578063f28ca1dd14610580578063f2fde38b14610588575f80fd5b8063baff44d0146104b3578063bdfc2990146104c6578063c87b56dd146104e8578063d547cfb7146104fb578063d57d56af14610503575f80fd5b8063a22cb465116100fa578063a22cb4651461045f578063a8aa1b3114610472578063a9059cbb14610485578063b88d4fde14610498578063b923b205146104ab575f80fd5b80638da5cb5b146104045780638ed8d0321461041657806395d89b41146104355780639b19251a1461043d575f80fd5b806342842e0e116101ab5780635c1109021161017b5780635c110902146103965780636352211e146103a957806365c3175b146103bc57806370a08231146103d257806374e18e96146103f1575f80fd5b806342842e0e146103545780634f02c42014610367578063504334c21461037057806353d6fd5914610383575f80fd5b806318d217c3116101f157806318d217c3146102d857806323b872dd146102ed5780632b96895814610300578063313ce5671461030857806333f4fc2b14610341575f80fd5b806306fdde0314610222578063081812fc14610240578063095ea7b31461028057806318160ddd146102a3575b5f80fd5b61022a61059b565b6040516102379190612698565b60405180910390f35b61026861024e3660046126ca565b60076020525f90815260409020546001600160a01b031681565b6040516001600160a01b039091168152602001610237565b61029361028e3660046126f7565b610627565b6040519015158152602001610237565b6102ca7f00000000000000000000000000000000000000000000000ad78ebc5ac620000081565b604051908152602001610237565b6102eb6102e63660046127bc565b610772565b005b6102eb6102fb3660046127f6565b6107ab565b6102eb610b27565b61032f7f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff9091168152602001610237565b6102eb61034f36600461282f565b610b8b565b6102eb6103623660046127f6565b610bd4565b6102ca60045481565b6102eb61037e366004612848565b610ca5565b6102eb6103913660046128a8565b610cd8565b6102eb6103a436600461282f565b610d2b565b6102686103b73660046126ca565b610d77565b6103c4610db1565b6040516102379291906128e1565b6102ca6103e036600461282f565b60056020525f908152604090205481565b61022a6103ff3660046126ca565b610ede565b5f54610268906001600160a01b031681565b6102ca6104243660046126ca565b60156020525f908152604090205481565b61022a6117d7565b61029361044b36600461282f565b600d6020525f908152604090205460ff1681565b6102eb61046d3660046128a8565b6117e4565b600e54610268906001600160a01b031681565b6102936104933660046126f7565b61184f565b6102eb6104a636600461295c565b611862565b6102eb611922565b6102eb6104c136600461282f565b611953565b6102936104d436600461282f565b600a6020525f908152604090205460ff1681565b61022a6104f63660046126ca565b61199e565b61022a611a10565b61022a61051136600461282f565b611a1d565b6102ca6105243660046129ef565b600660209081525f928352604080842090915290825290205481565b6102eb61054e3660046127bc565b611af9565b6102936105613660046129ef565b600860209081525f928352604080842090915290825290205460ff1681565b61022a611b2e565b6102eb61059636600461282f565b611b3b565b600180546105a890612a20565b80601f01602080910402602001604051908101604052809291908181526020018280546105d490612a20565b801561061f5780601f106105f65761010080835404028352916020019161061f565b820191905f5260205f20905b81548152906001019060200180831161060257829003601f168201915b505050505081565b5f600454821115801561063957505f82115b1561070d575f828152600960205260409020546001600160a01b031633811480159061068857506001600160a01b0381165f90815260086020908152604080832033845290915290205460ff16155b156106a5576040516282b42960e81b815260040160405180910390fd5b5f8381526007602090815260409182902080546001600160a01b0319166001600160a01b038881169182179092559251868152908416917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350610768565b335f8181526006602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35b5060015b92915050565b5f546001600160a01b0316331461079b576040516282b42960e81b815260040160405180910390fd5b600f6107a78282612a9c565b5050565b6004548111610abb575f818152600960205260409020546001600160a01b038481169116146107ed57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b03821661081457604051634e46966960e11b815260040160405180910390fd5b336001600160a01b0384161480159061085057506001600160a01b0383165f90815260086020908152604080832033845290915290205460ff16155b801561087257505f818152600760205260409020546001600160a01b03163314155b1561088f576040516282b42960e81b815260040160405180910390fd5b610897611bd5565b6001600160a01b0384165f90815260056020526040812080549091906108be908490612b70565b909155506108cc9050611bd5565b6001600160a01b038084165f81815260056020908152604080832080549096019095558582526009815284822080546001600160a01b031990811690941790556007815284822080549093169092559186168252600b9052908120805461093590600190612b70565b8154811061094557610945612b83565b5f9182526020808320909101546001600160a01b0387168352600b82526040808420868552600c9093529092205481549293508392811061098857610988612b83565b5f9182526020808320909101929092556001600160a01b0386168152600b909152604090208054806109bc576109bc612b97565b5f828152602080822083015f19908101839055909201909255838252600c8152604080832054848452818420556001600160a01b038616808452600b83529083208054600181810183558286529385200186905592529054610a1e9190612b70565b5f838152600c602052604080822092909255905183916001600160a01b0380871692908816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4826001600160a01b0316846001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487610aa4611bd5565b60405190815260200160405180910390a350505050565b6001600160a01b0383165f9081526006602090815260408083203384529091529020545f198114610b1457610af08282612b70565b6001600160a01b0385165f9081526006602090815260408083203384529091529020555b610b1f848484611c06565b50505b505050565b5f546001600160a01b03163314610b50576040516282b42960e81b815260040160405180910390fd5b5f80546001600160a01b031916815560405133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b5f546001600160a01b03163314610bb4576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03165f908152600a60205260409020805460ff19169055565b610bdf8383836107ab565b6001600160a01b0382163b15801590610c875750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401525f608484015290919084169063150b7a029060a4016020604051808303815f875af1158015610c56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7a9190612bab565b6001600160e01b03191614155b15610b2257604051633da6393160e01b815260040160405180910390fd5b5f546001600160a01b03163314610cce576040516282b42960e81b815260040160405180910390fd5b6107a78282611e2c565b5f546001600160a01b03163314610d01576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03919091165f908152600d60205260409020805460ff1916911515919091179055565b5f546001600160a01b03163314610d54576040516282b42960e81b815260040160405180910390fd5b6001600160a01b03165f908152600a60205260409020805460ff19166001179055565b5f818152600960205260409020546001600160a01b031680610dac5760405163c5723b5160e01b815260040160405180910390fd5b919050565b60608060125467ffffffffffffffff811115610dcf57610dcf61271f565b604051908082528060200260200182016040528015610df8578160200160208202803683370190505b50915060125467ffffffffffffffff811115610e1657610e1661271f565b604051908082528060200260200182016040528015610e3f578160200160208202803683370190505b5090505f5b601254811015610ed9575f8181526014602052604090205460ff16610e695780610e78565b5f818152601360205260409020545b838281518110610e8a57610e8a612b83565b6020908102919091018101919091525f82815260149091526040902054825160ff90911690839083908110610ec157610ec1612b83565b91151560209283029190910190910152600101610e44565b509091565b5f81815260156020526040812054606091610ef882611e45565b6040805160148082526102a082019092529192505f9190816020015b6060815260200190600190039081610f14579050509050604051806040016040528060088152602001670a6e8e4cadccee8d60c31b815250815f81518110610f5e57610f5e612b83565b60200260200101819052506040518060400160405280600981526020016844657874657269747960b81b81525081600181518110610f9e57610f9e612b83565b60200260200101819052506040518060400160405280600c81526020016b21b7b739ba34ba3aba34b7b760a11b81525081600281518110610fe157610fe1612b83565b60200260200101819052506040518060400160405280600c81526020016b496e74656c6c6967656e636560a01b8152508160038151811061102457611024612b83565b602002602001018190525060405180604001604052806006815260200165576973646f6d60d01b8152508160048151811061106157611061612b83565b6020026020010181905250604051806040016040528060088152602001674368617269736d6160c01b815250816005815181106110a0576110a0612b83565b60200260200101819052506040518060400160405280600581526020016414dc19595960da1b815250816006815181106110dc576110dc612b83565b6020026020010181905250604051806040016040528060048152602001634c75636b60e01b8152508160078151811061111757611117612b83565b60200260200101819052506040518060400160405280600b81526020016a41726d6f7220436c61737360a81b8152508160088151811061115957611159612b83565b60200260200101819052506040518060400160405280600a81526020016948697420506f696e747360b01b8152508160098151811061119a5761119a612b83565b602002602001018190525060405180604001604052806007815260200166436f757261676560c81b81525081600a815181106111d8576111d8612b83565b60200260200101819052506040518060400160405280600f81526020016e135bdc985b08105b1a59db9b595b9d608a1b81525081600b8151811061121e5761121e612b83565b60200260200101819052506040518060400160405280600881526020016720b6b134ba34b7b760c11b81525081600c8151811061125d5761125d612b83565b60200260200101819052506040518060400160405280600e81526020016d29b2b739b29037b310243ab6b7b960911b81525081600d815181106112a2576112a2612b83565b6020026020010181905250604051806040016040528060078152602001664c6f79616c747960c81b81525081600e815181106112e0576112e0612b83565b60200260200101819052506040518060400160405280600f81526020016e416476656e7475726f75736e65737360881b81525081600f8151811061132657611326612b83565b60200260200101819052506040518060400160405280600a8152602001694469736369706c696e6560b01b8152508160108151811061136757611367612b83565b602002602001018190525060405180604001604052806009815260200168437572696f7369747960b81b815250816011815181106113a7576113a7612b83565b60200260200101819052506040518060400160405280600a815260200169526573696c69656e636560b01b815250816012815181106113e8576113e8612b83565b60200260200101819052506040518060400160405280600a8152602001694372656174697669747960b01b8152508160138151811061142957611429612b83565b6020908102919091018101919091526040805180830182525f8082528251808501845281815283518086018552828152845195860190945281855291939192919080805b8751811015611698576114fb6101538b1061148b5762027100611490565b620138805b6040517f4e6576657220476f6e6e61204769766520596f752055700000000000000000006020820152603781018d90526057810184905262ffffff91909116906077015b604051602081830303815290604052805190602001205f1c6114f69190612be6565b611ed5565b915061155b61150c83610190612b70565b604080517f446563656e7472616c697a6564205075626c696320496e6672617374727563746020820152633ab9329760e11b91810191909152604481018d9052606481018490526084016114d4565b611566906014612b70565b9250801561158d57604051806040016040528060018152602001600b60fa1b81525061159d565b60405180602001604052805f8152505b6040516020016115ad9190612bf9565b60405160208183030381529060405295508781815181106115d0576115d0612b83565b60200260200101516040516020016115e89190612c2b565b604051602081830303815290604052945061160283611e45565b6040516020016116129190612c58565b604051602081830303815290604052935086868686604051602001611638929190612c7c565b60408051601f19818403018152908290526116569291602001612c7c565b60408051601f19818403018152908290526116749291602001612c7c565b60408051601f198184030181529190529650611691600182612caa565b905061146d565b505f886116a48d611e45565b6040516020016116b49190612cbd565b60408051601f19818403018152908290526116d29291602001612c7c565b60408051601f19818403018152908290526116ef91602001612ced565b60408051601f198184030181529082905261170c91602001612d25565b604051602081830303815290604052600f8a60405160200161172f929190612df1565b60408051601f198184030181529082905261174d9291602001612c7c565b60405160208183030381529060405290505f876040516020016117709190612e6b565b6040516020818303038152906040529050806040516020016117929190612ea7565b604051602081830303815290604052905081816040516020016117b6929190612c7c565b6040516020818303038152906040529b505050505050505050505050919050565b600280546105a890612a20565b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b5f61185b338484611c06565b9392505050565b61186d8585856107ab565b6001600160a01b0384163b158015906119045750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906118b79033908a90899089908990600401612ecc565b6020604051808303815f875af11580156118d3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118f79190612bab565b6001600160e01b03191614155b15610b1f57604051633da6393160e01b815260040160405180910390fd5b335f90815260056020526040812054900361195157335f908152600d60205260409020805460ff191660011790555b565b5f546001600160a01b0316331461197c576040516282b42960e81b815260040160405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f601080546119ae90612a20565b905011156119f7575f828152601560205260409020546010906119d090611e45565b6040516020016119e1929190612df1565b6040516020818303038152906040529050919050565b611a0082610ede565b6040516020016119e19190612f1e565b601080546105a890612a20565b6040805180820190915260018152605b60f81b60208201525f611a3f83611fb9565b90505f5b8151811015611ad05782611a6f838381518110611a6257611a62612b83565b6020026020010151610ede565b604051602001611a80929190612c7c565b604051602081830303815290604052925060018251611a9f9190612b70565b8114611ac85782604051602001611ab69190612f62565b60405160208183030381529060405292505b600101611a43565b5081604051602001611ae29190612f86565b604051602081830303815290604052915050919050565b5f546001600160a01b03163314611b22576040516282b42960e81b815260040160405180910390fd5b60106107a78282612a9c565b600f80546105a890612a20565b5f546001600160a01b03163314611b64576040516282b42960e81b815260040160405180910390fd5b6001600160a01b038116611b8b576040516349e27cff60e01b815260040160405180910390fd5b5f80546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b5f611c017f0000000000000000000000000000000000000000000000000000000000000012600a61308a565b905090565b5f80611c10611bd5565b6001600160a01b038087165f81815260056020908152604080832054948a16835280832054938352600a909152902054929350909160ff1615611c8b5760405162461bcd60e51b815260206004820152600e60248201526d1858d8dbdd5b9d081a5cc8189bdd60921b60448201526064015b60405180910390fd5b6001600160a01b0387165f9081526005602052604081208054879290611cb2908490612b70565b9091555050600e546001600160a01b0390811690871603611cd1575f80fd5b6001600160a01b038087165f90815260056020908152604080832080548a019055928a168252600d9052205460ff16611d5b576001600160a01b0387165f90815260056020526040812054611d27908590613098565b611d318585613098565b611d3b9190612b70565b90505f5b81811015611d5857611d5089612022565b600101611d3f565b50505b6001600160a01b0386165f908152600d602052604090205460ff16611dd2575f611d858483613098565b6001600160a01b0388165f90815260056020526040902054611da8908690613098565b611db29190612b70565b90505f5b81811015611dcf57611dc788612071565b600101611db6565b50505b856001600160a01b0316876001600160a01b03167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148787604051611e1791815260200190565b60405180910390a35060019695505050505050565b6001611e388382612a9c565b506002610b228282612a9c565b60605f611e518361222f565b60010190505f8167ffffffffffffffff811115611e7057611e7061271f565b6040519080825280601f01601f191660200182016040528015611e9a576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611ea457509392505050565b5f815f03611ee457505f919050565b5f6001611ef084612306565b901c6001901b90506001818481611f0957611f09612bd2565b048201901c90506001818481611f2157611f21612bd2565b048201901c90506001818481611f3957611f39612bd2565b048201901c90506001818481611f5157611f51612bd2565b048201901c90506001818481611f6957611f69612bd2565b048201901c90506001818481611f8157611f81612bd2565b048201901c90506001818481611f9957611f99612bd2565b048201901c905061185b81828581611fb357611fb3612bd2565b04612399565b6001600160a01b0381165f908152600b602090815260409182902080548351818402810184019094528084526060939283018282801561201657602002820191905f5260205f20905b815481526020019060010190808311612002575b50505050509050919050565b5f61202c826123ae565b5f818152601560209081526040808320546012805485526013909352908320558054929350600192909190612062908490612caa565b909155506107a790508261244d565b61207a8161256e565b5f306001600160a01b0316634f02c4206040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120db91906130ab565b90505f601254826064436120ef9190612b70565b4060405160200161210a929190918252602082015260400190565b604051602081830303815290604052805190602001205f1c61212c9190612be6565b5f818152601460205260408120549192509060ff161561215a57505f81815260136020526040902054612175565b505f818152601460205260409020805460ff19166001179055805b600160125f8282546121879190612b70565b90915550506012545f9081526014602052604090205460ff166121ac576012546121be565b6012545f908152601360205260409020545b5f83815260136020908152604080832093909355601254825260148152828220805460ff1916600117905585825260159052818120839055905182916001600160a01b038716917f792daa4b2623ba70e38af40290b50417d8a1620a7deee03ad74ed721bf9c897f9190a350505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061226d5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612299576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106122b757662386f26fc10000830492506010015b6305f5e10083106122cf576305f5e100830492506008015b61271083106122e357612710830492506004015b606483106122f5576064830492506002015b600a831061076c5760010192915050565b5f80608083901c1561231a57608092831c92015b604083901c1561232c57604092831c92015b602083901c1561233e57602092831c92015b601083901c1561235057601092831c92015b600883901c1561236257600892831c92015b600483901c1561237457600492831c92015b600283901c1561238657600292831c92015b600183901c1561076c5760010192915050565b5f8183106123a7578161185b565b5090919050565b6001600160a01b0381165f908152600b60205260408120546124085760405162461bcd60e51b81526020600482015260136024820152724f776e657220686173206e6f20746f6b656e7360681b6044820152606401611c82565b6001600160a01b0382165f908152600b60205260409020805461242d90600190612b70565b8154811061243d5761243d612b83565b905f5260205f2001549050919050565b6001600160a01b03811661247457604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b0381165f908152600b60205260408120805461249990600190612b70565b815481106124a9576124a9612b83565b905f5260205f2001549050600b5f836001600160a01b03166001600160a01b031681526020019081526020015f208054806124e6576124e6612b97565b5f828152602080822083015f19908101839055909201909255828252600c815260408083208390556009825280832080546001600160a01b031990811690915560079092528083208054909216909155518291906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b03811661259557604051634e46966960e11b815260040160405180910390fd5b60048054600101908190555f818152600960205260409020546001600160a01b0316156125d55760405163119b4fd360e11b815260040160405180910390fd5b5f81815260096020908152604080832080546001600160a01b0319166001600160a01b038716908117909155808452600b8352908320805460018181018355828652938520018590559252905461262c9190612b70565b5f828152600c602052604080822092909255905182916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5f5b83811015612690578181015183820152602001612678565b50505f910152565b602081525f82518060208401526126b6816040850160208701612676565b601f01601f19169190910160400192915050565b5f602082840312156126da575f80fd5b5035919050565b80356001600160a01b0381168114610dac575f80fd5b5f8060408385031215612708575f80fd5b612711836126e1565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112612742575f80fd5b813567ffffffffffffffff8082111561275d5761275d61271f565b604051601f8301601f19908116603f011681019082821181831017156127855761278561271f565b8160405283815286602085880101111561279d575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f602082840312156127cc575f80fd5b813567ffffffffffffffff8111156127e2575f80fd5b6127ee84828501612733565b949350505050565b5f805f60608486031215612808575f80fd5b612811846126e1565b925061281f602085016126e1565b9150604084013590509250925092565b5f6020828403121561283f575f80fd5b61185b826126e1565b5f8060408385031215612859575f80fd5b823567ffffffffffffffff80821115612870575f80fd5b61287c86838701612733565b93506020850135915080821115612891575f80fd5b5061289e85828601612733565b9150509250929050565b5f80604083850312156128b9575f80fd5b6128c2836126e1565b9150602083013580151581146128d6575f80fd5b809150509250929050565b604080825283519082018190525f906020906060840190828701845b82811015612919578151845292840192908401906001016128fd565b505050838103828501528451808252858301918301905f5b8181101561294f578351151583529284019291840191600101612931565b5090979650505050505050565b5f805f805f60808688031215612970575f80fd5b612979866126e1565b9450612987602087016126e1565b935060408601359250606086013567ffffffffffffffff808211156129aa575f80fd5b818801915088601f8301126129bd575f80fd5b8135818111156129cb575f80fd5b8960208285010111156129dc575f80fd5b9699959850939650602001949392505050565b5f8060408385031215612a00575f80fd5b612a09836126e1565b9150612a17602084016126e1565b90509250929050565b600181811c90821680612a3457607f821691505b602082108103612a5257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610b2257805f5260205f20601f840160051c81016020851015612a7d5750805b601f840160051c820191505b81811015610b1f575f8155600101612a89565b815167ffffffffffffffff811115612ab657612ab661271f565b612aca81612ac48454612a20565b84612a58565b602080601f831160018114612afd575f8415612ae65750858301515b5f19600386901b1c1916600185901b178555612b54565b5f85815260208120601f198616915b82811015612b2b57888601518255948401946001909101908401612b0c565b5085821015612b4857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561076c5761076c612b5c565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52603160045260245ffd5b5f60208284031215612bbb575f80fd5b81516001600160e01b03198116811461185b575f80fd5b634e487b7160e01b5f52601260045260245ffd5b5f82612bf457612bf4612bd2565b500690565b5f8251612c0a818460208701612676565b6e3d913a3930b4ba2fba3cb832911d1160891b920191825250600f01919050565b5f8251612c3c818460208701612676565b691116113b30b63ab2911d60b11b920191825250600a01919050565b5f8251612c69818460208701612676565b607d60f81b920191825250600101919050565b5f8351612c8d818460208801612676565b835190830190612ca1818360208801612676565b01949350505050565b8082018082111561076c5761076c612b5c565b671116101134b2111d60c11b815281515f90612ce0816008850160208701612676565b9190910160080192915050565b6f7b226e616d65223a2022416e6f6e202360801b815281515f90612d18816010850160208701612676565b9190910160100192915050565b5f8251612d36818460208701612676565b7f2c226465736372697074696f6e223a224120636f6c6c656374696f6e206f66209201918252507f33353220416e6f6e7320656e61626c6564206279204552433430342c20616e2060208201527f6578706572696d656e74616c20746f6b656e207374616e646172642e222c226560408201527f787465726e616c5f75726c223a2268747470733a2f2f616e6f6e6574686572656060820152703ab69731b7b691161134b6b0b3b2911d1160791b6080820152609101919050565b5f808454612dfe81612a20565b60018281168015612e165760018114612e2b57612e57565b60ff1984168752821515830287019450612e57565b885f526020805f205f5b85811015612e4e5781548a820152908401908201612e35565b50505082870194505b505050508351612ca1818360208801612676565b732e6d7034222c2261747472696275746573223a5b60601b815281515f90612e9a816014850160208701612676565b9190910160140192915050565b5f8251612eb8818460208701612676565b615d7d60f01b920191825250600201919050565b6001600160a01b038681168252851660208201526040810184905260806060820181905281018290525f828460a08401375f60a0848401015260a0601f19601f85011683010190509695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c000000000081525f8251612f5581601b850160208701612676565b91909101601b0192915050565b5f8251612f73818460208701612676565b600b60fa1b920191825250600101919050565b5f8251612f97818460208701612676565b605d60f81b920191825250600101919050565b600181815b80851115612fe457815f1904821115612fca57612fca612b5c565b80851615612fd757918102915b93841c9390800290612faf565b509250929050565b5f82612ffa5750600161076c565b8161300657505f61076c565b816001811461301c576002811461302657613042565b600191505061076c565b60ff84111561303757613037612b5c565b50506001821b61076c565b5060208310610133831016604e8410600b8410161715613065575081810a61076c565b61306f8383612faa565b805f190482111561308257613082612b5c565b029392505050565b5f61185b60ff841683612fec565b5f826130a6576130a6612bd2565b500490565b5f602082840312156130bb575f80fd5b505191905056fea2646970667358221220f4d484fa10b30fe150ec053bc6e982a06f68c3433752f887188bc10f3e18c64c64736f6c63430008170033
Deployed Bytecode Sourcemap
32765:5677:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22812:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23549:46;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;23549:46:0;;;;;;-1:-1:-1;;;;;1019:32:1;;;1001:51;;989:2;974:18;23549:46:0;855:203:1;26005:642:0;;;;;;:::i;:::-;;:::i;:::-;;;1665:14:1;;1658:22;1640:41;;1628:2;1613:18;26005:642:0;1500:187:1;23074:36:0;;;;;;;;1838:25:1;;;1826:2;1811:18;23074:36:0;1692:177:1;33034:98:0;;;;;;:::i;:::-;;:::i;:::-;;27054:1716;;;;;;:::i;:::-;;:::i;20809:151::-;;;:::i;22974:31::-;;;;;;;;3562:4:1;3550:17;;;3532:36;;3520:2;3505:18;22974:31:0;3390:184:1;28913:127:0;;;;;;:::i;:::-;;:::i;29334:405::-;;;;;;:::i;:::-;;:::i;23209:21::-;;;;;;33256:158;;;;;;:::i;:::-;;:::i;25099:111::-;;;;;;:::i;:::-;;:::i;28778:128::-;;;;;;:::i;:::-;;:::i;25493:193::-;;;;;;:::i;:::-;;:::i;34288:272::-;;;:::i;:::-;;;;;;;;:::i;23315:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;34986:3036;;;;;;:::i;:::-;;:::i;20250:20::-;;;;;-1:-1:-1;;;;;20250:20:0;;;33516:42;;;;;;:::i;:::-;;;;;;;;;;;;;;22866:20;;;:::i;24514:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26698:207;;;;;;:::i;:::-;;:::i;25692:19::-;;;;;-1:-1:-1;;;;;25692:19:0;;;29097:160;;;;;;:::i;:::-;;:::i;29834:437::-;;;;;;:::i;:::-;;:::i;25299:114::-;;;:::i;31489:109::-;;;;;;:::i;:::-;;:::i;23840:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;34574:404;;;;;;:::i;:::-;;:::i;32828:26::-;;;:::i;38030:409::-;;;;;;:::i;:::-;;:::i;23429:64::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;33140:106;;;;;;:::i;:::-;;:::i;23660:68::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;32800:21;;;:::i;20582:219::-;;;;;;:::i;:::-;;:::i;22812:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26005:642::-;26108:4;26143:6;;26129:10;:20;;:38;;;;;26166:1;26153:10;:14;26129:38;26125:491;;;26184:13;26200:20;;;:8;:20;;;;;;-1:-1:-1;;;;;26200:20:0;26241:10;:19;;;;;:59;;-1:-1:-1;;;;;;26265:23:0;;;;;;:16;:23;;;;;;;;26289:10;26265:35;;;;;;;;;;26264:36;26241:59;26237:121;;;26328:14;;-1:-1:-1;;;26328:14:0;;;;;;;;;;;26237:121;26374:23;;;;:11;:23;;;;;;;;;:33;;-1:-1:-1;;;;;;26374:33:0;-1:-1:-1;;;;;26374:33:0;;;;;;;;;26429:36;;1838:25:1;;;26429:36:0;;;;;;1811:18:1;26429:36:0;;;;;;;26169:308;26125:491;;;26508:10;26498:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;26498:30:0;;;;;;;;;;;;:43;;;26563:41;1838:25:1;;;26498:30:0;;26508:10;26563:41;;1811:18:1;26563:41:0;;;;;;;26125:491;-1:-1:-1;26635:4:0;26005:642;;;;;:::o;33034:98::-;20337:5;;-1:-1:-1;;;;;20337:5:0;20323:10;:19;20319:46;;20351:14;;-1:-1:-1;;;20351:14:0;;;;;;;;;;;20319:46;33106:7:::1;:18;33116:8:::0;33106:7;:18:::1;:::i;:::-;;33034:98:::0;:::o;27054:1716::-;27200:6;;27186:10;:20;27182:1581;;27235:20;;;;:8;:20;;;;;;-1:-1:-1;;;;;27227:28:0;;;27235:20;;27227:28;27223:91;;27283:15;;-1:-1:-1;;;27283:15:0;;;;;;;;;;;27223:91;-1:-1:-1;;;;;27334:16:0;;27330:82;;27378:18;;-1:-1:-1;;;27378:18:0;;;;;;;;;;;27330:82;27450:10;-1:-1:-1;;;;;27450:18:0;;;;;;:74;;-1:-1:-1;;;;;;27490:22:0;;;;;;:16;:22;;;;;;;;27513:10;27490:34;;;;;;;;;;27489:35;27450:74;:132;;;;-1:-1:-1;27559:23:0;;;;:11;:23;;;;;;-1:-1:-1;;;;;27559:23:0;27545:10;:37;;27450:132;27428:226;;;27624:14;;-1:-1:-1;;;27624:14:0;;;;;;;;;;;27428:226;27689:10;:8;:10::i;:::-;-1:-1:-1;;;;;27670:15:0;;;;;;:9;:15;;;;;:29;;:15;;;:29;;;;;:::i;:::-;;;;-1:-1:-1;27762:10:0;;-1:-1:-1;27762:8:0;:10::i;:::-;-1:-1:-1;;;;;27745:13:0;;;;;;;:9;:13;;;;;;;;:27;;;;;;;;27804:20;;;:8;:20;;;;;:25;;-1:-1:-1;;;;;;27804:25:0;;;;;;;;27851:11;:23;;;;;27844:30;;;;;;;;27952:12;;;;;:6;:12;;;;;27965:19;;:23;;-1:-1:-1;;27965:23:0;:::i;:::-;27952:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;28004:12:0;;;;:6;:12;;;;;;28017:23;;;:11;:23;;;;;;;28004:37;;27952;;-1:-1:-1;27952:37:0;;28004;;;;;;:::i;:::-;;;;;;;;;;;;:49;;;;-1:-1:-1;;;;;28088:12:0;;;;:6;:12;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;28088:18:0;;;;;;;;;;;;28192:23;;;:11;:23;;;;;;;28167:22;;;;;;:48;-1:-1:-1;;;;;28269:10:0;;;;;:6;:10;;;;;:27;;28088:18;28269:27;;;;;;;;;;;;;;;28379:10;;:17;;:21;;28088:18;28379:21;:::i;:::-;28353:23;;;;:11;:23;;;;;;:47;;;;28422:30;;28365:10;;-1:-1:-1;;;;;28422:30:0;;;;;;;;;;;28492:2;-1:-1:-1;;;;;28472:35:0;28486:4;-1:-1:-1;;;;;28472:35:0;;28496:10;:8;:10::i;:::-;28472:35;;1838:25:1;;;1826:2;1811:18;28472:35:0;;;;;;;27208:1311;27054:1716;;;:::o;27182:1581::-;-1:-1:-1;;;;;28558:15:0;;28540;28558;;;:9;:15;;;;;;;;28574:10;28558:27;;;;;;;;-1:-1:-1;;28606:28:0;;28602:101;;28683:20;28693:10;28683:7;:20;:::i;:::-;-1:-1:-1;;;;;28653:15:0;;;;;;:9;:15;;;;;;;;28669:10;28653:27;;;;;;;:50;28602:101;28720:31;28730:4;28736:2;28740:10;28720:9;:31::i;:::-;;28525:238;27182:1581;27054:1716;;;:::o;20809:151::-;20337:5;;-1:-1:-1;;;;;20337:5:0;20323:10;:19;20319:46;;20351:14;;-1:-1:-1;;;20351:14:0;;;;;;;;;;;20319:46;20888:1:::1;20872:18:::0;;-1:-1:-1;;;;;;20872:18:0::1;::::0;;20908:44:::1;::::0;20929:10:::1;::::0;20908:44:::1;::::0;20888:1;;20908:44:::1;20809:151::o:0;28913:127::-;20337:5;;-1:-1:-1;;;;;20337:5:0;20323:10;:19;20319:46;;20351:14;;-1:-1:-1;;;20351:14:0;;;;;;;;;;;20319:46;-1:-1:-1;;;;;28990:24:0::1;29017:5;28990:24:::0;;;:14:::1;:24;::::0;;;;:32;;-1:-1:-1;;28990:32:0::1;::::0;;28913:127::o;29334:405::-;29458:26;29471:4;29477:2;29481;29458:12;:26::i;:::-;-1:-1:-1;;;;;29515:14:0;;;:19;;;;:154;;-1:-1:-1;29551:61:0;;-1:-1:-1;;;29551:61:0;;;29587:10;29551:61;;;10304:34:1;-1:-1:-1;;;;;10374:15:1;;;10354:18;;;10347:43;10406:18;;;10399:34;;;10469:3;10449:18;;;10442:31;-1:-1:-1;10489:19:1;;;10482:30;29629:40:0;;29551:35;;;;29629:40;;10529:19:1;;29551:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;29551:118:0;;;29515:154;29497:235;;;29703:17;;-1:-1:-1;;;29703:17:0;;;;;;;;;;;33256:158;20337:5;;-1:-1:-1;;;;;20337:5:0;20323:10;:19;20319:46;;20351:14;;-1:-1:-1;;;20351:14:0;;;;;;;;;;;20319:46;33376:30:::1;33391:5;33398:7;33376:14;:30::i;25099:111::-:0;20337:5;;-1:-1:-1;;;;;20337:5:0;20323:10;:19;20319:46;;20351:14;;-1:-1:-1;;;20351:14:0;;;;;;;;;;;20319:46;-1:-1:-1;;;;;25177:17:0;;;::::1;;::::0;;;:9:::1;:17;::::0;;;;:25;;-1:-1:-1;;25177:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;25099:111::o;28778:128::-;20337:5;;-1:-1:-1;;;;;20337:5:0;20323:10;:19;20319:46;;20351:14;;-1:-1:-1;;;20351:14:0;;;;;;;;;;;20319:46;-1:-1:-1;;;;;28857:24:0::1;;::::0;;;:14:::1;:24;::::0;;;;:31;;-1:-1:-1;;28857:31:0::1;28884:4;28857:31;::::0;;28778:128::o;25493:193::-;25551:13;25585:12;;;:8;:12;;;;;;-1:-1:-1;;;;;25585:12:0;;25610:69;;25657:10;;-1:-1:-1;;;25657:10:0;;;;;;;;;;;25610:69;25493:193;;;:::o;34288:272::-;34323:26;34350:23;34405:5;;34394:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34394:17:0;;34379:32;;34439:5;;34428:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34428:17:0;;34416:29;;34454:6;34450:106;34463:5;;34461:1;:7;34450:106;;;34497:11;;;;:8;:11;;;;;;;;:21;;34517:1;34497:21;;;34509:7;;;;:4;:7;;;;;;34497:21;34479:12;34492:1;34479:15;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;;;34539:11;;;;:8;:11;;;;;;;34524:12;;34539:11;;;;;34524:9;;34548:1;;34524:12;;;;;;:::i;:::-;:26;;;:12;;;;;;;;;;;:26;34469:3;;34450:106;;;;34288:272;;:::o;34986:3036::-;35057:11;35071:19;;;:15;:19;;;;;;35032:13;;35125:26;35071:19;35125:16;:26::i;:::-;35193:16;;;35206:2;35193:16;;;;;;;;;35101:50;;-1:-1:-1;35164:26:0;;35193:16;;;;;;;;;;;;;;;;;;;;;35164:45;;35224:26;;;;;;;;;;;;;-1:-1:-1;;;35224:26:0;;;:10;35235:1;35224:13;;;;;;;;:::i;:::-;;;;;;:26;;;;35265:27;;;;;;;;;;;;;-1:-1:-1;;;35265:27:0;;;:10;35276:1;35265:13;;;;;;;;:::i;:::-;;;;;;:27;;;;35307:30;;;;;;;;;;;;;-1:-1:-1;;;35307:30:0;;;:10;35318:1;35307:13;;;;;;;;:::i;:::-;;;;;;:30;;;;35352;;;;;;;;;;;;;-1:-1:-1;;;35352:30:0;;;:10;35363:1;35352:13;;;;;;;;:::i;:::-;;;;;;:30;;;;35397:24;;;;;;;;;;;;;-1:-1:-1;;;35397:24:0;;;:10;35408:1;35397:13;;;;;;;;:::i;:::-;;;;;;:24;;;;35436:26;;;;;;;;;;;;;-1:-1:-1;;;35436:26:0;;;:10;35447:1;35436:13;;;;;;;;:::i;:::-;;;;;;:26;;;;35477:23;;;;;;;;;;;;;-1:-1:-1;;;35477:23:0;;;:10;35488:1;35477:13;;;;;;;;:::i;:::-;;;;;;:23;;;;35515:22;;;;;;;;;;;;;-1:-1:-1;;;35515:22:0;;;:10;35526:1;35515:13;;;;;;;;:::i;:::-;;;;;;:22;;;;35552:29;;;;;;;;;;;;;-1:-1:-1;;;35552:29:0;;;:10;35563:1;35552:13;;;;;;;;:::i;:::-;;;;;;:29;;;;35596:28;;;;;;;;;;;;;-1:-1:-1;;;35596:28:0;;;:10;35607:1;35596:13;;;;;;;;:::i;:::-;;;;;;:28;;;;35639:26;;;;;;;;;;;;;-1:-1:-1;;;35639:26:0;;;:10;35650:2;35639:14;;;;;;;;:::i;:::-;;;;;;:26;;;;35680:34;;;;;;;;;;;;;-1:-1:-1;;;35680:34:0;;;:10;35691:2;35680:14;;;;;;;;:::i;:::-;;;;;;:34;;;;35729:27;;;;;;;;;;;;;-1:-1:-1;;;35729:27:0;;;:10;35740:2;35729:14;;;;;;;;:::i;:::-;;;;;;:27;;;;35771:33;;;;;;;;;;;;;-1:-1:-1;;;35771:33:0;;;:10;35782:2;35771:14;;;;;;;;:::i;:::-;;;;;;:33;;;;35819:26;;;;;;;;;;;;;-1:-1:-1;;;35819:26:0;;;:10;35830:2;35819:14;;;;;;;;:::i;:::-;;;;;;:26;;;;35860:34;;;;;;;;;;;;;-1:-1:-1;;;35860:34:0;;;:10;35871:2;35860:14;;;;;;;;:::i;:::-;;;;;;:34;;;;35909:29;;;;;;;;;;;;;-1:-1:-1;;;35909:29:0;;;:10;35920:2;35909:14;;;;;;;;:::i;:::-;;;;;;:29;;;;35953:28;;;;;;;;;;;;;-1:-1:-1;;;35953:28:0;;;:10;35964:2;35953:14;;;;;;;;:::i;:::-;;;;;;:28;;;;35996:29;;;;;;;;;;;;;-1:-1:-1;;;35996:29:0;;;:10;36007:2;35996:14;;;;;;;;:::i;:::-;;;;;;:29;;;;36040;;;;;;;;;;;;;-1:-1:-1;;;36040:29:0;;;:10;36051:2;36040:14;;;;;;;;:::i;:::-;;;;;;;;;;;:29;;;;36082;;;;;;;;:24;:29;;;36122:23;;;;;;;;;;36156:24;;;;;;;;;;36191;;;;;;;;;;;36082:29;;36122:23;;36156:24;36191;36082;;36359:964;36383:10;:17;36379:1;:21;36359:964;;;36482:158;36622:3;36615:6;:10;:23;;36632:6;36615:23;;;36626:5;36615:23;36507:78;;11124:25:1;36507:78:0;;;11112:38:1;11166:12;;;11159:28;;;11203:12;;;11196:28;;;36492:147:0;;;;;;11240:12:1;;36507:78:0;;;;;;;;;;;;;36497:89;;;;;;36492:95;;:147;;;;:::i;:::-;36482:9;:158::i;:::-;36469:171;-1:-1:-1;36669:261:0;36900:14;36469:171;36900:3;:14;:::i;:::-;36694:200;;;11782:34:1;36694:200:0;;;11770:47:1;-1:-1:-1;;;11833:12:1;;;11826:28;;;;11870:12;;;11863:28;;;11907:12;;;11900:28;;;11944:13;;36694:200:0;11512:451:1;36669:261:0;36664:266;;:2;:266;:::i;:::-;36657:273;-1:-1:-1;36968:4:0;;:11;;;;;;;;;;;;;;;-1:-1:-1;;;36968:11:0;;;;;;;;;;;;;;;;;;;36954:45;;;;;;;;:::i;:::-;;;;;;;;;;;;;36947:52;;37036:10;37047:1;37036:13;;;;;;;;:::i;:::-;;;;;;;37022:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;37014:50;;37102:22;37119:4;37102:16;:22::i;:::-;37087:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;37079:51;;37172:10;37215:4;37256:5;37263;37242:27;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;37242:27:0;;;;;;;;;;37201:91;;;37242:27;37201:91;;:::i;:::-;;;;-1:-1:-1;;37201:91:0;;;;;;;;;;37158:153;;;37201:91;37158:153;;:::i;:::-;;;;-1:-1:-1;;37158:153:0;;;;;;;;;;-1:-1:-1;36402:6:0;36407:1;36402:6;;:::i;:::-;;;36359:964;;;;37335:26;37473:7;37509:20;37526:2;37509:16;:20::i;:::-;37482:49;;;;;;;;:::i;:::-;;;;-1:-1:-1;;37482:49:0;;;;;;;;;;37458:75;;;37482:49;37458:75;;:::i;:::-;;;;-1:-1:-1;;37458:75:0;;;;;;;;;;37424:111;;37458:75;37424:111;;:::i;:::-;;;;-1:-1:-1;;37424:111:0;;;;;;;;;;37392:324;;37424:111;37392:324;;:::i;:::-;;;;;;;;;;;;;37745:7;37754;37731:31;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;37731:31:0;;;;;;;;;;37364:409;;;37731:31;37364:409;;:::i;:::-;;;;;;;;;;;;;37335:438;;37786:27;37867:10;37816:72;;;;;;;;:::i;:::-;;;;;;;;;;;;;37786:102;;37932:13;37917:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;37901:52;;37987:12;38000:13;37973:41;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37966:48;;;;;;;;;;;;;34986:3036;;;:::o;22866:20::-;;;;;;;:::i;26698:207::-;26801:10;26784:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;26784:38:0;;;;;;;;;;;;:49;;-1:-1:-1;;26784:49:0;;;;;;;;;;26851:46;;1640:41:1;;;26784:38:0;;26801:10;26851:46;;1613:18:1;26851:46:0;;;;;;;26698:207;;:::o;29097:160::-;29192:4;29216:33;29226:10;29238:2;29242:6;29216:9;:33::i;:::-;29209:40;29097:160;-1:-1:-1;;;29097:160:0:o;29834:437::-;29988:26;30001:4;30007:2;30011;29988:12;:26::i;:::-;-1:-1:-1;;;;;30045:14:0;;;:19;;;;:156;;-1:-1:-1;30081:63:0;;-1:-1:-1;;;30081:63:0;;;30161:40;-1:-1:-1;;;;;30081:35:0;;;30161:40;;30081:63;;30117:10;;30129:4;;30135:2;;30139:4;;;;30081:63;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;30081:120:0;;;30045:156;30027:237;;;30235:17;;-1:-1:-1;;;30235:17:0;;;;;;;;;;;25299:114;25351:10;25341:21;;;;:9;:21;;;;;;:24;;25338:67;;25387:10;25377:21;;;;:9;:21;;;;;:28;;-1:-1:-1;;25377:28:0;25401:4;25377:28;;;25338:67;25299:114::o;31489:109::-;20337:5;;-1:-1:-1;;;;;20337:5:0;20323:10;:19;20319:46;;20351:14;;-1:-1:-1;;;20351:14:0;;;;;;;;;;;20319:46;31566:4:::1;:14:::0;;-1:-1:-1;;;;;;31566:14:0::1;-1:-1:-1::0;;;;;31566:14:0;;;::::1;::::0;;;::::1;::::0;;31489:109::o;34574:404::-;34634:13;34695:1;34672:12;34666:26;;;;;:::i;:::-;;;:30;34662:309;;;34765:19;;;;:15;:19;;;;;;34734:12;;34748:37;;:16;:37::i;:::-;34720:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34713:74;;34574:404;;;:::o;34662:309::-;34932:8;34937:2;34932:4;:8::i;:::-;34844:115;;;;;;;;:::i;32828:26::-;;;;;;;:::i;38030:409::-;38116:17;;;;;;;;;;;;-1:-1:-1;;;38116:17:0;;;;-1:-1:-1;38161:20:0;38176:4;38161:14;:20::i;:::-;38141:40;;38193:6;38189:191;38202:3;:10;38200:1;:12;38189:191;;;38254:11;38266:12;38271:3;38275:1;38271:6;;;;;;;;:::i;:::-;;;;;;;38266:4;:12::i;:::-;38240:40;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38226:54;;38306:1;38295:3;:10;:12;;;;:::i;:::-;38292:1;:15;38289:83;;38346:11;38332:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;38318:44;;38289:83;38213:3;;38189:191;;;;38415:11;38401:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;38387:44;;38108:331;38030:409;;;:::o;33140:106::-;20337:5;;-1:-1:-1;;;;;20337:5:0;20323:10;:19;20319:46;;20351:14;;-1:-1:-1;;;20351:14:0;;;;;;;;;;;20319:46;33214:12:::1;:24;33229:9:::0;33214:12;:24:::1;:::i;32800:21::-:0;;;;;;;:::i;20582:219::-;20337:5;;-1:-1:-1;;;;;20337:5:0;20323:10;:19;20319:46;;20351:14;;-1:-1:-1;;;20351:14:0;;;;;;;;;;;20319:46;-1:-1:-1;;;;;20665:20:0;::::1;20661:47;;20694:14;;-1:-1:-1::0;;;20694:14:0::1;;;;;;;;;;;20661:47;20721:5;:14:::0;;-1:-1:-1;;;;;;20721:14:0::1;-1:-1:-1::0;;;;;20721:14:0;::::1;::::0;;::::1;::::0;;20753:40:::1;::::0;20721:14;;20774:10:::1;::::0;20753:40:::1;::::0;20721:5;20753:40:::1;20582:219:::0;:::o;31635:92::-;31678:7;31705:14;31711:8;31705:2;:14;:::i;:::-;31698:21;;31635:92;:::o;30339:1144::-;30452:4;30469:12;30484:10;:8;:10::i;:::-;-1:-1:-1;;;;;30535:15:0;;;30505:27;30535:15;;;:9;:15;;;;;;;;;30593:13;;;;;;;;;30626:20;;;:14;:20;;;;;;30469:25;;-1:-1:-1;30535:15:0;;30626:20;;30625:21;30617:48;;;;-1:-1:-1;;;30617:48:0;;21338:2:1;30617:48:0;;;21320:21:1;21377:2;21357:18;;;21350:30;-1:-1:-1;;;21396:18:1;;;21389:44;21450:18;;30617:48:0;;;;;;;;;-1:-1:-1;;;;;30676:15:0;;;;;;:9;:15;;;;;:25;;30695:6;;30676:15;:25;;30695:6;;30676:25;:::i;:::-;;;;-1:-1:-1;;30726:4:0;;-1:-1:-1;;;;;30726:4:0;;;30720:10;;;;30712:19;;;;;;-1:-1:-1;;;;;30767:13:0;;;;;;;:9;:13;;;;;;;;:23;;;;;;30875:15;;;;;:9;:15;;;;;;30870:234;;-1:-1:-1;;;;;30964:15:0;;30907:22;30964:15;;;:9;:15;;;;;;:22;;30982:4;;30964:22;:::i;:::-;30933:26;30955:4;30933:19;:26;:::i;:::-;30932:55;;;;:::i;:::-;30907:80;;31007:9;31002:91;31026:14;31022:1;:18;31002:91;;;31066:11;31072:4;31066:5;:11::i;:::-;31042:3;;31002:91;;;;30892:212;30870:234;-1:-1:-1;;;;;31180:13:0;;;;;;:9;:13;;;;;;;;31175:230;;31210:22;31261:28;31285:4;31261:21;:28;:::i;:::-;-1:-1:-1;;;;;31236:13:0;;;;;;:9;:13;;;;;;:20;;31252:4;;31236:20;:::i;:::-;31235:55;;;;:::i;:::-;31210:80;;31310:9;31305:89;31329:14;31325:1;:18;31305:89;;;31369:9;31375:2;31369:5;:9::i;:::-;31345:3;;31305:89;;;;31195:210;31175:230;31442:2;-1:-1:-1;;;;;31422:31:0;31436:4;-1:-1:-1;;;;;31422:31:0;;31446:6;31422:31;;;;1838:25:1;;1826:2;1811:18;;1692:177;31422:31:0;;;;;;;;-1:-1:-1;31471:4:0;;30339:1144;-1:-1:-1;;;;;;30339:1144:0:o;32598:160::-;32711:4;:12;32718:5;32711:4;:12;:::i;:::-;-1:-1:-1;32734:6:0;:16;32743:7;32734:6;:16;:::i;17543:718::-;17599:13;17650:14;17667:17;17678:5;17667:10;:17::i;:::-;17687:1;17667:21;17650:38;;17703:20;17737:6;17726:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17726:18:0;-1:-1:-1;17703:41:0;-1:-1:-1;17868:28:0;;;17884:2;17868:28;17925:290;-1:-1:-1;;17957:5:0;-1:-1:-1;;;18094:2:0;18083:14;;18078:32;17957:5;18065:46;18157:2;18148:11;;;-1:-1:-1;18178:21:0;17925:290;18178:21;-1:-1:-1;18236:6:0;17543:718;-1:-1:-1;;;17543:718:0:o;10379:1673::-;10427:7;10451:1;10456;10451:6;10447:47;;-1:-1:-1;10481:1:0;;10379:1673;-1:-1:-1;10379:1673:0:o;10447:47::-;11185:14;11219:1;11208:7;11213:1;11208:4;:7::i;:::-;:12;;11202:1;:19;;11185:36;;11687:1;11676:6;11672:1;:10;;;;;:::i;:::-;;11663:6;:19;11662:26;;11653:35;;11737:1;11726:6;11722:1;:10;;;;;:::i;:::-;;11713:6;:19;11712:26;;11703:35;;11787:1;11776:6;11772:1;:10;;;;;:::i;:::-;;11763:6;:19;11762:26;;11753:35;;11837:1;11826:6;11822:1;:10;;;;;:::i;:::-;;11813:6;:19;11812:26;;11803:35;;11887:1;11876:6;11872:1;:10;;;;;:::i;:::-;;11863:6;:19;11862:26;;11853:35;;11937:1;11926:6;11922:1;:10;;;;;:::i;:::-;;11913:6;:19;11912:26;;11903:35;;11987:1;11976:6;11972:1;:10;;;;;:::i;:::-;;11963:6;:19;11962:26;;11953:35;;12010:23;12014:6;12026;12022:1;:10;;;;;:::i;:::-;;12010:3;:23::i;24195:105::-;-1:-1:-1;;;;;24282:13:0;;;;;;:6;:13;;;;;;;;;24275:20;;;;;;;;;;;;;;;;;24256:13;;24275:20;;;24282:13;24275:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24195:105;;;:::o;34110:173::-;34168:7;34178:25;34198:4;34178:19;:25::i;:::-;34222:19;;;;:15;:19;;;;;;;;;34213:5;;;34208:11;;:4;:11;;;;;;:33;34248:8;;34168:35;;-1:-1:-1;34255:1:0;;34213:5;;34222:19;34248:8;;34255:1;;34248:8;:::i;:::-;;;;-1:-1:-1;34261:17:0;;-1:-1:-1;34273:4:0;34261:11;:17::i;33629:476::-;33679:15;33691:2;33679:11;:15::i;:::-;33699:7;33709:4;-1:-1:-1;;;;;33709:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33699:23;;33729:11;33813:5;;33775:2;33803:3;33788:12;:18;;;;:::i;:::-;33778:29;33758:50;;;;;;;;21950:19:1;;;21994:2;21985:12;;21978:28;22031:2;22022:12;;21793:247;33758:50:0;;;;;;;;;;;;;33748:61;;;;;;33743:67;;:75;;;;:::i;:::-;33823:9;33840:16;;;:8;:16;;;;;;33729:89;;-1:-1:-1;33823:9:0;33840:16;;33837:109;;;-1:-1:-1;33870:12:0;;;;:4;:12;;;;;;33837:109;;;-1:-1:-1;33917:16:0;;;;:8;:16;;;;;:23;;-1:-1:-1;;33917:23:0;33936:4;33917:23;;;33905:6;33837:109;33957:1;33950:5;;:8;;;;;;;:::i;:::-;;;;-1:-1:-1;;33987:5:0;;33978:15;;;;:8;:15;;;;;;;;:33;;34006:5;;33978:33;;;33999:5;;33994:11;;;;:4;:11;;;;;;33978:33;33963:12;;;;:4;:12;;;;;;;;:48;;;;34025:5;;34016:15;;:8;:15;;;;;:22;;-1:-1:-1;;34016:22:0;34034:4;34016:22;;;34043:19;;;:15;:19;;;;;:26;;;34079:21;;34065:4;;-1:-1:-1;;;;;34079:21:0;;;;;33963:12;34079:21;33674:431;;;33629:476;:::o;14106:948::-;14159:7;;-1:-1:-1;;;14237:17:0;;14233:106;;-1:-1:-1;;;14275:17:0;;;-1:-1:-1;14321:2:0;14311:12;14233:106;14366:8;14357:5;:17;14353:106;;14404:8;14395:17;;;-1:-1:-1;14441:2:0;14431:12;14353:106;14486:8;14477:5;:17;14473:106;;14524:8;14515:17;;;-1:-1:-1;14561:2:0;14551:12;14473:106;14606:7;14597:5;:16;14593:103;;14643:7;14634:16;;;-1:-1:-1;14679:1:0;14669:11;14593:103;14723:7;14714:5;:16;14710:103;;14760:7;14751:16;;;-1:-1:-1;14796:1:0;14786:11;14710:103;14840:7;14831:5;:16;14827:103;;14877:7;14868:16;;;-1:-1:-1;14913:1:0;14903:11;14827:103;14957:7;14948:5;:16;14944:68;;14995:1;14985:11;15040:6;14106:948;-1:-1:-1;;14106:948:0:o;12538:1019::-;12590:7;;12677:3;12668:12;;;:16;12664:102;;12715:3;12705:13;;;;12737;12664:102;12793:2;12784:11;;;:15;12780:99;;12830:2;12820:12;;;;12851;12780:99;12906:2;12897:11;;;:15;12893:99;;12943:2;12933:12;;;;12964;12893:99;13019:2;13010:11;;;:15;13006:99;;13056:2;13046:12;;;;13077;13006:99;13132:1;13123:10;;;:14;13119:96;;13168:1;13158:11;;;;13188;13119:96;13242:1;13233:10;;;:14;13229:96;;13278:1;13268:11;;;;13298;13229:96;13352:1;13343:10;;;:14;13339:96;;13388:1;13378:11;;;;13408;13339:96;13462:1;13453:10;;;:14;13449:66;;13498:1;13488:11;13543:6;12538:1019;-1:-1:-1;;12538:1019:0:o;4216:106::-;4274:7;4305:1;4301;:5;:13;;4313:1;4301:13;;;-1:-1:-1;4309:1:0;;4216:106;-1:-1:-1;4216:106:0:o;23999:193::-;-1:-1:-1;;;;;24088:13:0;;24066:7;24088:13;;;:6;:13;;;;;:20;24080:56;;;;-1:-1:-1;;;24080:56:0;;22247:2:1;24080:56:0;;;22229:21:1;22286:2;22266:18;;;22259:30;-1:-1:-1;;;22305:18:1;;;22298:49;22364:18;;24080:56:0;22045:343:1;24080:56:0;-1:-1:-1;;;;;24148:13:0;;;;;;:6;:13;;;;;24162:20;;:24;;24185:1;;24162:24;:::i;:::-;24148:39;;;;;;;;:::i;:::-;;;;;;;;;24141:46;;23999:193;;;:::o;32217:373::-;-1:-1:-1;;;;;32278:18:0;;32274:73;;32320:15;;-1:-1:-1;;;32320:15:0;;;;;;;;;;;32274:73;-1:-1:-1;;;;;32372:12:0;;32359:10;32372:12;;;:6;:12;;;;;32385:19;;:23;;32407:1;;32385:23;:::i;:::-;32372:37;;;;;;;;:::i;:::-;;;;;;;;;32359:50;;32420:6;:12;32427:4;-1:-1:-1;;;;;32420:12:0;-1:-1:-1;;;;;32420:12:0;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;32420:18:0;;;;;;;;;;;;32456:15;;;:11;:15;;;;;;32449:22;;;32489:8;:12;;;;;32482:19;;-1:-1:-1;;;;;;32482:19:0;;;;;;32519:11;:15;;;;;;32512:22;;;;;;;;32552:30;32468:2;;32420:18;-1:-1:-1;;;;;32552:30:0;;;;;32420:18;;32552:30;32263:327;32217:373;:::o;31735:474::-;-1:-1:-1;;;;;31794:16:0;;31790:74;;31834:18;;-1:-1:-1;;;31834:18:0;;;;;;;;;;;31790:74;31901:6;:8;;;;;;;;:6;31969:12;;;:8;:12;;;;;;-1:-1:-1;;;;;31969:12:0;:26;31965:81;;32019:15;;-1:-1:-1;;;32019:15:0;;;;;;;;;;;31965:81;32058:12;;;;:8;:12;;;;;;;;:17;;-1:-1:-1;;;;;;32058:17:0;-1:-1:-1;;;;;32058:17:0;;;;;;;;32086:10;;;:6;:10;;;;;:19;;-1:-1:-1;32086:19:0;;;;;;;;;;;;;;;32134:10;;:17;;:21;;-1:-1:-1;32134:21:0;:::i;:::-;32116:15;;;;:11;:15;;;;;;:39;;;;32173:28;;32128:2;;-1:-1:-1;;;;;32173:28:0;;;;;32116:15;;32173:28;31779:430;31735:474;:::o;14:250:1:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:1;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:1:o;670:180::-;729:6;782:2;770:9;761:7;757:23;753:32;750:52;;;798:1;795;788:12;750:52;-1:-1:-1;821:23:1;;670:180;-1:-1:-1;670:180:1:o;1063:173::-;1131:20;;-1:-1:-1;;;;;1180:31:1;;1170:42;;1160:70;;1226:1;1223;1216:12;1241:254;1309:6;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;1485:2;1470:18;;;;1457:32;;-1:-1:-1;;;1241:254:1:o;1874:127::-;1935:10;1930:3;1926:20;1923:1;1916:31;1966:4;1963:1;1956:15;1990:4;1987:1;1980:15;2006:719;2049:5;2102:3;2095:4;2087:6;2083:17;2079:27;2069:55;;2120:1;2117;2110:12;2069:55;2156:6;2143:20;2182:18;2219:2;2215;2212:10;2209:36;;;2225:18;;:::i;:::-;2300:2;2294:9;2268:2;2354:13;;-1:-1:-1;;2350:22:1;;;2374:2;2346:31;2342:40;2330:53;;;2398:18;;;2418:22;;;2395:46;2392:72;;;2444:18;;:::i;:::-;2484:10;2480:2;2473:22;2519:2;2511:6;2504:18;2565:3;2558:4;2553:2;2545:6;2541:15;2537:26;2534:35;2531:55;;;2582:1;2579;2572:12;2531:55;2646:2;2639:4;2631:6;2627:17;2620:4;2612:6;2608:17;2595:54;2693:1;2686:4;2681:2;2673:6;2669:15;2665:26;2658:37;2713:6;2704:15;;;;;;2006:719;;;;:::o;2730:322::-;2799:6;2852:2;2840:9;2831:7;2827:23;2823:32;2820:52;;;2868:1;2865;2858:12;2820:52;2908:9;2895:23;2941:18;2933:6;2930:30;2927:50;;;2973:1;2970;2963:12;2927:50;2996;3038:7;3029:6;3018:9;3014:22;2996:50;:::i;:::-;2986:60;2730:322;-1:-1:-1;;;;2730:322:1:o;3057:328::-;3134:6;3142;3150;3203:2;3191:9;3182:7;3178:23;3174:32;3171:52;;;3219:1;3216;3209:12;3171:52;3242:29;3261:9;3242:29;:::i;:::-;3232:39;;3290:38;3324:2;3313:9;3309:18;3290:38;:::i;:::-;3280:48;;3375:2;3364:9;3360:18;3347:32;3337:42;;3057:328;;;;;:::o;3579:186::-;3638:6;3691:2;3679:9;3670:7;3666:23;3662:32;3659:52;;;3707:1;3704;3697:12;3659:52;3730:29;3749:9;3730:29;:::i;3770:543::-;3858:6;3866;3919:2;3907:9;3898:7;3894:23;3890:32;3887:52;;;3935:1;3932;3925:12;3887:52;3975:9;3962:23;4004:18;4045:2;4037:6;4034:14;4031:34;;;4061:1;4058;4051:12;4031:34;4084:50;4126:7;4117:6;4106:9;4102:22;4084:50;:::i;:::-;4074:60;;4187:2;4176:9;4172:18;4159:32;4143:48;;4216:2;4206:8;4203:16;4200:36;;;4232:1;4229;4222:12;4200:36;;4255:52;4299:7;4288:8;4277:9;4273:24;4255:52;:::i;:::-;4245:62;;;3770:543;;;;;:::o;4318:347::-;4383:6;4391;4444:2;4432:9;4423:7;4419:23;4415:32;4412:52;;;4460:1;4457;4450:12;4412:52;4483:29;4502:9;4483:29;:::i;:::-;4473:39;;4562:2;4551:9;4547:18;4534:32;4609:5;4602:13;4595:21;4588:5;4585:32;4575:60;;4631:1;4628;4621:12;4575:60;4654:5;4644:15;;;4318:347;;;;;:::o;4670:1162::-;4932:2;4944:21;;;5014:13;;4917:18;;;5036:22;;;4884:4;;5111;;5089:2;5074:18;;;5138:15;;;4884:4;5181:169;5195:6;5192:1;5189:13;5181:169;;;5256:13;;5244:26;;5290:12;;;;5325:15;;;;5217:1;5210:9;5181:169;;;-1:-1:-1;;;5386:19:1;;;5366:18;;;5359:47;5456:13;;5478:21;;;5554:15;;;;5517:12;;;5589:1;5599:205;5615:8;5610:3;5607:17;5599:205;;;5698:15;;5691:23;5684:31;5670:46;;5777:17;;;;5738:14;;;;5643:1;5634:11;5599:205;;;-1:-1:-1;5821:5:1;;4670:1162;-1:-1:-1;;;;;;;4670:1162:1:o;5837:808::-;5934:6;5942;5950;5958;5966;6019:3;6007:9;5998:7;5994:23;5990:33;5987:53;;;6036:1;6033;6026:12;5987:53;6059:29;6078:9;6059:29;:::i;:::-;6049:39;;6107:38;6141:2;6130:9;6126:18;6107:38;:::i;:::-;6097:48;;6192:2;6181:9;6177:18;6164:32;6154:42;;6247:2;6236:9;6232:18;6219:32;6270:18;6311:2;6303:6;6300:14;6297:34;;;6327:1;6324;6317:12;6297:34;6365:6;6354:9;6350:22;6340:32;;6410:7;6403:4;6399:2;6395:13;6391:27;6381:55;;6432:1;6429;6422:12;6381:55;6472:2;6459:16;6498:2;6490:6;6487:14;6484:34;;;6514:1;6511;6504:12;6484:34;6559:7;6554:2;6545:6;6541:2;6537:15;6533:24;6530:37;6527:57;;;6580:1;6577;6570:12;6527:57;5837:808;;;;-1:-1:-1;5837:808:1;;-1:-1:-1;6611:2:1;6603:11;;6633:6;5837:808;-1:-1:-1;;;5837:808:1:o;6650:260::-;6718:6;6726;6779:2;6767:9;6758:7;6754:23;6750:32;6747:52;;;6795:1;6792;6785:12;6747:52;6818:29;6837:9;6818:29;:::i;:::-;6808:39;;6866:38;6900:2;6889:9;6885:18;6866:38;:::i;:::-;6856:48;;6650:260;;;;;:::o;6915:380::-;6994:1;6990:12;;;;7037;;;7058:61;;7112:4;7104:6;7100:17;7090:27;;7058:61;7165:2;7157:6;7154:14;7134:18;7131:38;7128:161;;7211:10;7206:3;7202:20;7199:1;7192:31;7246:4;7243:1;7236:15;7274:4;7271:1;7264:15;7128:161;;6915:380;;;:::o;7426:518::-;7528:2;7523:3;7520:11;7517:421;;;7564:5;7561:1;7554:16;7608:4;7605:1;7595:18;7678:2;7666:10;7662:19;7659:1;7655:27;7649:4;7645:38;7714:4;7702:10;7699:20;7696:47;;;-1:-1:-1;7737:4:1;7696:47;7792:2;7787:3;7783:12;7780:1;7776:20;7770:4;7766:31;7756:41;;7847:81;7865:2;7858:5;7855:13;7847:81;;;7924:1;7910:16;;7891:1;7880:13;7847:81;;8120:1345;8246:3;8240:10;8273:18;8265:6;8262:30;8259:56;;;8295:18;;:::i;:::-;8324:97;8414:6;8374:38;8406:4;8400:11;8374:38;:::i;:::-;8368:4;8324:97;:::i;:::-;8476:4;;8533:2;8522:14;;8550:1;8545:663;;;;9252:1;9269:6;9266:89;;;-1:-1:-1;9321:19:1;;;9315:26;9266:89;-1:-1:-1;;8077:1:1;8073:11;;;8069:24;8065:29;8055:40;8101:1;8097:11;;;8052:57;9368:81;;8515:944;;8545:663;7373:1;7366:14;;;7410:4;7397:18;;-1:-1:-1;;8581:20:1;;;8699:236;8713:7;8710:1;8707:14;8699:236;;;8802:19;;;8796:26;8781:42;;8894:27;;;;8862:1;8850:14;;;;8729:19;;8699:236;;;8703:3;8963:6;8954:7;8951:19;8948:201;;;9024:19;;;9018:26;-1:-1:-1;;9107:1:1;9103:14;;;9119:3;9099:24;9095:37;9091:42;9076:58;9061:74;;8948:201;;;9195:1;9186:6;9183:1;9179:14;9175:22;9169:4;9162:36;8515:944;;;;;8120:1345;;:::o;9470:127::-;9531:10;9526:3;9522:20;9519:1;9512:31;9562:4;9559:1;9552:15;9586:4;9583:1;9576:15;9602:128;9669:9;;;9690:11;;;9687:37;;;9704:18;;:::i;9735:127::-;9796:10;9791:3;9787:20;9784:1;9777:31;9827:4;9824:1;9817:15;9851:4;9848:1;9841:15;9867:127;9928:10;9923:3;9919:20;9916:1;9909:31;9959:4;9956:1;9949:15;9983:4;9980:1;9973:15;10559:290;10628:6;10681:2;10669:9;10660:7;10656:23;10652:32;10649:52;;;10697:1;10694;10687:12;10649:52;10723:16;;-1:-1:-1;;;;;;10768:32:1;;10758:43;;10748:71;;10815:1;10812;10805:12;11263:127;11324:10;11319:3;11315:20;11312:1;11305:31;11355:4;11352:1;11345:15;11379:4;11376:1;11369:15;11395:112;11427:1;11453;11443:35;;11458:18;;:::i;:::-;-1:-1:-1;11492:9:1;;11395:112::o;11968:482::-;12190:3;12228:6;12222:13;12244:66;12303:6;12298:3;12291:4;12283:6;12279:17;12244:66;:::i;:::-;-1:-1:-1;;;12332:16:1;;12357:57;;;-1:-1:-1;12441:2:1;12430:14;;11968:482;-1:-1:-1;11968:482:1:o;12455:472::-;12677:3;12715:6;12709:13;12731:66;12790:6;12785:3;12778:4;12770:6;12766:17;12731:66;:::i;:::-;-1:-1:-1;;;12819:16:1;;12844:47;;;-1:-1:-1;12918:2:1;12907:14;;12455:472;-1:-1:-1;12455:472:1:o;12932:441::-;13153:3;13191:6;13185:13;13207:66;13266:6;13261:3;13254:4;13246:6;13242:17;13207:66;:::i;:::-;-1:-1:-1;;;13295:16:1;;13320:18;;;-1:-1:-1;13365:1:1;13354:13;;12932:441;-1:-1:-1;12932:441:1:o;13378:496::-;13557:3;13595:6;13589:13;13611:66;13670:6;13665:3;13658:4;13650:6;13646:17;13611:66;:::i;:::-;13740:13;;13699:16;;;;13762:70;13740:13;13699:16;13809:4;13797:17;;13762:70;:::i;:::-;13848:20;;13378:496;-1:-1:-1;;;;13378:496:1:o;13879:125::-;13944:9;;;13965:10;;;13962:36;;;13978:18;;:::i;14009:445::-;-1:-1:-1;;;14248:41:1;;14312:13;;14230:3;;14334:74;14312:13;14397:1;14388:11;;14381:4;14369:17;;14334:74;:::i;:::-;14428:16;;;;14446:1;14424:24;;14009:445;-1:-1:-1;;14009:445:1:o;14459:464::-;-1:-1:-1;;;14699:57:1;;14779:13;;14681:3;;14801:75;14779:13;14864:2;14855:12;;14848:4;14836:17;;14801:75;:::i;:::-;14896:16;;;;14914:2;14892:25;;14459:464;-1:-1:-1;;14459:464:1:o;14928:864::-;15160:3;15198:6;15192:13;15214:66;15273:6;15268:3;15261:4;15253:6;15249:17;15214:66;:::i;:::-;15341;15302:16;;15327:81;;;-1:-1:-1;15442:34:1;15435:4;15424:16;;15417:60;15509:66;15504:2;15493:14;;15486:90;15608:66;15603:2;15592:14;;15585:90;-1:-1:-1;;;15702:3:1;15691:15;;15684:71;15782:3;15771:15;;14928:864;-1:-1:-1;14928:864:1:o;15797:1021::-;15973:3;16002:1;16035:6;16029:13;16065:36;16091:9;16065:36;:::i;:::-;16120:1;16137:17;;;16163:133;;;;16310:1;16305:358;;;;16130:533;;16163:133;-1:-1:-1;;16196:24:1;;16184:37;;16269:14;;16262:22;16250:35;;16241:45;;;-1:-1:-1;16163:133:1;;16305:358;16336:6;16333:1;16326:17;16366:4;16411;16408:1;16398:18;16438:1;16452:165;16466:6;16463:1;16460:13;16452:165;;;16544:14;;16531:11;;;16524:35;16587:16;;;;16481:10;;16452:165;;;16456:3;;;16646:6;16641:3;16637:16;16630:23;;16130:533;;;;;16694:6;16688:13;16710:68;16769:8;16764:3;16757:4;16749:6;16745:17;16710:68;:::i;16823:471::-;-1:-1:-1;;;17063:64:1;;17150:13;;17045:3;;17172:75;17150:13;17235:2;17226:12;;17219:4;17207:17;;17172:75;:::i;:::-;17267:16;;;;17285:2;17263:25;;16823:471;-1:-1:-1;;16823:471:1:o;17299:442::-;17520:3;17558:6;17552:13;17574:66;17633:6;17628:3;17621:4;17613:6;17609:17;17574:66;:::i;:::-;-1:-1:-1;;;17662:16:1;;17687:19;;;-1:-1:-1;17733:1:1;17722:13;;17299:442;-1:-1:-1;17299:442:1:o;17746:662::-;-1:-1:-1;;;;;18025:15:1;;;18007:34;;18077:15;;18072:2;18057:18;;18050:43;18124:2;18109:18;;18102:34;;;18172:3;18167:2;18152:18;;18145:31;;;18192:19;;18185:35;;;17950:4;18213:6;18263;17987:3;18242:19;;18229:49;18328:1;18322:3;18313:6;18302:9;18298:22;18294:32;18287:43;18398:3;18391:2;18387:7;18382:2;18374:6;18370:15;18366:29;18355:9;18351:45;18347:55;18339:63;;17746:662;;;;;;;;:::o;18413:449::-;18665:29;18660:3;18653:42;18635:3;18724:6;18718:13;18740:75;18808:6;18803:2;18798:3;18794:12;18787:4;18779:6;18775:17;18740:75;:::i;:::-;18835:16;;;;18853:2;18831:25;;18413:449;-1:-1:-1;;18413:449:1:o;18867:441::-;19088:3;19126:6;19120:13;19142:66;19201:6;19196:3;19189:4;19181:6;19177:17;19142:66;:::i;:::-;-1:-1:-1;;;19230:16:1;;19255:18;;;-1:-1:-1;19300:1:1;19289:13;;18867:441;-1:-1:-1;18867:441:1:o;19313:::-;19534:3;19572:6;19566:13;19588:66;19647:6;19642:3;19635:4;19627:6;19623:17;19588:66;:::i;:::-;-1:-1:-1;;;19676:16:1;;19701:18;;;-1:-1:-1;19746:1:1;19735:13;;19313:441;-1:-1:-1;19313:441:1:o;19759:416::-;19848:1;19885:5;19848:1;19899:270;19920:7;19910:8;19907:21;19899:270;;;19979:4;19975:1;19971:6;19967:17;19961:4;19958:27;19955:53;;;19988:18;;:::i;:::-;20038:7;20028:8;20024:22;20021:55;;;20058:16;;;;20021:55;20137:22;;;;20097:15;;;;19899:270;;;19903:3;19759:416;;;;;:::o;20180:806::-;20229:5;20259:8;20249:80;;-1:-1:-1;20300:1:1;20314:5;;20249:80;20348:4;20338:76;;-1:-1:-1;20385:1:1;20399:5;;20338:76;20430:4;20448:1;20443:59;;;;20516:1;20511:130;;;;20423:218;;20443:59;20473:1;20464:10;;20487:5;;;20511:130;20548:3;20538:8;20535:17;20532:43;;;20555:18;;:::i;:::-;-1:-1:-1;;20611:1:1;20597:16;;20626:5;;20423:218;;20725:2;20715:8;20712:16;20706:3;20700:4;20697:13;20693:36;20687:2;20677:8;20674:16;20669:2;20663:4;20660:12;20656:35;20653:77;20650:159;;;-1:-1:-1;20762:19:1;;;20794:5;;20650:159;20841:34;20866:8;20860:4;20841:34;:::i;:::-;20911:6;20907:1;20903:6;20899:19;20890:7;20887:32;20884:58;;;20922:18;;:::i;:::-;20960:20;;20180:806;-1:-1:-1;;;20180:806:1:o;20991:140::-;21049:5;21078:47;21119:4;21109:8;21105:19;21099:4;21078:47;:::i;21479:120::-;21519:1;21545;21535:35;;21550:18;;:::i;:::-;-1:-1:-1;21584:9:1;;21479:120::o;21604:184::-;21674:6;21727:2;21715:9;21706:7;21702:23;21698:32;21695:52;;;21743:1;21740;21733:12;21695:52;-1:-1:-1;21766:16:1;;21604:184;-1:-1:-1;21604:184:1:o
Swarm Source
ipfs://f4d484fa10b30fe150ec053bc6e982a06f68c3433752f887188bc10f3e18c64c
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.