STRINGLIB
0x4ab87f1DBDF6f741ED8BF481C7346103a86f10680x0e5bf088…560c1eSource details
| Property | Value |
|---|---|
| Keccak256 Hash | 0x0e5bf088357a8b8d0cce341a0633531380290525c279d3fcb9fd6b2ed7560c1e |
| Source URL | https://raw.githubusercontent.com/busytoby/atropa_pulsechain/58607494f7741b80525953e4a85bc99e66fd20fc/solidity/dysnomia/lib/stringlib.sol |
| Source Revision | 58607494f7741b80525953e4a85bc99e66fd20fc |
| Source Status | Canonical source snapshot; deployed bytecode equivalence is only established where a deployment record says so. |
| Compiler | solc 0.8.21; optimizer enabled with 200 runs |
| Compiler Configuration | {"evmVersion":"compiler-default","optimizer":{"enabled":true,"runs":200},"version":"0.8.21+commit.d9974bed.Linux.g++"} |
| Compilation Closure Hash | 0x0b5918e61654a3367d596b12cca51506c88ae661ee5993d1abaa2e08efce5d5a |
| Compilation Closure Files | 20 |
| Hash Generated | 2026-09-14T19:34:22Z |
Overview
Section titled “Overview”STRINGLIB provides string manipulation utilities including palindrome checking, string reversal, acronym validation, and random acronym generation for the gaming/voting system.
- Kind: Contract
- License: Sharia
- Solidity: ^0.8.21
- Source:
lib/stringlib.sol
Inheritance Chain (C3 Linearized)
Section titled “Inheritance Chain (C3 Linearized)”- self — STRINGLIB
- DYSNOMIA
- MultiOwnable
Immediate Parents
Section titled “Immediate Parents”What This Means For Players
Section titled “What This Means For Players”Plain English Summary: STRINGLIB powers the word games - it’s used for the acronym guessing game where players submit phrases that match random letter combinations. The system generates random acronyms (like “FBI”) and players submit phrases (“Federal Bureau of Investigation”) that match.
Real-World Analogy: It’s like a game of Scrabble meets word association. The system shows you random letters (an acronym), and you have to come up with a clever phrase where each word starts with those letters in order.
How It Affects Your Gameplay:
- Acronym game - Submit phrases that match the generated acronym
- Validation - STRINGLIB checks if your phrase actually matches the acronym
- Random challenges - Each round generates a new random acronym to guess
- Palindrome fun - Can check if strings are palindromes (reads same forwards and backwards)
State Variables
Section titled “State Variables”| Variable | Type | Visibility | Mutability | Initial Value | NatSpec |
|---|---|---|---|---|---|
Type |
string |
public | constant | LibStrings |
Errors
Section titled “Errors”| Error | Parameters | NatSpec |
|---|---|---|
MinimumLength3 |
(none) |
Constructor
Section titled “Constructor”constructor
Section titled “constructor”constructorconstructor
constructor(address VoidAddress) DYSNOMIA(unicode"DYSNOMIA LibStrings", unicode"LibStrings", address(DYSNOMIA(VoidAddress).Xiao()))- Modifiers:
DYSNOMIA(unicode"DYSNOMIA LibStrings", unicode"LibStrings", address(DYSNOMIA(VoidAddress).Xiao())) - Parameters: address VoidAddress
Functions
Section titled “Functions”External & Public
Section titled “External & Public”CheckPalindrome
Section titled “CheckPalindrome”CheckPalindromefunction
function CheckPalindrome(string memory S) public pure returns (bool)Open this function to load its call form.
- Visibility: public
- State Mutability: pure
- Parameters: string memory S
- Returns: bool
CheckPalindrome
Section titled “CheckPalindrome”CheckPalindromefunction
function CheckPalindrome(bytes memory S) public pure returns (bool)Open this function to load its call form.
- Visibility: public
- State Mutability: pure
- Parameters: bytes memory S
- Returns: bool
Reverse
Section titled “Reverse”Reversefunction
function Reverse(string memory S) public pure returns (string memory Reversed)Open this function to load its call form.
- Visibility: public
- State Mutability: pure
- Parameters: string memory S
- Returns: string memory Reversed
Reverse
Section titled “Reverse”Reversefunction
function Reverse(bytes memory S) public pure returns (bytes memory Reversed)Open this function to load its call form.
- Visibility: public
- State Mutability: pure
- Parameters: bytes memory S
- Returns: bytes memory Reversed
RandomAcronym
Section titled “RandomAcronym”RandomAcronymfunction
function RandomAcronym(uint8 MaxLength) public returns (bytes memory Acronym)Open this function to load its call form.
- Visibility: public
- Parameters: uint8 MaxLength
- Returns: bytes memory Acronym
CaseInsensitiveCompare
Section titled “CaseInsensitiveCompare”CaseInsensitiveComparefunction
function CaseInsensitiveCompare(bytes1 A, bytes1 B) public pure returns (bool)Open this function to load its call form.
- Visibility: public
- State Mutability: pure
- Parameters: bytes1 A, bytes1 B
- Returns: bool
CheckAcronym
Section titled “CheckAcronym”CheckAcronymfunction
function CheckAcronym(string memory _A, string memory _B) public pure returns (bool)Open this function to load its call form.
- Visibility: public
- State Mutability: pure
- Parameters: string memory _A, string memory _B
- Returns: bool
CheckAcronym
Section titled “CheckAcronym”CheckAcronymfunction
function CheckAcronym(bytes memory _acronym, string memory _Beta) public pure returns (bool)Open this function to load its call form.
- Visibility: public
- State Mutability: pure
- Parameters: bytes memory _acronym, string memory _Beta
- Returns: bool
log10function
function log10(uint256 value) public pure returns (uint256)Open this function to load its call form.
- Visibility: public
- State Mutability: pure
- Parameters: uint256 value
- Returns: uint256
String
Section titled “String”Stringfunction
function String(uint256 value) public pure returns (string memory buffer)Open this function to load its call form.
- Visibility: public
- State Mutability: pure
- Parameters: uint256 value
- Returns: string memory buffer
Hexfunction
function Hex(address account) public pure returns (string memory)Open this function to load its call form.
- Visibility: public
- State Mutability: pure
- Parameters: address account
- Returns: string memory
Hexfunction
function Hex(uint256 value) public pure returns (string memory)Open this function to load its call form.
- Visibility: public
- State Mutability: pure
- Parameters: uint256 value
- Returns: string memory
Hexfunction
function Hex(bytes32 value) public pure returns (string memory)Open this function to load its call form.
- Visibility: public
- State Mutability: pure
- Parameters: bytes32 value
- Returns: string memory
Hexfunction
function Hex(bytes memory data) public pure returns (string memory)Open this function to load its call form.
- Visibility: public
- State Mutability: pure
- Parameters: bytes memory data
- Returns: string memory
Inherited Members
Section titled “Inherited Members”This contract inherits the members below from its parents. See each parent’s dedicated MD for full signatures, NatSpec, and semantics.
External & Public Functions
| Function | Signature | State Mutability |
|---|---|---|
Rename |
function Rename(string memory newName, string memory newSymbol) public virtual onlyOwners |
nonpayable |
mintToCap |
function mintToCap() public onlyOwners |
nonpayable |
GetMarketRate |
function GetMarketRate(address _a) public view returns (uint256) |
view |
Purchase |
function Purchase(address _t, uint256 _a) public |
nonpayable |
Redeem |
function Redeem(address _t, uint256 _a) public |
nonpayable |
name |
function name() public view virtual returns (string memory) |
view |
symbol |
function symbol() public view virtual returns (string memory) |
view |
decimals |
function decimals() public view virtual returns (uint8) |
view |
totalSupply |
function totalSupply() public view virtual returns (uint256) |
view |
balanceOf |
function balanceOf(address account) public view virtual returns (uint256) |
view |
transfer |
function transfer(address to, uint256 value) public virtual returns (bool) |
nonpayable |
allowance |
function allowance(address owner, address spender) public view virtual returns (uint256) |
view |
approve |
function approve(address spender, uint256 value) public virtual returns (bool) |
nonpayable |
transferFrom |
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) |
nonpayable |
Internal Functions
| Function | Signature |
|---|---|
_addLibraryOwner |
function _addLibraryOwner(VOID Void, string memory what) internal |
_mintToCap |
function _mintToCap() internal |
_addMarketRate |
function _addMarketRate(address _a, uint256 _r) internal |
_transfer |
function _transfer(address from, address to, uint256 value) internal |
_update |
function _update(address from, address to, uint256 value) internal virtual |
_mint |
function _mint(address account, uint256 value) internal |
_approve |
function _approve(address owner, address spender, uint256 value) internal |
_spendAllowance |
function _spendAllowance(address owner, address spender, uint256 value) internal virtual |
Events
| Event | Parameters |
|---|---|
Transfer |
address indexed from, address indexed to, uint256 value |
Approval |
address indexed owner, address indexed spender, uint256 value |
Errors
| Error | Parameters |
|---|---|
MarketRateNotFound |
address asset |
DysnomiaInsufficientBalance |
address origin, address sender, address from, address to, address what, uint256 balance, uint256 needed |
DysnomiaInsufficientAllowance |
address origin, address sender, address owner, address spender, address what, uint256 allowance, uint256 needed |
State Variables (private parent storage is not reachable and is omitted)
| Variable | Type | Visibility | Mutability |
|---|---|---|---|
__name |
string |
internal | mutable |
__symbol |
string |
internal | mutable |
MotzkinPrime |
uint64 |
public | constant |
Xiao |
atropaMath |
public | mutable |
maxSupply |
uint256 |
public | mutable |
External & Public Functions
| Function | Signature | State Mutability |
|---|---|---|
owner |
function owner() external view virtual returns (address) |
view |
renounceOwnership |
function renounceOwnership(address toRemove) public virtual onlyOwners |
nonpayable |
addOwner |
function addOwner(address newOwner) public virtual onlyOwners |
nonpayable |
Internal Functions
| Function | Signature |
|---|---|
_checkOwner |
function _checkOwner() internal view virtual |
_changeOwnership |
function _changeOwnership(address cOwner, bool cState) internal virtual |
Events
| Event | Parameters |
|---|---|
OwnershipUpdate |
address indexed newOwner, bool indexed state |
Errors
| Error | Parameters |
|---|---|
OwnableUnauthorizedAccount |
address origin, address account, address what |
OwnableInvalidOwner |
address origin, address owner, address what |
Modifiers
| Modifier | Parameters |
|---|---|
onlyOwners |
(none) |
Read Functions (Pure)
Section titled “Read Functions (Pure)”CheckPalindrome
Section titled “CheckPalindrome”function CheckPalindrome(string memory S) public pure returns (bool)function CheckPalindrome(bytes memory S) public pure returns (bool)- Access:
public pure - Parameters:
S(stringorbytes): Input to check
- Returns:
bool: True if input reads the same forwards and backwards
- Description: Compares characters from both ends moving inward.
- Logic Flow:
- Create reversed copy of input
- Compare each position: if any mismatch, return false
- Return true if all match
- In Plain English: Check if a word or phrase is a palindrome (reads the same forwards and backwards, like “racecar” or “kayak”).
Reverse
Section titled “Reverse”function Reverse(string memory S) public pure returns (string memory)function Reverse(bytes memory S) public pure returns (bytes memory)- Access:
public pure - Parameters:
S(stringorbytes): Input to reverse
- Returns:
- Reversed version of input
- Description: Creates a new array and populates it backwards.
- Logic Flow:
- Allocate new bytes array of same length
- Iterate source backwards (j from length-1 to 0)
- Assign to output (i from 0 to length-1)
- In Plain English: Flip a string backwards. “hello” becomes “olleh”.
CaseInsensitiveCompare
Section titled “CaseInsensitiveCompare”function CaseInsensitiveCompare(bytes1 A, bytes1 B) public pure returns (bool)- Access:
public pure - Parameters:
A(bytes1): First characterB(bytes1): Second character
- Returns:
bool: True if characters match ignoring case
- Description: Uses ASCII offset (32) to compare uppercase/lowercase equivalents.
- Computation Details:
- ASCII uppercase: 65-90, lowercase: 97-122
- Difference between cases: 32
- Checks:
A == BorA == B ± 32
- In Plain English: Compare two letters ignoring case. ‘A’ matches ‘a’, ‘B’ matches ‘b’, etc.
CheckAcronym
Section titled “CheckAcronym”function CheckAcronym(string memory _A, string memory _B) public pure returns (bool)function CheckAcronym(bytes memory _acronym, string memory _Beta) public pure returns (bool)- Access:
public pure - Parameters:
_A/_acronym(stringorbytes): The acronym to validate (e.g., “FBI”)_B/_Beta(string): The phrase to check against (e.g., “Federal Bureau of Investigation”)
- Returns:
bool: True if phrase’s first letters spell the acronym
- Description: Validates that each word’s first letter matches the next acronym letter.
- Logic Flow:
- Compare first character of phrase to first acronym letter (case-insensitive)
- For each space in phrase, next letter must match next acronym letter
- Return true only if all acronym letters are matched
- In Plain English: Check if a phrase matches an acronym. “Federal Bureau of Investigation” matches “FBI” because each word starts with F, B, I in order.
function log10(uint256 value) public pure returns (uint256)- Access:
public pure - Parameters:
value(uint256): Number to compute log of
- Returns:
uint256: Floor of log base 10 (number of digits minus 1)
- Description: Uses iterative halving to compute logarithm efficiently.
- Logic Flow:
- Start with exponent = 64, halve each iteration
- If value >= 10^exponent, divide value and accumulate exponent
- Return final accumulated exponent
- In Plain English: Count how many digits a number has, minus one. log10(1000) = 3.
String
Section titled “String”function String(uint256 value) public pure returns (string memory buffer)- Access:
public pure - Parameters:
value(uint256): Number to convert
- Returns:
buffer(string): Decimal string representation
- Description: Converts integer to string by extracting digits.
- Logic Flow:
- Calculate length via log10 + 1
- Allocate buffer
- Use assembly to populate backwards: modulo 10 gives digit, divide by 10 shifts
- In Plain English: Convert a number to text. 12345 becomes “12345”.
Hex (multiple overloads)
Section titled “Hex (multiple overloads)”function Hex(address account) public pure returns (string memory)function Hex(uint256 value) public pure returns (string memory)function Hex(bytes32 value) public pure returns (string memory)function Hex(bytes memory data) public pure returns (string memory)- Access:
public pure - Returns:
- Hexadecimal string with “0x” prefix
- Description: Converts various types to hex by mapping each nibble to “0123456789abcdef”.
- In Plain English: Convert data to hexadecimal format like “0x1a2b3c…”.
Contract Interactions
Section titled “Contract Interactions”Depends On
Section titled “Depends On”- DYSNOMIA V2 - Base functionality
- VOID - Library registration
- VMREQ - Random number generation
Registered In
Section titled “Registered In”- VOID library registry as “strings”
Special Mechanisms
Section titled “Special Mechanisms”Acronym Validation Algorithm
Section titled “Acronym Validation Algorithm”1. Check first letter matches (case-insensitive)2. For each space in phrase: - Next letter after space must match next acronym letter3. All acronym letters must be matched exactlyExample:
- Acronym: “FBI”
- Valid: “Federal Bureau of Investigation” ✓
- Invalid: “Fabulous Blue Ice” ✗ (wrong structure)
Case-Insensitive Comparison
Section titled “Case-Insensitive Comparison”Uses ASCII math to compare:
if(uint8(B) <= 90) // B is uppercase return(A == B || uint8(A) == (uint8(B) + 32)); // A matches B or lowercase Belse return(A == B || (uint8(A) + 32) == uint8(B)); // A matches B or uppercase BRandom Acronym Generation
Section titled “Random Acronym Generation”- Generate random length (3 to MaxLength)
- For each position:
- Generate random number 0-25
- Map to letter A-Z
Usage Pattern
Section titled “Usage Pattern”// Check palindromebool isPalindrome = stringLib.CheckPalindrome("racecar"); // true
// Validate acronymbool valid = stringLib.CheckAcronym("LOL", "Laugh Out Loud"); // true
// Generate random acronymbytes memory acronym = stringLib.RandomAcronym(5); // e.g., "ABXZ"
// Convert to string/hexstring memory numStr = stringLib.String(12345); // "12345"string memory addrHex = stringLib.Hex(someAddress); // "0x1234..."Gaming Integration
Section titled “Gaming Integration”The acronym functions support a game mechanic where:
- System generates random acronym (e.g., “ABC”)
- Users submit phrases (“A Big Cat”)
- System validates submissions using CheckAcronym
- Valid submissions can earn rewards
Inherited functions and getters (22)
STRINGLIB.GetMarketRate(address _a)Read
Open this function to load its call form.
STRINGLIB.MotzkinPrime()Read
Open this function to load its call form.
STRINGLIB.Purchase(address _t, uint256 _a)Simulate / call
Open this function to load its call form.
STRINGLIB.Redeem(address _t, uint256 _a)Simulate / call
Open this function to load its call form.
STRINGLIB.Rename(string newName, string newSymbol)Simulate / call
Open this function to load its call form.
STRINGLIB.Type()Read
Open this function to load its call form.
STRINGLIB.Xiao()Read
Open this function to load its call form.
STRINGLIB.addOwner(address newOwner)Simulate / call
Open this function to load its call form.
STRINGLIB.allowance(address owner, address spender)Read
Open this function to load its call form.
STRINGLIB.approve(address spender, uint256 value)Simulate / call
Open this function to load its call form.
STRINGLIB.balanceOf(address account)Read
Open this function to load its call form.
STRINGLIB.decimals()Read
Open this function to load its call form.
STRINGLIB.maxSupply()Read
Open this function to load its call form.
STRINGLIB.mintToCap()Simulate / call
Open this function to load its call form.
STRINGLIB.name()Read
Open this function to load its call form.
STRINGLIB.owner(address cOwner)Read
Open this function to load its call form.
STRINGLIB.owner()Read
Open this function to load its call form.
STRINGLIB.renounceOwnership(address toRemove)Simulate / call
Open this function to load its call form.
STRINGLIB.symbol()Read
Open this function to load its call form.
STRINGLIB.totalSupply()Read
Open this function to load its call form.
STRINGLIB.transfer(address to, uint256 value)Simulate / call
Open this function to load its call form.
STRINGLIB.transferFrom(address from, address to, uint256 value)Simulate / call
Open this function to load its call form.
Compiled ABI
Section titled “Compiled ABI”The compiled ABI below is produced by solc 0.8.21 from the exact source bytes recorded in Source details. Consumers can paste it directly into ethers/web3/viem.
Click to expand JSON ABI
[ { "inputs": [ { "internalType": "address", "name": "VoidAddress", "type": "address" } ], "stateMutability": "nonpayable", "type": "constructor" }, { "inputs": [ { "internalType": "address", "name": "origin", "type": "address" }, { "internalType": "address", "name": "sender", "type": "address" }, { "internalType": "address", "name": "owner", "type": "address" }, { "internalType": "address", "name": "spender", "type": "address" }, { "internalType": "address", "name": "what", "type": "address" }, { "internalType": "uint256", "name": "allowance", "type": "uint256" }, { "internalType": "uint256", "name": "needed", "type": "uint256" } ], "name": "DysnomiaInsufficientAllowance", "type": "error" }, { "inputs": [ { "internalType": "address", "name": "origin", "type": "address" }, { "internalType": "address", "name": "sender", "type": "address" }, { "internalType": "address", "name": "from", "type": "address" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "address", "name": "what", "type": "address" }, { "internalType": "uint256", "name": "balance", "type": "uint256" }, { "internalType": "uint256", "name": "needed", "type": "uint256" } ], "name": "DysnomiaInsufficientBalance", "type": "error" }, { "inputs": [ { "internalType": "address", "name": "asset", "type": "address" } ], "name": "MarketRateNotFound", "type": "error" }, { "inputs": [], "name": "MinimumLength3", "type": "error" }, { "inputs": [ { "internalType": "address", "name": "origin", "type": "address" }, { "internalType": "address", "name": "owner", "type": "address" }, { "internalType": "address", "name": "what", "type": "address" } ], "name": "OwnableInvalidOwner", "type": "error" }, { "inputs": [ { "internalType": "address", "name": "origin", "type": "address" }, { "internalType": "address", "name": "account", "type": "address" }, { "internalType": "address", "name": "what", "type": "address" } ], "name": "OwnableUnauthorizedAccount", "type": "error" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "owner", "type": "address" }, { "indexed": true, "internalType": "address", "name": "spender", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "Approval", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" }, { "indexed": true, "internalType": "bool", "name": "state", "type": "bool" } ], "name": "OwnershipUpdate", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "from", "type": "address" }, { "indexed": true, "internalType": "address", "name": "to", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "Transfer", "type": "event" }, { "inputs": [ { "internalType": "bytes1", "name": "A", "type": "bytes1" }, { "internalType": "bytes1", "name": "B", "type": "bytes1" } ], "name": "CaseInsensitiveCompare", "outputs": [ { "internalType": "bool", "name": "", "type": "bool" } ], "stateMutability": "pure", "type": "function" }, { "inputs": [ { "internalType": "string", "name": "_A", "type": "string" }, { "internalType": "string", "name": "_B", "type": "string" } ], "name": "CheckAcronym", "outputs": [ { "internalType": "bool", "name": "", "type": "bool" } ], "stateMutability": "pure", "type": "function" }, { "inputs": [ { "internalType": "bytes", "name": "_acronym", "type": "bytes" }, { "internalType": "string", "name": "_Beta", "type": "string" } ], "name": "CheckAcronym", "outputs": [ { "internalType": "bool", "name": "", "type": "bool" } ], "stateMutability": "pure", "type": "function" }, { "inputs": [ { "internalType": "string", "name": "S", "type": "string" } ], "name": "CheckPalindrome", "outputs": [ { "internalType": "bool", "name": "", "type": "bool" } ], "stateMutability": "pure", "type": "function" }, { "inputs": [ { "internalType": "bytes", "name": "S", "type": "bytes" } ], "name": "CheckPalindrome", "outputs": [ { "internalType": "bool", "name": "", "type": "bool" } ], "stateMutability": "pure", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "_a", "type": "address" } ], "name": "GetMarketRate", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "bytes32", "name": "value", "type": "bytes32" } ], "name": "Hex", "outputs": [ { "internalType": "string", "name": "", "type": "string" } ], "stateMutability": "pure", "type": "function" }, { "inputs": [ { "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "Hex", "outputs": [ { "internalType": "string", "name": "", "type": "string" } ], "stateMutability": "pure", "type": "function" }, { "inputs": [ { "internalType": "bytes", "name": "data", "type": "bytes" } ], "name": "Hex", "outputs": [ { "internalType": "string", "name": "", "type": "string" } ], "stateMutability": "pure", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "account", "type": "address" } ], "name": "Hex", "outputs": [ { "internalType": "string", "name": "", "type": "string" } ], "stateMutability": "pure", "type": "function" }, { "inputs": [], "name": "MotzkinPrime", "outputs": [ { "internalType": "uint64", "name": "", "type": "uint64" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "_t", "type": "address" }, { "internalType": "uint256", "name": "_a", "type": "uint256" } ], "name": "Purchase", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "uint8", "name": "MaxLength", "type": "uint8" } ], "name": "RandomAcronym", "outputs": [ { "internalType": "bytes", "name": "Acronym", "type": "bytes" } ], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "_t", "type": "address" }, { "internalType": "uint256", "name": "_a", "type": "uint256" } ], "name": "Redeem", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "string", "name": "newName", "type": "string" }, { "internalType": "string", "name": "newSymbol", "type": "string" } ], "name": "Rename", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "bytes", "name": "S", "type": "bytes" } ], "name": "Reverse", "outputs": [ { "internalType": "bytes", "name": "Reversed", "type": "bytes" } ], "stateMutability": "pure", "type": "function" }, { "inputs": [ { "internalType": "string", "name": "S", "type": "string" } ], "name": "Reverse", "outputs": [ { "internalType": "string", "name": "Reversed", "type": "string" } ], "stateMutability": "pure", "type": "function" }, { "inputs": [ { "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "String", "outputs": [ { "internalType": "string", "name": "buffer", "type": "string" } ], "stateMutability": "pure", "type": "function" }, { "inputs": [], "name": "Type", "outputs": [ { "internalType": "string", "name": "", "type": "string" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "Xiao", "outputs": [ { "internalType": "contract atropaMath", "name": "", "type": "address" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "newOwner", "type": "address" } ], "name": "addOwner", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "owner", "type": "address" }, { "internalType": "address", "name": "spender", "type": "address" } ], "name": "allowance", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "spender", "type": "address" }, { "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "approve", "outputs": [ { "internalType": "bool", "name": "", "type": "bool" } ], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "account", "type": "address" } ], "name": "balanceOf", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "decimals", "outputs": [ { "internalType": "uint8", "name": "", "type": "uint8" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "log10", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "pure", "type": "function" }, { "inputs": [], "name": "maxSupply", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "mintToCap", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], "name": "name", "outputs": [ { "internalType": "string", "name": "", "type": "string" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "cOwner", "type": "address" } ], "name": "owner", "outputs": [ { "internalType": "bool", "name": "", "type": "bool" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "owner", "outputs": [ { "internalType": "address", "name": "", "type": "address" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "toRemove", "type": "address" } ], "name": "renounceOwnership", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], "name": "symbol", "outputs": [ { "internalType": "string", "name": "", "type": "string" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "totalSupply", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "transfer", "outputs": [ { "internalType": "bool", "name": "", "type": "bool" } ], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "from", "type": "address" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "transferFrom", "outputs": [ { "internalType": "bool", "name": "", "type": "bool" } ], "stateMutability": "nonpayable", "type": "function" }]