Address Details
contract
token
0x17700282592D6917F6A73D0bF8AcCf4D578c131e
- Token
- Moola (MOO)
- Creator
- 0x4a27c0–5f6ee3 at 0x77cb16–0af6a1
- Balance
- 0 CELO ( )
- Tokens
-
Fetching tokens...
- Transactions
- 16,015 Transactions
- Transfers
- 3 Transfers
- Gas Used
- 564,588,748
- Last Balance Update
- 18464125
Transactions
Token Transfers
Tokens
Internal Transactions
Coin Balance History
Logs
Code
Read Contract
Write Contract
This contract has been partially verified via Sourcify.
View contract in Sourcify repository
- Contract name:
- MooToken
- Optimization enabled
- true
- Compiler version
- v0.8.3+commit.8d00100c
- Optimization runs
- 999999
- EVM Version
- istanbul
- Verified at
- 2021-12-10T14:40:39.345563Z
contracts/MooToken.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; import "./voting/TransferrableVotingToken.sol"; /** * Moola governance token, based on Ube. */ contract MooToken is TransferrableVotingToken { /// @notice The maximum supply of Ube Tokens. uint96 public constant MAX_SUPPLY = 100_000_000e18; /** * @notice Construct a new Moo token * Note: this contract doesn't specify an initial minter, so there is no way new * tokens can get created. * @param _initialOwner The initial account to grant all the tokens */ constructor(address _initialOwner) TransferrableVotingToken( "Moola", "MOO", 18, MAX_SUPPLY, _initialOwner ) // solhint-disable-next-line no-empty-blocks { // Do nothing } }
/contracts/interfaces/IHasVotes.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; /** * Reads the votes that an account has. */ interface IHasVotes { /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint96); /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint256 blockNumber) external view returns (uint96); }
/contracts/interfaces/INonTransferrableToken.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; /** * A token that cannot be transferred. */ interface INonTransferrableToken { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); // Views function totalSupply() external view returns (uint256); function balanceOf(address _account) external view returns (uint256); }
/contracts/interfaces/IVotingDelegates.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; /** * Interface for a contract that keeps track of voting delegates. */ interface IVotingDelegates { /// @notice An event thats emitted when an account changes its delegate event DelegateChanged( address indexed delegator, address indexed fromDelegate, address indexed toDelegate ); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged( address indexed delegate, uint256 previousBalance, uint256 newBalance ); /// @notice An event emitted when an account's voting power is transferred. // - If `from` is `address(0)`, power was minted. // - If `to` is `address(0)`, power was burned. event Transfer(address indexed from, address indexed to, uint256 amount); /// @notice Name of the contract. // Required for signing. function name() external view returns (string memory); /// @notice A record of each accounts delegate function delegates(address delegatee) external view returns (address); /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external; /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) external; /** * @notice Get the amount of voting power of an account * @param account The address of the account to get the balance of * @return The amount of voting power held */ function votingPower(address account) external view returns (uint96); /// @notice Total voting power in existence. function totalVotingPower() external view returns (uint96); }
/contracts/voting/TransferrableVotingToken.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; import "./VotingToken.sol"; contract TransferrableVotingToken is VotingToken { /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. * @param initialSupply_ Initial supply of tokens * @param account_ The initial account to grant all the tokens */ constructor( string memory name_, string memory symbol_, uint8 decimals_, uint96 initialSupply_, address account_ ) VotingToken(name_, symbol_, decimals_) { _mintVotes(account_, initialSupply_); } //////////////////////////////// // // The below code is copied from Uniswap's Uni.sol. // Changes are marked with "XXX". // //////////////////////////////// // XXX: deleted name, symbol, decimals, totalSupply, minter, mintingAllowedAfter, // minimumTimeBetweenMints, mintCap // Allowance amounts on behalf of others mapping (address => mapping (address => uint96)) internal allowances; // XXX: balances, delegates, Checkpoint, checkpoints, // numCheckpoints, DOMAIN_TYPEHASH, DELEGATION_TYPEHASH // are inherited from VotingPower.sol /// @notice The EIP-712 typehash for the permit struct used by the contract bytes32 public constant PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); // XXX: nonces is inherited from VotingPower.sol // XXX: deleted MinterChanged // XXX: deleted DelegateChanged, DelegateVotesChanged, Transfer and moved them to IVotingPower /// @notice The standard EIP-20 approval event event Approval(address indexed owner, address indexed spender, uint256 amount); // XXX: deleted constructor, setMinter, mint /** * @notice Get the number of tokens `spender` is approved to spend on behalf of `account` * @param account The address of the account holding the funds * @param spender The address of the account spending the funds * @return The number of tokens approved */ function allowance(address account, address spender) external view returns (uint) { return allowances[account][spender]; } // XXX_ADDED: upgrade to Solidity 0.8.3, which doesn't allow use of uintn(-1) uint256 internal constant MAX_INT = 2**256 - 1; uint96 internal constant MAX_INT_96 = 2**96 - 1; /** * @notice Approve `spender` to transfer up to `amount` from `src` * @dev This will overwrite the approval amount for `spender` * and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) * @param spender The address of the account which may transfer tokens * @param rawAmount The number of tokens that are approved (2^256-1 means infinite) * @return Whether or not the approval succeeded */ function approve(address spender, uint rawAmount) external returns (bool) { uint96 amount; // XXX: uint256(-1) => MAX_INT if (rawAmount == MAX_INT) { // XXX: uint96(-1) => MAX_INT_96 amount = MAX_INT_96; } else { amount = safe96(rawAmount, "Uni::approve: amount exceeds 96 bits"); } allowances[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } /** * @notice Triggers an approval from owner to spends * @param owner The address to approve from * @param spender The address to be approved * @param rawAmount The number of tokens that are approved (2^256-1 means infinite) * @param deadline The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function permit(address owner, address spender, uint rawAmount, uint deadline, uint8 v, bytes32 r, bytes32 s) external { uint96 amount; // XXX: uint256(-1) => MAX_INT if (rawAmount == MAX_INT) { // XXX: uint96(-1) => MAX_INT_oy amount = MAX_INT_96; } else { amount = safe96(rawAmount, "Uni::permit: amount exceeds 96 bits"); } // XXX_CHANGED: name => name() bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this))); bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, rawAmount, nonces[owner]++, deadline)); bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "Uni::permit: invalid signature"); require(signatory == owner, "Uni::permit: unauthorized"); // XXX: added linter disable // solhint-disable-next-line not-rely-on-time require(block.timestamp <= deadline, "Uni::permit: signature expired"); allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } // XXX: deleted balanceOf /** * @notice Transfer `amount` tokens from `msg.sender` to `dst` * @param dst The address of the destination account * @param rawAmount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transfer(address dst, uint rawAmount) external returns (bool) { // XXX_ADDED require( dst != address(this), "TransferrableVotingToken::transfer: cannot send tokens to contract" ); uint96 amount = safe96(rawAmount, "Uni::transfer: amount exceeds 96 bits"); _transferTokens(msg.sender, dst, amount); return true; } /** * @notice Transfer `amount` tokens from `src` to `dst` * @param src The address of the source account * @param dst The address of the destination account * @param rawAmount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transferFrom(address src, address dst, uint rawAmount) external returns (bool) { // XXX_ADDED require( dst != address(this), "TransferrableVotingToken::transferFrom: cannot send tokens to contract" ); address spender = msg.sender; uint96 spenderAllowance = allowances[src][spender]; uint96 amount = safe96(rawAmount, "Uni::approve: amount exceeds 96 bits"); // XXX: uint96(-1) => MAX_INT_96 if (spender != src && spenderAllowance != MAX_INT_96) { uint96 newAllowance = sub96(spenderAllowance, amount, "Uni::transferFrom: transfer amount exceeds spender allowance"); allowances[src][spender] = newAllowance; emit Approval(src, spender, newAllowance); } _transferTokens(src, dst, amount); return true; } // XXX: rest is in VotingPower.sol }
/contracts/voting/VotingPower.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; import "../interfaces/IHasVotes.sol"; import "../interfaces/IVotingDelegates.sol"; /** * Power to vote. Heavily based on Uni. */ contract VotingPower is IHasVotes, IVotingDelegates { // Name of the token. This cannot be changed after creating the token. string private _name; // Total amount of voting power available. uint96 private totalVotingPowerSupply; constructor(string memory name_) { _name = name_; } function name() public view virtual override returns (string memory) { return _name; } /** * @notice Mint new voting power * @param dst The address of the destination account * @param amount The amount of voting power to be minted */ function _mintVotes(address dst, uint96 amount) internal { require(dst != address(0), "VotingPower::_mintVotes: cannot mint to the zero address"); // transfer the amount to the recipient balances[dst] = add96(balances[dst], amount, "VotingPower::_mintVotes: mint amount overflows"); totalVotingPowerSupply = add96( totalVotingPowerSupply, amount, "VotingPower::_mintVotes: total supply overflows" ); emit Transfer(address(0), dst, amount); // move delegates _moveDelegates(address(0), delegates[dst], amount); } /** * @notice Burn voting power * @param src The address of the source account * @param amount The amount of voting power to be burned */ function _burnVotes(address src, uint96 amount) internal { require(src != address(0), "VotingPower::_burnVotes: cannot burn from the zero address"); // transfer the amount to the recipient balances[src] = sub96(balances[src], amount, "VotingPower::_burnVotes: burn amount underflows"); totalVotingPowerSupply = sub96( totalVotingPowerSupply, amount, "VotingPower::_burnVotes: total supply underflows" ); emit Transfer(src, address(0), amount); // move delegates _moveDelegates(delegates[src], address(0), amount); } /** * @notice Get the amount of voting power of an account * @param account The address of the account to get the balance of * @return The amount of voting power held */ function votingPower(address account) public view override returns (uint96) { return balances[account]; } function totalVotingPower() public view override returns (uint96) { return totalVotingPowerSupply; } //////////////////////////////// // // The below code is copied from ../uniswap-governance/contracts/Uni.sol. // Changes are marked with "XXX". // //////////////////////////////// // XXX: deleted name, symbol, decimals, totalSupply, minter, mintingAllowedAfter, // minimumTimeBetweenMints, mintCap, allowances // Official record of token balances for each account // XXX: internal => private visibility mapping (address => uint96) private balances; /// @notice A record of each accounts delegate mapping (address => address) public override delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint96 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); // XXX: deleted PERMIT_TYPEHASH /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; // XXX: deleted MinterChanged // XXX: deleted DelegateChanged, DelegateVotesChanged, Transfer and moved them to IVotingPower // XXX: deleted Approval // XXX: deleted constructor, setMinter, mint, allowance, approve, permit, balanceOf // XXX: deleted transfer, transferFrom /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) public override { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public override { // XXX_CHANGED: name => _name bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(_name)), getChainId(), address(this))); bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry)); bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "Uni::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "Uni::delegateBySig: invalid nonce"); // XXX: added linter disable // solhint-disable-next-line not-rely-on-time require(block.timestamp <= expiry, "Uni::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view override returns (uint96) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) public view override returns (uint96) { require(blockNumber < block.number, "Uni::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = delegates[delegator]; uint96 delegatorBalance = balances[delegator]; delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _transferTokens(address src, address dst, uint96 amount) internal { require(src != address(0), "Uni::_transferTokens: cannot transfer from the zero address"); require(dst != address(0), "Uni::_transferTokens: cannot transfer to the zero address"); balances[src] = sub96(balances[src], amount, "Uni::_transferTokens: transfer amount exceeds balance"); balances[dst] = add96(balances[dst], amount, "Uni::_transferTokens: transfer amount overflows"); emit Transfer(src, dst, amount); _moveDelegates(delegates[src], delegates[dst], amount); } function _moveDelegates(address srcRep, address dstRep, uint96 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { uint32 srcRepNum = numCheckpoints[srcRep]; uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint96 srcRepNew = sub96(srcRepOld, amount, "Uni::_moveVotes: vote amount underflows"); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { uint32 dstRepNum = numCheckpoints[dstRep]; uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint96 dstRepNew = add96(dstRepOld, amount, "Uni::_moveVotes: vote amount overflows"); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal { uint32 blockNumber = safe32(block.number, "Uni::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function safe96(uint n, string memory errorMessage) internal pure returns (uint96) { require(n < 2**96, errorMessage); return uint96(n); } function add96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) { uint96 c = a + b; require(c >= a, errorMessage); return c; } function sub96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) { require(b <= a, errorMessage); return a - b; } function getChainId() internal view returns (uint) { uint256 chainId; // XXX: added linter disable // solhint-disable-next-line no-inline-assembly assembly { chainId := chainid() } return chainId; } }
/contracts/voting/VotingToken.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; import "../interfaces/INonTransferrableToken.sol"; import "./VotingPower.sol"; /** * A non-transferrable token that can vote. */ contract VotingToken is INonTransferrableToken, VotingPower { string private _symbol; uint8 private immutable _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor( string memory name_, string memory symbol_, uint8 decimals_ ) VotingPower(name_) { _symbol = symbol_; _decimals = decimals_; } function name() public view override(INonTransferrableToken, VotingPower) returns (string memory) { return VotingPower.name(); } function symbol() public view override returns (string memory) { return _symbol; } function decimals() public view override returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return totalVotingPower(); } function balanceOf(address _account) public view override returns (uint256) { return votingPower(_account); } }
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_initialOwner","internalType":"address"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"DelegateChanged","inputs":[{"type":"address","name":"delegator","internalType":"address","indexed":true},{"type":"address","name":"fromDelegate","internalType":"address","indexed":true},{"type":"address","name":"toDelegate","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"DelegateVotesChanged","inputs":[{"type":"address","name":"delegate","internalType":"address","indexed":true},{"type":"uint256","name":"previousBalance","internalType":"uint256","indexed":false},{"type":"uint256","name":"newBalance","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DELEGATION_TYPEHASH","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DOMAIN_TYPEHASH","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint96","name":"","internalType":"uint96"}],"name":"MAX_SUPPLY","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"PERMIT_TYPEHASH","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"rawAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"_account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint32","name":"fromBlock","internalType":"uint32"},{"type":"uint96","name":"votes","internalType":"uint96"}],"name":"checkpoints","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"uint32","name":"","internalType":"uint32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"delegate","inputs":[{"type":"address","name":"delegatee","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"delegateBySig","inputs":[{"type":"address","name":"delegatee","internalType":"address"},{"type":"uint256","name":"nonce","internalType":"uint256"},{"type":"uint256","name":"expiry","internalType":"uint256"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"delegates","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint96","name":"","internalType":"uint96"}],"name":"getCurrentVotes","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint96","name":"","internalType":"uint96"}],"name":"getPriorVotes","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"blockNumber","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"nonces","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint32","name":"","internalType":"uint32"}],"name":"numCheckpoints","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"permit","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"rawAmount","internalType":"uint256"},{"type":"uint256","name":"deadline","internalType":"uint256"},{"type":"uint8","name":"v","internalType":"uint8"},{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint96","name":"","internalType":"uint96"}],"name":"totalVotingPower","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"dst","internalType":"address"},{"type":"uint256","name":"rawAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"src","internalType":"address"},{"type":"address","name":"dst","internalType":"address"},{"type":"uint256","name":"rawAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint96","name":"","internalType":"uint96"}],"name":"votingPower","inputs":[{"type":"address","name":"account","internalType":"address"}]}]
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106101985760003560e01c806370a08231116100e3578063c07473f61161008c578063dd62ed3e11610066578063dd62ed3e14610454578063e7a324dc146104a8578063f1127ed8146104cf57610198565b8063c07473f6146103ea578063c3cda5201461042e578063d505accf1461044157610198565b806395d89b41116100bd57806395d89b41146103bc578063a9059cbb146103c4578063b4b5ea57146103d757610198565b806370a0823114610376578063782d6fe1146103895780637ecebe001461039c57610198565b8063313ce567116101455780635c19a95c1161011f5780635c19a95c14610310578063671b3793146103255780636fcfff451461033b57610198565b8063313ce5671461025557806332cb6b0c14610286578063587cde1e146102b557610198565b806320606b701161017657806320606b70146101f457806323b872dd1461021b57806330adf81f1461022e57610198565b806306fdde031461019d578063095ea7b3146101bb57806318160ddd146101de575b600080fd5b6101a5610541565b6040516101b29190612473565b60405180910390f35b6101ce6101c93660046122e3565b610550565b60405190151581526020016101b2565b6101e661065e565b6040519081526020016101b2565b6101e67f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6101ce61022936600461223f565b61068a565b6101e67f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60405160ff7f00000000000000000000000000000000000000000000000000000000000000121681526020016101b2565b6102986a52b7d2dcc80cd2e400000081565b6040516bffffffffffffffffffffffff90911681526020016101b2565b6102eb6102c33660046121f3565b60036020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101b2565b61032361031e3660046121f3565b6108fb565b005b6001546bffffffffffffffffffffffff16610298565b6103616103493660046121f3565b60056020526000908152604090205463ffffffff1681565b60405163ffffffff90911681526020016101b2565b6101e66103843660046121f3565b610908565b6102986103973660046122e3565b610942565b6101e66103aa3660046121f3565b60066020526000908152604090205481565b6101a5610c59565b6101ce6103d23660046122e3565b610ceb565b6102986103e53660046121f3565b610df4565b6102986103f83660046121f3565b73ffffffffffffffffffffffffffffffffffffffff166000908152600260205260409020546bffffffffffffffffffffffff1690565b61032361043c36600461230c565b610e92565b61032361044f36600461227a565b61127d565b6101e661046236600461220d565b73ffffffffffffffffffffffffffffffffffffffff91821660009081526008602090815260408083209390941682529190915220546bffffffffffffffffffffffff1690565b6101e67fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6105186104dd366004612363565b600460209081526000928352604080842090915290825290205463ffffffff81169064010000000090046bffffffffffffffffffffffff1682565b6040805163ffffffff90931683526bffffffffffffffffffffffff9091166020830152016101b2565b606061054b6117d2565b905090565b6000807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83141561058e57506bffffffffffffffffffffffff6105b3565b6105b0836040518060600160405280602481526020016127bb602491396117e1565b90505b33600081815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff89168085529083529281902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff871690811790915590519081529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a360019150505b92915050565b60006106776001546bffffffffffffffffffffffff1690565b6bffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff831630141561075d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604660248201527f5472616e736665727261626c65566f74696e67546f6b656e3a3a7472616e736660448201527f657246726f6d3a2063616e6e6f742073656e6420746f6b656e7320746f20636f60648201527f6e74726163740000000000000000000000000000000000000000000000000000608482015260a4015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff841660009081526008602090815260408083203380855290835281842054825160608101909352602480845291946bffffffffffffffffffffffff9091169390926107c59288926127bb908301396117e1565b90508673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561081157506bffffffffffffffffffffffff82811614155b156108e357600061083b83836040518060600160405280603c8152602001612682603c9139611833565b73ffffffffffffffffffffffffffffffffffffffff8981166000818152600860209081526040808320948a168084529482529182902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff87169081179091559151918252939450919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505b6108ee8787836118a1565b5060019695505050505050565b6109053382611bb3565b50565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600260205260409020546bffffffffffffffffffffffff165b919050565b60004382106109d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f556e693a3a6765745072696f72566f7465733a206e6f7420796574206465746560448201527f726d696e656400000000000000000000000000000000000000000000000000006064820152608401610754565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604090205463ffffffff1680610a0e576000915050610658565b73ffffffffffffffffffffffffffffffffffffffff841660009081526004602052604081208491610a4060018561257b565b63ffffffff90811682526020820192909252604001600020541611610ac65773ffffffffffffffffffffffffffffffffffffffff8416600090815260046020526040812090610a9060018461257b565b63ffffffff16815260208101919091526040016000205464010000000090046bffffffffffffffffffffffff1691506106589050565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260046020908152604080832083805290915290205463ffffffff16831015610b0e576000915050610658565b600080610b1c60018461257b565b90505b8163ffffffff168163ffffffff161115610c015760006002610b41848461257b565b610b4b9190612533565b610b55908361257b565b73ffffffffffffffffffffffffffffffffffffffff8816600090815260046020908152604080832063ffffffff8581168552908352928190208151808301909252549283168082526401000000009093046bffffffffffffffffffffffff1691810191909152919250871415610bd5576020015194506106589350505050565b805163ffffffff16871115610bec57819350610bfa565b610bf760018361257b565b92505b5050610b1f565b5073ffffffffffffffffffffffffffffffffffffffff8516600090815260046020908152604080832063ffffffff909416835292905220546bffffffffffffffffffffffff6401000000009091041691505092915050565b606060078054610c68906125c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610c94906125c5565b8015610ce15780601f10610cb657610100808354040283529160200191610ce1565b820191906000526020600020905b815481529060010190602001808311610cc457829003601f168201915b5050505050905090565b600073ffffffffffffffffffffffffffffffffffffffff8316301415610db9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f5472616e736665727261626c65566f74696e67546f6b656e3a3a7472616e736660448201527f65723a2063616e6e6f742073656e6420746f6b656e7320746f20636f6e74726160648201527f6374000000000000000000000000000000000000000000000000000000000000608482015260a401610754565b6000610ddd83604051806060016040528060258152602001612796602591396117e1565b9050610dea3385836118a1565b5060019392505050565b73ffffffffffffffffffffffffffffffffffffffff811660009081526005602052604081205463ffffffff1680610e2c576000610e8b565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260046020526040812090610e5d60018461257b565b63ffffffff16815260208101919091526040016000205464010000000090046bffffffffffffffffffffffff165b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8666000604051610ec491906123a1565b6040518091039020610ed34690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c084015273ffffffffffffffffffffffffffffffffffffffff8b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401909252815191909301207f1901000000000000000000000000000000000000000000000000000000000000610160830152610162820183905261018282018190529192506000906101a201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015611045573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f556e693a3a64656c656761746542795369673a20696e76616c6964207369676e60448201527f61747572650000000000000000000000000000000000000000000000000000006064820152608401610754565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260066020526040812080549161114483612619565b9190505589146111d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f556e693a3a64656c656761746542795369673a20696e76616c6964206e6f6e6360448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610754565b87421115611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f556e693a3a64656c656761746542795369673a207369676e617475726520657860448201527f70697265640000000000000000000000000000000000000000000000000000006064820152608401610754565b611270818b611bb3565b505050505b505050505050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8614156112ba57506bffffffffffffffffffffffff6112df565b6112dc866040518060600160405280602381526020016126f3602391396117e1565b90505b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661130a610541565b805190602001206113184690565b604080516020810194909452830191909152606082015230608082015260a001604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152918152815160209283012073ffffffffffffffffffffffffffffffffffffffff8c166000908152600690935290822080549193507f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9918c918c918c91866113c983612619565b9091555060408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810188905260e001604051602081830303815290604052805190602001209050600082826040516020016114709291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600080855291840180845281905260ff8b169284019290925260608301899052608083018890529092509060019060a0016020604051602081039080840390855afa1580156114f9573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81166115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f556e693a3a7065726d69743a20696e76616c6964207369676e617475726500006044820152606401610754565b8b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f556e693a3a7065726d69743a20756e617574686f72697a6564000000000000006044820152606401610754565b884211156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f556e693a3a7065726d69743a207369676e6174757265206578706972656400006044820152606401610754565b84600860008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508a73ffffffffffffffffffffffffffffffffffffffff168c73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925876040516117bc91906bffffffffffffffffffffffff91909116815260200190565b60405180910390a3505050505050505050505050565b606060008054610c68906125c5565b6000816c01000000000000000000000000841061182b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107549190612473565b509192915050565b6000836bffffffffffffffffffffffff16836bffffffffffffffffffffffff161115829061188e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107549190612473565b5061189983856125a0565b949350505050565b73ffffffffffffffffffffffffffffffffffffffff8316611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603b60248201527f556e693a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726160448201527f6e736665722066726f6d20746865207a65726f206164647265737300000000006064820152608401610754565b73ffffffffffffffffffffffffffffffffffffffff82166119e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f556e693a3a5f7472616e73666572546f6b656e733a2063616e6e6f742074726160448201527f6e7366657220746f20746865207a65726f2061646472657373000000000000006064820152608401610754565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260026020908152604091829020548251606081019093526035808452611a44936bffffffffffffffffffffffff90921692859291906126be90830139611833565b73ffffffffffffffffffffffffffffffffffffffff848116600090815260026020908152604080832080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff96871617905592861682529082902054825160608101909352602f808452611ad694919091169285929091906127df90830139611c67565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260409182902080547fffffffffffffffffffffffffffffffffffffffff000000000000000000000000166bffffffffffffffffffffffff968716179055905193851684529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a373ffffffffffffffffffffffffffffffffffffffff808416600090815260036020526040808220548584168352912054611bae92918216911683611cd8565b505050565b73ffffffffffffffffffffffffffffffffffffffff808316600081815260036020818152604080842080546002845282862054949093528787167fffffffffffffffffffffffff000000000000000000000000000000000000000084168117909155905191909516946bffffffffffffffffffffffff9092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611c61828483611cd8565b50505050565b600080611c74848661250c565b9050846bffffffffffffffffffffffff16816bffffffffffffffffffffffff1610158390611ccf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107549190612473565b50949350505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d2257506000816bffffffffffffffffffffffff16115b15611bae5773ffffffffffffffffffffffffffffffffffffffff831615611e145773ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604081205463ffffffff169081611d7c576000611ddb565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260046020526040812090611dad60018561257b565b63ffffffff16815260208101919091526040016000205464010000000090046bffffffffffffffffffffffff165b90506000611e02828560405180606001604052806027815260200161276f60279139611833565b9050611e1086848484611ef9565b5050505b73ffffffffffffffffffffffffffffffffffffffff821615611bae5773ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604081205463ffffffff169081611e69576000611ec8565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260046020526040812090611e9a60018561257b565b63ffffffff16815260208101919091526040016000205464010000000090046bffffffffffffffffffffffff165b90506000611eef828560405180606001604052806026815260200161271660269139611c67565b9050611275858484845b6000611f1d4360405180606001604052806033815260200161273c6033913961217c565b905060008463ffffffff16118015611f84575073ffffffffffffffffffffffffffffffffffffffff8516600090815260046020526040812063ffffffff831691611f6860018861257b565b63ffffffff908116825260208201929092526040016000205416145b1561201a5773ffffffffffffffffffffffffffffffffffffffff851660009081526004602052604081208391611fbb60018861257b565b63ffffffff168152602081019190915260400160002080546bffffffffffffffffffffffff92909216640100000000027fffffffffffffffffffffffffffffffff000000000000000000000000ffffffff909216919091179055612115565b60408051808201825263ffffffff80841682526bffffffffffffffffffffffff808616602080850191825273ffffffffffffffffffffffffffffffffffffffff8b166000908152600482528681208b8616825290915294909420925183549451909116640100000000027fffffffffffffffffffffffffffffffff000000000000000000000000000000009094169116179190911790556120bc8460016124e4565b73ffffffffffffffffffffffffffffffffffffffff8616600090815260056020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff929092169190911790555b604080516bffffffffffffffffffffffff80861682528416602082015273ffffffffffffffffffffffffffffffffffffffff8716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b600081640100000000841061182b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107549190612473565b803573ffffffffffffffffffffffffffffffffffffffff8116811461093d57600080fd5b803560ff8116811461093d57600080fd5b600060208284031215612204578081fd5b610e8b826121be565b6000806040838503121561221f578081fd5b612228836121be565b9150612236602084016121be565b90509250929050565b600080600060608486031215612253578081fd5b61225c846121be565b925061226a602085016121be565b9150604084013590509250925092565b600080600080600080600060e0888a031215612294578283fd5b61229d886121be565b96506122ab602089016121be565b955060408801359450606088013593506122c7608089016121e2565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156122f5578182fd5b6122fe836121be565b946020939093013593505050565b60008060008060008060c08789031215612324578182fd5b61232d876121be565b95506020870135945060408701359350612349606088016121e2565b92506080870135915060a087013590509295509295509295565b60008060408385031215612375578182fd5b61237e836121be565b9150602083013563ffffffff81168114612396578182fd5b809150509250929050565b600080835482600182811c9150808316806123bd57607f831692505b60208084108214156123f6577f4e487b710000000000000000000000000000000000000000000000000000000087526022600452602487fd5b81801561240a576001811461243957612465565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00861689528489019650612465565b60008a815260209020885b8681101561245d5781548b820152908501908301612444565b505084890196505b509498975050505050505050565b6000602080835283518082850152825b8181101561249f57858101830151858201604001528201612483565b818111156124b05783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b600063ffffffff80831681851680830382111561250357612503612652565b01949350505050565b60006bffffffffffffffffffffffff80831681851680830382111561250357612503612652565b600063ffffffff8084168061256f577f4e487b710000000000000000000000000000000000000000000000000000000083526012600452602483fd5b92169190910492915050565b600063ffffffff8381169083168181101561259857612598612652565b039392505050565b60006bffffffffffffffffffffffff8381169083168181101561259857612598612652565b600181811c908216806125d957607f821691505b60208210811415612613577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561264b5761264b612652565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfe556e693a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365556e693a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365556e693a3a7065726d69743a20616d6f756e7420657863656564732039362062697473556e693a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773556e693a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473556e693a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773556e693a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473556e693a3a617070726f76653a20616d6f756e7420657863656564732039362062697473556e693a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773a264697066735822122066747c4bbec5df9c49f41b4a2d51306c94e5e3e76183f20fe801ac7067f8646364736f6c63430008030033