├── .gitattributes ├── .gitignore ├── .prettierrc ├── .solhint.json ├── .yarnrc ├── LICENSE ├── README.md ├── contracts ├── EmblemWeaver.sol ├── FieldGenerator.sol ├── FrameGenerator.sol ├── HardwareGenerator.sol ├── SVGs │ ├── Fields │ │ ├── FieldSVGs1.sol │ │ ├── FieldSVGs10.sol │ │ ├── FieldSVGs11.sol │ │ ├── FieldSVGs12.sol │ │ ├── FieldSVGs13.sol │ │ ├── FieldSVGs14.sol │ │ ├── FieldSVGs15.sol │ │ ├── FieldSVGs16.sol │ │ ├── FieldSVGs17.sol │ │ ├── FieldSVGs18.sol │ │ ├── FieldSVGs19.sol │ │ ├── FieldSVGs2.sol │ │ ├── FieldSVGs20.sol │ │ ├── FieldSVGs21.sol │ │ ├── FieldSVGs22.sol │ │ ├── FieldSVGs23.sol │ │ ├── FieldSVGs24.sol │ │ ├── FieldSVGs3.sol │ │ ├── FieldSVGs4.sol │ │ ├── FieldSVGs5.sol │ │ ├── FieldSVGs6.sol │ │ ├── FieldSVGs7.sol │ │ ├── FieldSVGs8.sol │ │ └── FieldSVGs9.sol │ ├── Frames │ │ ├── FrameSVGs1.sol │ │ └── FrameSVGs2.sol │ ├── Hardware │ │ ├── HardwareSVGs1.sol │ │ ├── HardwareSVGs10.sol │ │ ├── HardwareSVGs11.sol │ │ ├── HardwareSVGs12.sol │ │ ├── HardwareSVGs13.sol │ │ ├── HardwareSVGs14.sol │ │ ├── HardwareSVGs15.sol │ │ ├── HardwareSVGs16.sol │ │ ├── HardwareSVGs17.sol │ │ ├── HardwareSVGs18.sol │ │ ├── HardwareSVGs19.sol │ │ ├── HardwareSVGs2.sol │ │ ├── HardwareSVGs20.sol │ │ ├── HardwareSVGs21.sol │ │ ├── HardwareSVGs22.sol │ │ ├── HardwareSVGs23.sol │ │ ├── HardwareSVGs24.sol │ │ ├── HardwareSVGs25.sol │ │ ├── HardwareSVGs26.sol │ │ ├── HardwareSVGs27.sol │ │ ├── HardwareSVGs28.sol │ │ ├── HardwareSVGs29.sol │ │ ├── HardwareSVGs3.sol │ │ ├── HardwareSVGs30.sol │ │ ├── HardwareSVGs31.sol │ │ ├── HardwareSVGs32.sol │ │ ├── HardwareSVGs33.sol │ │ ├── HardwareSVGs34.sol │ │ ├── HardwareSVGs35.sol │ │ ├── HardwareSVGs36.sol │ │ ├── HardwareSVGs37.sol │ │ ├── HardwareSVGs38.sol │ │ ├── HardwareSVGs4.sol │ │ ├── HardwareSVGs5.sol │ │ ├── HardwareSVGs6.sol │ │ ├── HardwareSVGs7.sol │ │ ├── HardwareSVGs8.sol │ │ └── HardwareSVGs9.sol │ └── ShieldBadgeSVGs.sol ├── Shields.sol ├── interfaces │ ├── ICategories.sol │ ├── IColors.sol │ ├── IEmblemWeaver.sol │ ├── IFieldGenerator.sol │ ├── IFieldSVGs.sol │ ├── IFrameGenerator.sol │ ├── IFrameSVGs.sol │ ├── IHardwareGenerator.sol │ ├── IHardwareSVGs.sol │ ├── IShieldBadgeSVGs.sol │ └── IShields.sol ├── libraries │ └── HexStrings.sol └── test │ ├── EmblemWeaverTest.sol │ ├── ShieldsGasTest.sol │ ├── ShieldsTest.sol │ ├── TestFieldGenerator.sol │ └── TestHardwareGenerator.sol ├── deploy ├── 01_deploy_field_generator.ts ├── 02_deploy_hardware_generator.ts ├── 03_deploy_frame_generator.ts ├── 04_deploy_shieldbadgesvgs.ts ├── 05_deploy_emblem_weaver.ts ├── 06_deploy_shields.ts └── 07_transfer_ownership.ts ├── deploySVGs ├── deployFieldSVGs.ts ├── deployedSVGs.json └── helpers.ts ├── deployments ├── goerli │ ├── .chainId │ ├── BuildPassSVGs.json │ ├── FieldGenerator.json │ ├── FrameGenerator.json │ ├── HardwareGenerator.json │ ├── ShieldDescriptor.json │ ├── Shields.json │ └── solcInputs │ │ ├── 0ac3b406cc563db62fbf6a074b8a54e1.json │ │ ├── 120b7981f2664f557f778127eaf1c6ed.json │ │ ├── 5bfe4b77149d6f73b152c3b333b753f0.json │ │ ├── b18099829130d9e20f6eb2b1e8b44ffc.json │ │ ├── f13209de5f6765da42f325a73fb27d59.json │ │ └── f83fc13fabc733ee8b83028c3110d7b0.json ├── mainnet │ ├── .chainId │ ├── EmblemWeaver.json │ ├── FieldGenerator.json │ ├── FrameGenerator.json │ ├── HardwareGenerator.json │ ├── ShieldBadgeSVGs.json │ ├── Shields.json │ └── solcInputs │ │ ├── 06c6c0124c47c1cdc59e63dde81c06b1.json │ │ ├── 09befa56f4355a6ca3989fb006f2f0b3.json │ │ ├── 132b2a838ee2991bd733956c8b035354.json │ │ ├── 53fca273d67f718f5cb0758c3ff9defc.json │ │ └── d28a8c5f5f1014153754a39e08baa75b.json └── rinkeby │ ├── .chainId │ ├── BuildPassSVGs.json │ ├── EmblemWeaver.json │ ├── FieldGenerator.json │ ├── FrameGenerator.json │ ├── HardwareGenerator.json │ ├── ShieldBadgeSVGs.json │ ├── ShieldDescriptor.json │ ├── Shields.json │ └── solcInputs │ ├── 06c6c0124c47c1cdc59e63dde81c06b1.json │ ├── 09befa56f4355a6ca3989fb006f2f0b3.json │ ├── 0ac3b406cc563db62fbf6a074b8a54e1.json │ ├── 132b2a838ee2991bd733956c8b035354.json │ ├── 32c3c77c4b2b5be30d2bd140bb4ee998.json │ ├── 39707df8ab59bdff5775ed0c387546b7.json │ ├── 3f384c0dfe2328302ebd4d9888e64775.json │ ├── 53fca273d67f718f5cb0758c3ff9defc.json │ ├── 5bfe4b77149d6f73b152c3b333b753f0.json │ ├── 7b1bbcd7f29fa3ba20bf06fb65a1b0f9.json │ ├── 97250a4cdb9387cee9c1bfaceb096ed2.json │ ├── a9e7d4fcf53118db8118fcbd76e082b4.json │ ├── b18099829130d9e20f6eb2b1e8b44ffc.json │ ├── d28a8c5f5f1014153754a39e08baa75b.json │ ├── d69528a4b69a6281f4bad594fdf80357.json │ └── fe897b961f7bc28b8df8819c7790723a.json ├── fields.txt ├── hardhat.config.ts ├── package.json ├── test ├── EmblemWeaver.spec.ts ├── FieldSVGs.spec.ts ├── FrameSVGs.spec.ts ├── HardwareSVGs.spec.ts ├── Shields.spec.ts ├── __snapshots__ │ ├── EmblemWeaver.spec.ts.snap │ ├── FieldSVGs.spec.ts.snap │ ├── FrameSVGs.spec.ts.snap │ ├── HardwareSVGs.spec.ts.snap │ ├── ShieldDescriptor.spec.ts.snap │ ├── Shields.spec.ts.snap │ └── svgs │ │ ├── .DS_Store │ │ ├── fields │ │ ├── 000_Perfect.svg │ │ ├── 001_Per Pale.svg │ │ ├── 002_Per Fess.svg │ │ ├── 003_Per Bend Sinister.svg │ │ ├── 004_Quarterly I.svg │ │ ├── 005_Per Saltire.svg │ │ ├── 006_Gyronny.svg │ │ ├── 007_Per Chevron.svg │ │ ├── 008_Per Chevron Inverted.svg │ │ ├── 009_Per Chevron Ployé.svg │ │ ├── 010_Per Chevron Inverted Ployé.svg │ │ ├── 011_Per Pale Indented.svg │ │ ├── 012_Per Pale Raguly.svg │ │ ├── 013_Per Pale Embattled .svg │ │ ├── 014_Per Pale Wavy.svg │ │ ├── 015_Per Pale Rayonny.svg │ │ ├── 016_Per Pale Nebuly.svg │ │ ├── 017_Per Pall Nebuly II.svg │ │ ├── 018_Per Pale Indented Pometty.svg │ │ ├── 019_Per Fess Indented.svg │ │ ├── 020_Per Fess Raguly.svg │ │ ├── 021_Per Fess Embattled.svg │ │ ├── 022_Per Fess Wavy.svg │ │ ├── 023_Per Fess Rayonny.svg │ │ ├── 024_Per Fess Nebuly I.svg │ │ ├── 025_Per Fess Nebuly II.svg │ │ ├── 026_Per Fess Indented Pometty.svg │ │ ├── 027_Per Fess with a Left Step.svg │ │ ├── 028_Per Fess Enarched.svg │ │ ├── 029_Per Bend Sinister Engrailed.svg │ │ ├── 030_Per Bend Sinister Wavy.svg │ │ ├── 031_Per Bend Sinister Bevilled.svg │ │ ├── 032_Quarterly Embattled.svg │ │ ├── 033_Quarterly Arrondi.svg │ │ ├── 034_Gyronny Arrondi of Twelve.svg │ │ ├── 035_Gyronny From Base.svg │ │ ├── 036_Gyronny From Chief.svg │ │ ├── 037_Gyronny Wavy I.svg │ │ ├── 038_Per Chevron Embattled.svg │ │ ├── 039_Pale I.svg │ │ ├── 040_Pale II.svg │ │ ├── 041_Pale Engrailed.svg │ │ ├── 042_Pale Lozengy.svg │ │ ├── 043_Pale Nebuly.svg │ │ ├── 044_Pale Offset.svg │ │ ├── 045_Pale Embattled.svg │ │ ├── 046_Pale Raguly.svg │ │ ├── 047_Pale Wavy I.svg │ │ ├── 048_Pale Wavy II.svg │ │ ├── 049_Pale Bevilled.svg │ │ ├── 050_Fess.svg │ │ ├── 051_Fess Engrailed.svg │ │ ├── 052_Fess Lozengy.svg │ │ ├── 053_Fess Raguly.svg │ │ ├── 054_Fess Wavy.svg │ │ ├── 055_Fess Rayonny.svg │ │ ├── 056_Bend Sinister I.svg │ │ ├── 057_Bend Sinister II.svg │ │ ├── 058_Bend Sinister Engrailed.svg │ │ ├── 059_Bend Sinister Ragully.svg │ │ ├── 060_Bend Sinister Wavy.svg │ │ ├── 061_Bordure.svg │ │ ├── 062_Bordure Engrailed.svg │ │ ├── 063_Bordure Indented.svg │ │ ├── 064_Bordure Embattled.svg │ │ ├── 065_Bordure Wavy.svg │ │ ├── 066_Bordure Rayonny.svg │ │ ├── 067_Razor Bordure.svg │ │ ├── 068_Canton.svg │ │ ├── 069_Canton Sinister.svg │ │ ├── 070_Chief.svg │ │ ├── 071_Chief Engrailed.svg │ │ ├── 072_Chief Indented.svg │ │ ├── 073_Chief Nebuly.svg │ │ ├── 074_Chief Embattled.svg │ │ ├── 075_Chief Wavy.svg │ │ ├── 076_Chief Rayonny.svg │ │ ├── 077_Chief Triangular.svg │ │ ├── 078_Chief Urdy.svg │ │ ├── 079_Base.svg │ │ ├── 080_Base Engrailed.svg │ │ ├── 081_Base Indented.svg │ │ ├── 082_Base Nebuly.svg │ │ ├── 083_Base Embattled.svg │ │ ├── 084_Base Wavy.svg │ │ ├── 085_Base Rayonny.svg │ │ ├── 086_Cross I.svg │ │ ├── 087_Cross II.svg │ │ ├── 088_Cross Engrailed.svg │ │ ├── 089_Saltire.svg │ │ ├── 090_Saltire Engrailed.svg │ │ ├── 091_Chevron I.svg │ │ ├── 092_Chevron II.svg │ │ ├── 093_Chevron Embattled.svg │ │ ├── 094_Chevron Inverted I.svg │ │ ├── 095_Chevron Inverted II.svg │ │ ├── 096_Two Bars.svg │ │ ├── 097_Three Bars.svg │ │ ├── 098_Four Bars.svg │ │ ├── 099_Two Pallets.svg │ │ ├── 100_Three Pallets.svg │ │ ├── 101_Four Pallets.svg │ │ ├── 102_Two Pales Engrailed.svg │ │ ├── 103_Two Pales Nebuly.svg │ │ ├── 104_Two Pales Wavy I.svg │ │ ├── 105_Two Pales Wavy II.svg │ │ ├── 106_Two Pales Dancetty.svg │ │ ├── 107_Orle.svg │ │ ├── 108_Orle Embattled.svg │ │ ├── 109_Pall.svg │ │ ├── 110_Pall Inverted.svg │ │ ├── 111_Pile.svg │ │ ├── 112_Pile Ployé.svg │ │ ├── 113_Pile Inverted.svg │ │ ├── 114_Pile Inverted Ployé.svg │ │ ├── 115_Two Piles.svg │ │ ├── 116_Flaunches.svg │ │ ├── 117_Gyron.svg │ │ ├── 118_Chief Pale.svg │ │ ├── 119_Tierce.svg │ │ ├── 120_Tierce Sinister.svg │ │ ├── 121_Tierces.svg │ │ ├── 122_Gore.svg │ │ ├── 123_Gore Sinister.svg │ │ ├── 124_Gores.svg │ │ ├── 125_Paly of Four.svg │ │ ├── 126_Paly of Eight.svg │ │ ├── 127_Paly Dancetty.svg │ │ ├── 128_Paly Embattled.svg │ │ ├── 129_Paly Wavy I.svg │ │ ├── 130_Paly Wavy II.svg │ │ ├── 131_Barry of Four.svg │ │ ├── 132_Barry of Eight.svg │ │ ├── 133_Barry Dancetty.svg │ │ ├── 134_Barry Embattled.svg │ │ ├── 135_Barry Wavy I.svg │ │ ├── 136_Barry Wavy II.svg │ │ ├── 137_Checky I.svg │ │ ├── 138_Checky II.svg │ │ ├── 139_Checky III.svg │ │ ├── 140_Checky IV.svg │ │ ├── 141_Checky V.svg │ │ ├── 142_Bendy Sinister I.svg │ │ ├── 143_Bendy Sinister II.svg │ │ ├── 144_Bendy Sinister III.svg │ │ ├── 145_Bendy Sinister IV.svg │ │ ├── 146_Chevronny I.svg │ │ ├── 147_Chevronny II.svg │ │ ├── 148_Chevronny Inverted I.svg │ │ ├── 149_Chevronny Inverted II.svg │ │ ├── 150_Lozengy I.svg │ │ ├── 151_Lozengy II.svg │ │ ├── 152_Lozengy Wide.svg │ │ ├── 153_Lozengy Barry.svg │ │ ├── 154_Fusilly I.svg │ │ ├── 155_Fusilly II.svg │ │ ├── 156_Fusilly III.svg │ │ ├── 157_Pily I.svg │ │ ├── 158_Pily II.svg │ │ ├── 159_Orly.svg │ │ ├── 160_Roundel.svg │ │ ├── 161_Annulet.svg │ │ ├── 162_Billet.svg │ │ ├── 163_Triangle.svg │ │ ├── 164_Inescutcheon.svg │ │ ├── 165_Lozenge.svg │ │ ├── 166_Mascle.svg │ │ ├── 167_Mullet.svg │ │ ├── 168_Quatrefoil.svg │ │ ├── 169_Quasar.svg │ │ ├── 170_Three Roundels.svg │ │ ├── 171_Three Quatrefoils.svg │ │ ├── 172_Semy of Roundels.svg │ │ ├── 173_Biletty.svg │ │ ├── 174_Semy of Quatrefoils.svg │ │ ├── 175_Semy-de-Lis.svg │ │ ├── 176_Estencelly.svg │ │ ├── 177_Mullety.svg │ │ ├── 178_Papellony.svg │ │ ├── 179_Masoned.svg │ │ ├── 180_Fretty I.svg │ │ ├── 181_Fretty II.svg │ │ ├── 182_Grillage.svg │ │ ├── 183_Vair.svg │ │ ├── 184_Counter-Vair.svg │ │ ├── 185_Vair Ancient.svg │ │ ├── 186_Per Pale and Per Chevron.svg │ │ ├── 187_Per Pale and Per Fess Indented.svg │ │ ├── 188_Per Fess and Per Pale Wavy.svg │ │ ├── 189_Per Saltire and Per Fess.svg │ │ ├── 190_Per Pale and Barry of Four.svg │ │ ├── 191_Per Pale and Barry of Eight.svg │ │ ├── 192_Per Fess and Paly of Five.svg │ │ ├── 193_Per Fess and Two Pallets.svg │ │ ├── 194_Cross and Saltire I.svg │ │ ├── 195_Grid.svg │ │ ├── 196_Supergrid I.svg │ │ ├── 197_Supergrid II.svg │ │ ├── 198_Microdot.svg │ │ ├── 199_Ehrenstein.svg │ │ ├── 200_Semy of Alternating Roundels.svg │ │ ├── 201_Quasar Semy.svg │ │ ├── 202_Tiles V.svg │ │ ├── 203_QuiltX I.svg │ │ ├── 204_Bloomy.svg │ │ ├── 205_Talon Matrix I.svg │ │ ├── 206_Doppler.svg │ │ ├── 207_Nine Rings.svg │ │ ├── 208_Ripple.svg │ │ ├── 209_Spiral.svg │ │ ├── 210_Rasterwave Pallets.svg │ │ ├── 211_Rasterlines Barry.svg │ │ ├── 212_Rasterlines Bend Sinister.svg │ │ ├── 213_Rasterlines Pale Horizon.svg │ │ ├── 214_Rasterlines Barry and Bendy Sinister.svg │ │ ├── 215_Rasterlines Barry-X.svg │ │ ├── 216_Gyronny Wavy II.svg │ │ ├── 217_Hypno.svg │ │ ├── 218_Infinigyron.svg │ │ ├── 219_Laser.svg │ │ ├── 220_Laser and Boxes Countercharged.svg │ │ ├── 221_Quadrobeams.svg │ │ ├── 222_Laserwheels.svg │ │ ├── 223_Gyronny and Orly.svg │ │ ├── 224_Flex Checky.svg │ │ ├── 225_Hyperbend.svg │ │ ├── 226_Burst.svg │ │ ├── 227_Shattered.svg │ │ ├── 228_Warp.svg │ │ ├── 229_Mach.svg │ │ ├── 230_Kaleidoscope.svg │ │ ├── 231_AxoPile.svg │ │ ├── 232_Lens.svg │ │ ├── 233_Bender.svg │ │ ├── 234_Stretcher.svg │ │ ├── 235_Inner Sphere.svg │ │ ├── 236_Stepper.svg │ │ ├── 237_Per Bend Sinister Hand.svg │ │ ├── 238_Per Pale Indented Hand.svg │ │ ├── 239_Pall Inverted Hand.svg │ │ ├── 240_Orle Hand.svg │ │ ├── 241_Five Pallets Hand.svg │ │ ├── 242_Per Pall.svg │ │ ├── 243_Per Pall Inverted.svg │ │ ├── 244_Tierced Per Pale.svg │ │ ├── 245_Tierced per Fess.svg │ │ ├── 246_Tierced per Bend Sinister.svg │ │ ├── 247_Tierced Per Pale and Per Fess I.svg │ │ ├── 248_Tierced Per Pale and Per Fess II.svg │ │ ├── 249_Pale Checky.svg │ │ ├── 250_Bordure Compony.svg │ │ ├── 251_Bordure Parted Bordurewise.svg │ │ ├── 252_Bordure Counter-Compony.svg │ │ ├── 253_Cross Cotised.svg │ │ ├── 254_Saltire Cotised.svg │ │ ├── 255_Orle on a Bordure.svg │ │ ├── 256_Pall Cotised.svg │ │ ├── 257_Pall Inverted Cotised.svg │ │ ├── 258_Fretty Parted.svg │ │ ├── 259_Party of Eight.svg │ │ ├── 260_Three Quatrefoils on a Chief.svg │ │ ├── 261_Cross on a Chief.svg │ │ ├── 262_Saltire on a Chief.svg │ │ ├── 263_Rising Sun on a Chief.svg │ │ ├── 264_Tierces and Three Quatrefoils.svg │ │ ├── 265_Three Quatrefoils on a Bend.svg │ │ ├── 266_Saltire on a Canton.svg │ │ ├── 267_Gyronny Saltire.svg │ │ ├── 268_Eight-pointed Star on a Cross and Saltire Engrailed.svg │ │ ├── 269_Cross and Saltire II.svg │ │ ├── 270_Saltire Engrailed on a Saltire.svg │ │ ├── 271_Per Saltire and a Saltire.svg │ │ ├── 272_Quarterly, Perfect and Quarterly.svg │ │ ├── 273_Quarterly, Perfect and Check.svg │ │ ├── 274_Quarterly, Perfect and a Bend Sinister.svg │ │ ├── 275_Quarterly, Perfect and Per Bend Sinister.svg │ │ ├── 276_Quarterly, Perfect and a Saltire.svg │ │ ├── 277_Per Pale, Perfect and Barry of Eight.svg │ │ ├── 278_Per Pale, Semy of Ten Four-pointed Stars and Barry of Eight.svg │ │ ├── 279_Per Pale, Paly of Eight and Perfect.svg │ │ ├── 280_Semy of Sixteen Quatrefoils and a Chief.svg │ │ ├── 281_Semy of Eighteen Four-pointed Stars and a Base.svg │ │ ├── 282_Fixture.svg │ │ ├── 283_Net.svg │ │ ├── 284_Reticle.svg │ │ ├── 285_Sparkle.svg │ │ ├── 286_Talon Matrix II.svg │ │ ├── 287_Tiles I.svg │ │ ├── 288_Tiles IV.svg │ │ ├── 289_Xanom.svg │ │ ├── 290_QuiltX II.svg │ │ ├── 291_Cubey I.svg │ │ ├── 292_Cubey II.svg │ │ ├── 293_Quarterly II.svg │ │ ├── 294_Quarterly, a Cross and a Bar.svg │ │ ├── 295_Per Pall Inverted and a Chief.svg │ │ ├── 296_Per Pall Inverted and Chevronelly.svg │ │ ├── 297_Check.svg │ │ ├── 298_Tiles II.svg │ │ └── 299_Tiles III.svg │ │ ├── frame.svg │ │ ├── frames │ │ ├── 000_.svg │ │ ├── 001_Adorned.svg │ │ ├── 002_Menacing.svg │ │ ├── 003_Secured.svg │ │ ├── 004_Floriated.svg │ │ └── 005_Everlasting.svg │ │ ├── hardware.svg │ │ └── hardware │ │ ├── 000_Bushing Hammer.svg │ │ ├── 001_Shovel.svg │ │ ├── 002_Screw.svg │ │ ├── 003_Flathead Screwdriver.svg │ │ ├── 004_Pen Nib.svg │ │ ├── 005_Scissors.svg │ │ ├── 006_Compass.svg │ │ ├── 007_Gear.svg │ │ ├── 008_Tongs.svg │ │ ├── 009_Compass and Triangle.svg │ │ ├── 010_Magnifying Glass.svg │ │ ├── 011_Shears.svg │ │ ├── 012_End Cutting Pliers.svg │ │ ├── 013_Wheel.svg │ │ ├── 014_Tuning Fork.svg │ │ ├── 015_Mallet with Chisels in Saltire.svg │ │ ├── 016_Hammer and Compass.svg │ │ ├── 017_Spring Caliper.svg │ │ ├── 018_Book.svg │ │ ├── 019_Calipers.svg │ │ ├── 020_Three Nails.svg │ │ ├── 021_Awl.svg │ │ ├── 022_French Key Wrench.svg │ │ ├── 023_Pocketwatch.svg │ │ ├── 024_Anvil.svg │ │ ├── 025_Crozier.svg │ │ ├── 026_Jackhammer.svg │ │ ├── 027_Jewelers Loupe.svg │ │ ├── 028_Fasces.svg │ │ ├── 029_Cauldron.svg │ │ ├── 030_Horseshoe and Star.svg │ │ ├── 031_Lug Wrench and Four Lug Nuts.svg │ │ ├── 032_Masonry Trowel and Brickwork.svg │ │ ├── 033_Rudder.svg │ │ ├── 034_Gavel.svg │ │ ├── 035_Tongs and Hammer.svg │ │ ├── 036_Pen Tool.svg │ │ ├── 037_Triskele Tracery.svg │ │ ├── 037_Triskele.svg │ │ ├── 038_Quatrefoil and Three Books in Chief.svg │ │ ├── 039_Keyhole.svg │ │ ├── 040_Pitcher.svg │ │ ├── 041_Piston.svg │ │ ├── 042_Scales.svg │ │ ├── 043_Pulleys.svg │ │ ├── 044_Gears.svg │ │ ├── 045_Astrolabe.svg │ │ ├── 046_Laser Level.svg │ │ ├── 047_Wheatstalk and Two Suns.svg │ │ ├── 048_Shipwheel.svg │ │ ├── 049_Pipe Organ.svg │ │ ├── 050_Knight.svg │ │ ├── 051_Garb.svg │ │ ├── 052_Anchor.svg │ │ ├── 053_Bells.svg │ │ ├── 054_Stack.svg │ │ ├── 055_Orb.svg │ │ ├── 056_Command in Canton.svg │ │ ├── 057_Three Chalices.svg │ │ ├── 058_Three Brushes.svg │ │ ├── 059_Three Writing Pens.svg │ │ ├── 060_Lead Holder and Twin Blades.svg │ │ ├── 061_Scyths Saltire and Treestump.svg │ │ ├── 062_Mining Helmet and Picks Saltire.svg │ │ ├── 063_Flower Pot.svg │ │ ├── 064_Pickaxes.svg │ │ ├── 065_Three Bells in Chief.svg │ │ ├── 066_Three Suns in Chief.svg │ │ ├── 067_Quatrefoil Tracery in Chief.svg │ │ ├── 068_Two Suns.svg │ │ ├── 069_Four Suns.svg │ │ ├── 070_Two Books.svg │ │ ├── 071_Orle of Chains.svg │ │ ├── 072_Crancelin.svg │ │ ├── 073_Four Wheels.svg │ │ ├── 074_Pear Diamond.svg │ │ ├── 075_Maple Leaf.svg │ │ ├── 076_Eighteen Orbs and Crown in Chief.svg │ │ ├── 077_Croziers in Saltire and Star.svg │ │ ├── 077_Croziers in Saltire and Stars.svg │ │ ├── 078_Plough and Sun In Splendour.svg │ │ ├── 079_Telescope and Stars.svg │ │ ├── 080_Necklace.svg │ │ ├── 081_Pillar and Twin Quatrefoils.svg │ │ ├── 082_Horse-head Gables.svg │ │ ├── 083_Sextant.svg │ │ ├── 084_Lyre.svg │ │ ├── 085_Eye of Providence.svg │ │ ├── 086_Clockwork.svg │ │ ├── 087_Castle.svg │ │ ├── 088_Needle and Thread.svg │ │ ├── 089_Portcullis.svg │ │ ├── 090_Tree.svg │ │ ├── 091_Pugin Thistle.svg │ │ ├── 092_Gauntlet.svg │ │ ├── 093_Two Fleury Hinges Issuant from Dexter.svg │ │ ├── 094_Torch.svg │ │ ├── 095_Sun and Moon.svg │ │ ├── 096_Helm of the Esquire.svg │ │ ├── 097_Helm of the Knight.svg │ │ ├── 098_Helm of the Monarch.svg │ │ ├── 099_Vambraced Arm of the Warrior.svg │ │ ├── 100_Vambraced Arm of the Mage.svg │ │ ├── 101_Vambraced Arm of the Hunter.svg │ │ ├── 102_Palace Key.svg │ │ ├── 103_Vault Key.svg │ │ ├── 104_Dungeon Key.svg │ │ ├── 105_Chain Palewise.svg │ │ ├── 106_Cross Saltire and Orle of Chains.svg │ │ ├── 107_Chain Maille.svg │ │ ├── 108_Trypto Plate.svg │ │ ├── 109_Bordure Plate.svg │ │ ├── 110_Inverted Pall Plate.svg │ │ ├── 111_Escarbuncle.svg │ │ ├── 112_Tracery.svg │ │ ├── 113_Starfield.svg │ │ ├── 114_Wings.svg │ │ ├── 115_Skull.svg │ │ ├── 116_Rose.svg │ │ ├── 117_Shields Plate.svg │ │ ├── 118_Shields Bracket.svg │ │ ├── 119_The Book of Shields.svg │ │ └── 120_Three Shields.svg └── shared │ ├── buildShield.ts │ ├── colors.ts │ ├── deployFieldGenerator.ts │ ├── deployFrameGenerator.ts │ ├── deployHardwareGenerator.ts │ ├── deployTestFieldGenerator.ts │ ├── deployTestHardwareGenerator.ts │ ├── encodeColors.ts │ ├── expect.ts │ ├── extractJSONFromURI.ts │ ├── printSVGToSnapshots.ts │ └── snapshotGasCost.ts ├── tsconfig.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/.prettierrc -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/.solhint.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | ignore-scripts true 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/README.md -------------------------------------------------------------------------------- /contracts/EmblemWeaver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/EmblemWeaver.sol -------------------------------------------------------------------------------- /contracts/FieldGenerator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/FieldGenerator.sol -------------------------------------------------------------------------------- /contracts/FrameGenerator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/FrameGenerator.sol -------------------------------------------------------------------------------- /contracts/HardwareGenerator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/HardwareGenerator.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs1.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs10.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs10.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs11.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs11.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs12.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs12.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs13.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs13.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs14.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs14.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs15.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs15.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs16.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs16.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs17.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs17.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs18.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs18.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs19.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs19.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs2.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs20.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs21.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs21.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs22.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs22.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs23.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs23.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs24.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs24.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs3.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs3.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs4.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs4.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs5.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs5.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs6.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs6.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs7.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs7.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs8.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs8.sol -------------------------------------------------------------------------------- /contracts/SVGs/Fields/FieldSVGs9.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Fields/FieldSVGs9.sol -------------------------------------------------------------------------------- /contracts/SVGs/Frames/FrameSVGs1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Frames/FrameSVGs1.sol -------------------------------------------------------------------------------- /contracts/SVGs/Frames/FrameSVGs2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Frames/FrameSVGs2.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs1.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs10.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs10.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs11.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs11.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs12.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs12.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs13.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs13.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs14.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs14.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs15.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs15.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs16.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs16.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs17.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs17.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs18.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs18.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs19.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs19.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs2.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs20.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs21.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs21.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs22.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs22.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs23.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs23.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs24.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs24.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs25.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs25.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs26.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs26.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs27.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs27.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs28.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs28.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs29.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs29.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs3.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs3.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs30.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs30.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs31.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs31.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs32.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs32.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs33.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs33.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs34.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs34.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs35.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs35.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs36.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs36.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs37.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs37.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs38.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs38.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs4.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs4.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs5.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs5.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs6.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs6.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs7.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs7.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs8.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs8.sol -------------------------------------------------------------------------------- /contracts/SVGs/Hardware/HardwareSVGs9.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/Hardware/HardwareSVGs9.sol -------------------------------------------------------------------------------- /contracts/SVGs/ShieldBadgeSVGs.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/SVGs/ShieldBadgeSVGs.sol -------------------------------------------------------------------------------- /contracts/Shields.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/Shields.sol -------------------------------------------------------------------------------- /contracts/interfaces/ICategories.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/interfaces/ICategories.sol -------------------------------------------------------------------------------- /contracts/interfaces/IColors.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/interfaces/IColors.sol -------------------------------------------------------------------------------- /contracts/interfaces/IEmblemWeaver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/interfaces/IEmblemWeaver.sol -------------------------------------------------------------------------------- /contracts/interfaces/IFieldGenerator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/interfaces/IFieldGenerator.sol -------------------------------------------------------------------------------- /contracts/interfaces/IFieldSVGs.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/interfaces/IFieldSVGs.sol -------------------------------------------------------------------------------- /contracts/interfaces/IFrameGenerator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/interfaces/IFrameGenerator.sol -------------------------------------------------------------------------------- /contracts/interfaces/IFrameSVGs.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/interfaces/IFrameSVGs.sol -------------------------------------------------------------------------------- /contracts/interfaces/IHardwareGenerator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/interfaces/IHardwareGenerator.sol -------------------------------------------------------------------------------- /contracts/interfaces/IHardwareSVGs.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/interfaces/IHardwareSVGs.sol -------------------------------------------------------------------------------- /contracts/interfaces/IShieldBadgeSVGs.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/interfaces/IShieldBadgeSVGs.sol -------------------------------------------------------------------------------- /contracts/interfaces/IShields.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/interfaces/IShields.sol -------------------------------------------------------------------------------- /contracts/libraries/HexStrings.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/libraries/HexStrings.sol -------------------------------------------------------------------------------- /contracts/test/EmblemWeaverTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/test/EmblemWeaverTest.sol -------------------------------------------------------------------------------- /contracts/test/ShieldsGasTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/test/ShieldsGasTest.sol -------------------------------------------------------------------------------- /contracts/test/ShieldsTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/test/ShieldsTest.sol -------------------------------------------------------------------------------- /contracts/test/TestFieldGenerator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/test/TestFieldGenerator.sol -------------------------------------------------------------------------------- /contracts/test/TestHardwareGenerator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/contracts/test/TestHardwareGenerator.sol -------------------------------------------------------------------------------- /deploy/01_deploy_field_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deploy/01_deploy_field_generator.ts -------------------------------------------------------------------------------- /deploy/02_deploy_hardware_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deploy/02_deploy_hardware_generator.ts -------------------------------------------------------------------------------- /deploy/03_deploy_frame_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deploy/03_deploy_frame_generator.ts -------------------------------------------------------------------------------- /deploy/04_deploy_shieldbadgesvgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deploy/04_deploy_shieldbadgesvgs.ts -------------------------------------------------------------------------------- /deploy/05_deploy_emblem_weaver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deploy/05_deploy_emblem_weaver.ts -------------------------------------------------------------------------------- /deploy/06_deploy_shields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deploy/06_deploy_shields.ts -------------------------------------------------------------------------------- /deploy/07_transfer_ownership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deploy/07_transfer_ownership.ts -------------------------------------------------------------------------------- /deploySVGs/deployFieldSVGs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deploySVGs/deployFieldSVGs.ts -------------------------------------------------------------------------------- /deploySVGs/deployedSVGs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deploySVGs/deployedSVGs.json -------------------------------------------------------------------------------- /deploySVGs/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deploySVGs/helpers.ts -------------------------------------------------------------------------------- /deployments/goerli/.chainId: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /deployments/goerli/BuildPassSVGs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/goerli/BuildPassSVGs.json -------------------------------------------------------------------------------- /deployments/goerli/FieldGenerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/goerli/FieldGenerator.json -------------------------------------------------------------------------------- /deployments/goerli/FrameGenerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/goerli/FrameGenerator.json -------------------------------------------------------------------------------- /deployments/goerli/HardwareGenerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/goerli/HardwareGenerator.json -------------------------------------------------------------------------------- /deployments/goerli/ShieldDescriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/goerli/ShieldDescriptor.json -------------------------------------------------------------------------------- /deployments/goerli/Shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/goerli/Shields.json -------------------------------------------------------------------------------- /deployments/goerli/solcInputs/0ac3b406cc563db62fbf6a074b8a54e1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/goerli/solcInputs/0ac3b406cc563db62fbf6a074b8a54e1.json -------------------------------------------------------------------------------- /deployments/goerli/solcInputs/120b7981f2664f557f778127eaf1c6ed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/goerli/solcInputs/120b7981f2664f557f778127eaf1c6ed.json -------------------------------------------------------------------------------- /deployments/goerli/solcInputs/5bfe4b77149d6f73b152c3b333b753f0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/goerli/solcInputs/5bfe4b77149d6f73b152c3b333b753f0.json -------------------------------------------------------------------------------- /deployments/goerli/solcInputs/b18099829130d9e20f6eb2b1e8b44ffc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/goerli/solcInputs/b18099829130d9e20f6eb2b1e8b44ffc.json -------------------------------------------------------------------------------- /deployments/goerli/solcInputs/f13209de5f6765da42f325a73fb27d59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/goerli/solcInputs/f13209de5f6765da42f325a73fb27d59.json -------------------------------------------------------------------------------- /deployments/goerli/solcInputs/f83fc13fabc733ee8b83028c3110d7b0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/goerli/solcInputs/f83fc13fabc733ee8b83028c3110d7b0.json -------------------------------------------------------------------------------- /deployments/mainnet/.chainId: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /deployments/mainnet/EmblemWeaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/mainnet/EmblemWeaver.json -------------------------------------------------------------------------------- /deployments/mainnet/FieldGenerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/mainnet/FieldGenerator.json -------------------------------------------------------------------------------- /deployments/mainnet/FrameGenerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/mainnet/FrameGenerator.json -------------------------------------------------------------------------------- /deployments/mainnet/HardwareGenerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/mainnet/HardwareGenerator.json -------------------------------------------------------------------------------- /deployments/mainnet/ShieldBadgeSVGs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/mainnet/ShieldBadgeSVGs.json -------------------------------------------------------------------------------- /deployments/mainnet/Shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/mainnet/Shields.json -------------------------------------------------------------------------------- /deployments/mainnet/solcInputs/06c6c0124c47c1cdc59e63dde81c06b1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/mainnet/solcInputs/06c6c0124c47c1cdc59e63dde81c06b1.json -------------------------------------------------------------------------------- /deployments/mainnet/solcInputs/09befa56f4355a6ca3989fb006f2f0b3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/mainnet/solcInputs/09befa56f4355a6ca3989fb006f2f0b3.json -------------------------------------------------------------------------------- /deployments/mainnet/solcInputs/132b2a838ee2991bd733956c8b035354.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/mainnet/solcInputs/132b2a838ee2991bd733956c8b035354.json -------------------------------------------------------------------------------- /deployments/mainnet/solcInputs/53fca273d67f718f5cb0758c3ff9defc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/mainnet/solcInputs/53fca273d67f718f5cb0758c3ff9defc.json -------------------------------------------------------------------------------- /deployments/mainnet/solcInputs/d28a8c5f5f1014153754a39e08baa75b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/mainnet/solcInputs/d28a8c5f5f1014153754a39e08baa75b.json -------------------------------------------------------------------------------- /deployments/rinkeby/.chainId: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /deployments/rinkeby/BuildPassSVGs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/BuildPassSVGs.json -------------------------------------------------------------------------------- /deployments/rinkeby/EmblemWeaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/EmblemWeaver.json -------------------------------------------------------------------------------- /deployments/rinkeby/FieldGenerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/FieldGenerator.json -------------------------------------------------------------------------------- /deployments/rinkeby/FrameGenerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/FrameGenerator.json -------------------------------------------------------------------------------- /deployments/rinkeby/HardwareGenerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/HardwareGenerator.json -------------------------------------------------------------------------------- /deployments/rinkeby/ShieldBadgeSVGs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/ShieldBadgeSVGs.json -------------------------------------------------------------------------------- /deployments/rinkeby/ShieldDescriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/ShieldDescriptor.json -------------------------------------------------------------------------------- /deployments/rinkeby/Shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/Shields.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/06c6c0124c47c1cdc59e63dde81c06b1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/06c6c0124c47c1cdc59e63dde81c06b1.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/09befa56f4355a6ca3989fb006f2f0b3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/09befa56f4355a6ca3989fb006f2f0b3.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/0ac3b406cc563db62fbf6a074b8a54e1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/0ac3b406cc563db62fbf6a074b8a54e1.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/132b2a838ee2991bd733956c8b035354.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/132b2a838ee2991bd733956c8b035354.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/32c3c77c4b2b5be30d2bd140bb4ee998.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/32c3c77c4b2b5be30d2bd140bb4ee998.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/39707df8ab59bdff5775ed0c387546b7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/39707df8ab59bdff5775ed0c387546b7.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/3f384c0dfe2328302ebd4d9888e64775.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/3f384c0dfe2328302ebd4d9888e64775.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/53fca273d67f718f5cb0758c3ff9defc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/53fca273d67f718f5cb0758c3ff9defc.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/5bfe4b77149d6f73b152c3b333b753f0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/5bfe4b77149d6f73b152c3b333b753f0.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/7b1bbcd7f29fa3ba20bf06fb65a1b0f9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/7b1bbcd7f29fa3ba20bf06fb65a1b0f9.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/97250a4cdb9387cee9c1bfaceb096ed2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/97250a4cdb9387cee9c1bfaceb096ed2.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/a9e7d4fcf53118db8118fcbd76e082b4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/a9e7d4fcf53118db8118fcbd76e082b4.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/b18099829130d9e20f6eb2b1e8b44ffc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/b18099829130d9e20f6eb2b1e8b44ffc.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/d28a8c5f5f1014153754a39e08baa75b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/d28a8c5f5f1014153754a39e08baa75b.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/d69528a4b69a6281f4bad594fdf80357.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/d69528a4b69a6281f4bad594fdf80357.json -------------------------------------------------------------------------------- /deployments/rinkeby/solcInputs/fe897b961f7bc28b8df8819c7790723a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/deployments/rinkeby/solcInputs/fe897b961f7bc28b8df8819c7790723a.json -------------------------------------------------------------------------------- /fields.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/package.json -------------------------------------------------------------------------------- /test/EmblemWeaver.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/EmblemWeaver.spec.ts -------------------------------------------------------------------------------- /test/FieldSVGs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/FieldSVGs.spec.ts -------------------------------------------------------------------------------- /test/FrameSVGs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/FrameSVGs.spec.ts -------------------------------------------------------------------------------- /test/HardwareSVGs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/HardwareSVGs.spec.ts -------------------------------------------------------------------------------- /test/Shields.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/Shields.spec.ts -------------------------------------------------------------------------------- /test/__snapshots__/EmblemWeaver.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/EmblemWeaver.spec.ts.snap -------------------------------------------------------------------------------- /test/__snapshots__/FieldSVGs.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/FieldSVGs.spec.ts.snap -------------------------------------------------------------------------------- /test/__snapshots__/FrameSVGs.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/FrameSVGs.spec.ts.snap -------------------------------------------------------------------------------- /test/__snapshots__/HardwareSVGs.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/HardwareSVGs.spec.ts.snap -------------------------------------------------------------------------------- /test/__snapshots__/ShieldDescriptor.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/ShieldDescriptor.spec.ts.snap -------------------------------------------------------------------------------- /test/__snapshots__/Shields.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/Shields.spec.ts.snap -------------------------------------------------------------------------------- /test/__snapshots__/svgs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/.DS_Store -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/000_Perfect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/000_Perfect.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/001_Per Pale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/001_Per Pale.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/002_Per Fess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/002_Per Fess.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/003_Per Bend Sinister.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/003_Per Bend Sinister.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/004_Quarterly I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/004_Quarterly I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/005_Per Saltire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/005_Per Saltire.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/006_Gyronny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/006_Gyronny.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/007_Per Chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/007_Per Chevron.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/008_Per Chevron Inverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/008_Per Chevron Inverted.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/009_Per Chevron Ployé.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/009_Per Chevron Ployé.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/010_Per Chevron Inverted Ployé.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/010_Per Chevron Inverted Ployé.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/011_Per Pale Indented.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/011_Per Pale Indented.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/012_Per Pale Raguly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/012_Per Pale Raguly.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/013_Per Pale Embattled .svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/013_Per Pale Embattled .svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/014_Per Pale Wavy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/014_Per Pale Wavy.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/015_Per Pale Rayonny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/015_Per Pale Rayonny.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/016_Per Pale Nebuly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/016_Per Pale Nebuly.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/017_Per Pall Nebuly II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/017_Per Pall Nebuly II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/018_Per Pale Indented Pometty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/018_Per Pale Indented Pometty.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/019_Per Fess Indented.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/019_Per Fess Indented.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/020_Per Fess Raguly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/020_Per Fess Raguly.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/021_Per Fess Embattled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/021_Per Fess Embattled.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/022_Per Fess Wavy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/022_Per Fess Wavy.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/023_Per Fess Rayonny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/023_Per Fess Rayonny.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/024_Per Fess Nebuly I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/024_Per Fess Nebuly I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/025_Per Fess Nebuly II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/025_Per Fess Nebuly II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/026_Per Fess Indented Pometty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/026_Per Fess Indented Pometty.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/027_Per Fess with a Left Step.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/027_Per Fess with a Left Step.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/028_Per Fess Enarched.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/028_Per Fess Enarched.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/029_Per Bend Sinister Engrailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/029_Per Bend Sinister Engrailed.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/030_Per Bend Sinister Wavy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/030_Per Bend Sinister Wavy.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/031_Per Bend Sinister Bevilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/031_Per Bend Sinister Bevilled.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/032_Quarterly Embattled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/032_Quarterly Embattled.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/033_Quarterly Arrondi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/033_Quarterly Arrondi.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/034_Gyronny Arrondi of Twelve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/034_Gyronny Arrondi of Twelve.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/035_Gyronny From Base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/035_Gyronny From Base.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/036_Gyronny From Chief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/036_Gyronny From Chief.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/037_Gyronny Wavy I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/037_Gyronny Wavy I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/038_Per Chevron Embattled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/038_Per Chevron Embattled.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/039_Pale I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/039_Pale I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/040_Pale II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/040_Pale II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/041_Pale Engrailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/041_Pale Engrailed.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/042_Pale Lozengy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/042_Pale Lozengy.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/043_Pale Nebuly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/043_Pale Nebuly.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/044_Pale Offset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/044_Pale Offset.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/045_Pale Embattled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/045_Pale Embattled.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/046_Pale Raguly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/046_Pale Raguly.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/047_Pale Wavy I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/047_Pale Wavy I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/048_Pale Wavy II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/048_Pale Wavy II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/049_Pale Bevilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/049_Pale Bevilled.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/050_Fess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/050_Fess.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/051_Fess Engrailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/051_Fess Engrailed.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/052_Fess Lozengy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/052_Fess Lozengy.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/053_Fess Raguly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/053_Fess Raguly.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/054_Fess Wavy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/054_Fess Wavy.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/055_Fess Rayonny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/055_Fess Rayonny.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/056_Bend Sinister I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/056_Bend Sinister I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/057_Bend Sinister II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/057_Bend Sinister II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/058_Bend Sinister Engrailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/058_Bend Sinister Engrailed.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/059_Bend Sinister Ragully.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/059_Bend Sinister Ragully.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/060_Bend Sinister Wavy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/060_Bend Sinister Wavy.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/061_Bordure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/061_Bordure.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/062_Bordure Engrailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/062_Bordure Engrailed.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/063_Bordure Indented.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/063_Bordure Indented.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/064_Bordure Embattled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/064_Bordure Embattled.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/065_Bordure Wavy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/065_Bordure Wavy.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/066_Bordure Rayonny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/066_Bordure Rayonny.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/067_Razor Bordure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/067_Razor Bordure.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/068_Canton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/068_Canton.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/069_Canton Sinister.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/069_Canton Sinister.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/070_Chief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/070_Chief.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/071_Chief Engrailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/071_Chief Engrailed.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/072_Chief Indented.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/072_Chief Indented.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/073_Chief Nebuly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/073_Chief Nebuly.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/074_Chief Embattled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/074_Chief Embattled.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/075_Chief Wavy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/075_Chief Wavy.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/076_Chief Rayonny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/076_Chief Rayonny.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/077_Chief Triangular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/077_Chief Triangular.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/078_Chief Urdy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/078_Chief Urdy.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/079_Base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/079_Base.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/080_Base Engrailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/080_Base Engrailed.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/081_Base Indented.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/081_Base Indented.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/082_Base Nebuly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/082_Base Nebuly.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/083_Base Embattled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/083_Base Embattled.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/084_Base Wavy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/084_Base Wavy.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/085_Base Rayonny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/085_Base Rayonny.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/086_Cross I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/086_Cross I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/087_Cross II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/087_Cross II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/088_Cross Engrailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/088_Cross Engrailed.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/089_Saltire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/089_Saltire.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/090_Saltire Engrailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/090_Saltire Engrailed.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/091_Chevron I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/091_Chevron I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/092_Chevron II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/092_Chevron II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/093_Chevron Embattled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/093_Chevron Embattled.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/094_Chevron Inverted I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/094_Chevron Inverted I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/095_Chevron Inverted II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/095_Chevron Inverted II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/096_Two Bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/096_Two Bars.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/097_Three Bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/097_Three Bars.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/098_Four Bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/098_Four Bars.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/099_Two Pallets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/099_Two Pallets.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/100_Three Pallets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/100_Three Pallets.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/101_Four Pallets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/101_Four Pallets.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/102_Two Pales Engrailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/102_Two Pales Engrailed.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/103_Two Pales Nebuly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/103_Two Pales Nebuly.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/104_Two Pales Wavy I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/104_Two Pales Wavy I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/105_Two Pales Wavy II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/105_Two Pales Wavy II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/106_Two Pales Dancetty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/106_Two Pales Dancetty.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/107_Orle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/107_Orle.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/108_Orle Embattled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/108_Orle Embattled.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/109_Pall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/109_Pall.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/110_Pall Inverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/110_Pall Inverted.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/111_Pile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/111_Pile.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/112_Pile Ployé.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/112_Pile Ployé.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/113_Pile Inverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/113_Pile Inverted.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/114_Pile Inverted Ployé.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/114_Pile Inverted Ployé.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/115_Two Piles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/115_Two Piles.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/116_Flaunches.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/116_Flaunches.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/117_Gyron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/117_Gyron.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/118_Chief Pale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/118_Chief Pale.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/119_Tierce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/119_Tierce.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/120_Tierce Sinister.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/120_Tierce Sinister.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/121_Tierces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/121_Tierces.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/122_Gore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/122_Gore.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/123_Gore Sinister.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/123_Gore Sinister.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/124_Gores.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/124_Gores.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/125_Paly of Four.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/125_Paly of Four.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/126_Paly of Eight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/126_Paly of Eight.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/127_Paly Dancetty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/127_Paly Dancetty.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/128_Paly Embattled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/128_Paly Embattled.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/129_Paly Wavy I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/129_Paly Wavy I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/130_Paly Wavy II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/130_Paly Wavy II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/131_Barry of Four.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/131_Barry of Four.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/132_Barry of Eight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/132_Barry of Eight.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/133_Barry Dancetty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/133_Barry Dancetty.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/134_Barry Embattled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/134_Barry Embattled.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/135_Barry Wavy I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/135_Barry Wavy I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/136_Barry Wavy II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/136_Barry Wavy II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/137_Checky I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/137_Checky I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/138_Checky II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/138_Checky II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/139_Checky III.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/139_Checky III.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/140_Checky IV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/140_Checky IV.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/141_Checky V.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/141_Checky V.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/142_Bendy Sinister I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/142_Bendy Sinister I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/143_Bendy Sinister II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/143_Bendy Sinister II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/144_Bendy Sinister III.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/144_Bendy Sinister III.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/145_Bendy Sinister IV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/145_Bendy Sinister IV.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/146_Chevronny I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/146_Chevronny I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/147_Chevronny II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/147_Chevronny II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/148_Chevronny Inverted I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/148_Chevronny Inverted I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/149_Chevronny Inverted II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/149_Chevronny Inverted II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/150_Lozengy I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/150_Lozengy I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/151_Lozengy II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/151_Lozengy II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/152_Lozengy Wide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/152_Lozengy Wide.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/153_Lozengy Barry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/153_Lozengy Barry.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/154_Fusilly I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/154_Fusilly I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/155_Fusilly II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/155_Fusilly II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/156_Fusilly III.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/156_Fusilly III.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/157_Pily I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/157_Pily I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/158_Pily II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/158_Pily II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/159_Orly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/159_Orly.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/160_Roundel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/160_Roundel.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/161_Annulet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/161_Annulet.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/162_Billet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/162_Billet.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/163_Triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/163_Triangle.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/164_Inescutcheon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/164_Inescutcheon.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/165_Lozenge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/165_Lozenge.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/166_Mascle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/166_Mascle.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/167_Mullet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/167_Mullet.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/168_Quatrefoil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/168_Quatrefoil.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/169_Quasar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/169_Quasar.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/170_Three Roundels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/170_Three Roundels.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/171_Three Quatrefoils.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/171_Three Quatrefoils.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/172_Semy of Roundels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/172_Semy of Roundels.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/173_Biletty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/173_Biletty.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/174_Semy of Quatrefoils.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/174_Semy of Quatrefoils.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/175_Semy-de-Lis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/175_Semy-de-Lis.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/176_Estencelly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/176_Estencelly.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/177_Mullety.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/177_Mullety.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/178_Papellony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/178_Papellony.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/179_Masoned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/179_Masoned.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/180_Fretty I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/180_Fretty I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/181_Fretty II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/181_Fretty II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/182_Grillage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/182_Grillage.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/183_Vair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/183_Vair.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/184_Counter-Vair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/184_Counter-Vair.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/185_Vair Ancient.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/185_Vair Ancient.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/186_Per Pale and Per Chevron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/186_Per Pale and Per Chevron.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/187_Per Pale and Per Fess Indented.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/187_Per Pale and Per Fess Indented.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/188_Per Fess and Per Pale Wavy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/188_Per Fess and Per Pale Wavy.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/189_Per Saltire and Per Fess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/189_Per Saltire and Per Fess.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/190_Per Pale and Barry of Four.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/190_Per Pale and Barry of Four.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/191_Per Pale and Barry of Eight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/191_Per Pale and Barry of Eight.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/192_Per Fess and Paly of Five.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/192_Per Fess and Paly of Five.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/193_Per Fess and Two Pallets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/193_Per Fess and Two Pallets.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/194_Cross and Saltire I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/194_Cross and Saltire I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/195_Grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/195_Grid.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/196_Supergrid I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/196_Supergrid I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/197_Supergrid II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/197_Supergrid II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/198_Microdot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/198_Microdot.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/199_Ehrenstein.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/199_Ehrenstein.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/200_Semy of Alternating Roundels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/200_Semy of Alternating Roundels.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/201_Quasar Semy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/201_Quasar Semy.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/202_Tiles V.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/202_Tiles V.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/203_QuiltX I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/203_QuiltX I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/204_Bloomy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/204_Bloomy.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/205_Talon Matrix I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/205_Talon Matrix I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/206_Doppler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/206_Doppler.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/207_Nine Rings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/207_Nine Rings.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/208_Ripple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/208_Ripple.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/209_Spiral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/209_Spiral.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/210_Rasterwave Pallets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/210_Rasterwave Pallets.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/211_Rasterlines Barry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/211_Rasterlines Barry.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/212_Rasterlines Bend Sinister.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/212_Rasterlines Bend Sinister.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/213_Rasterlines Pale Horizon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/213_Rasterlines Pale Horizon.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/214_Rasterlines Barry and Bendy Sinister.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/214_Rasterlines Barry and Bendy Sinister.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/215_Rasterlines Barry-X.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/215_Rasterlines Barry-X.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/216_Gyronny Wavy II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/216_Gyronny Wavy II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/217_Hypno.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/217_Hypno.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/218_Infinigyron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/218_Infinigyron.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/219_Laser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/219_Laser.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/220_Laser and Boxes Countercharged.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/220_Laser and Boxes Countercharged.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/221_Quadrobeams.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/221_Quadrobeams.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/222_Laserwheels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/222_Laserwheels.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/223_Gyronny and Orly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/223_Gyronny and Orly.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/224_Flex Checky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/224_Flex Checky.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/225_Hyperbend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/225_Hyperbend.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/226_Burst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/226_Burst.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/227_Shattered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/227_Shattered.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/228_Warp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/228_Warp.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/229_Mach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/229_Mach.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/230_Kaleidoscope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/230_Kaleidoscope.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/231_AxoPile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/231_AxoPile.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/232_Lens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/232_Lens.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/233_Bender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/233_Bender.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/234_Stretcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/234_Stretcher.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/235_Inner Sphere.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/235_Inner Sphere.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/236_Stepper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/236_Stepper.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/237_Per Bend Sinister Hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/237_Per Bend Sinister Hand.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/238_Per Pale Indented Hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/238_Per Pale Indented Hand.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/239_Pall Inverted Hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/239_Pall Inverted Hand.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/240_Orle Hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/240_Orle Hand.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/241_Five Pallets Hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/241_Five Pallets Hand.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/242_Per Pall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/242_Per Pall.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/243_Per Pall Inverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/243_Per Pall Inverted.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/244_Tierced Per Pale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/244_Tierced Per Pale.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/245_Tierced per Fess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/245_Tierced per Fess.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/246_Tierced per Bend Sinister.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/246_Tierced per Bend Sinister.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/247_Tierced Per Pale and Per Fess I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/247_Tierced Per Pale and Per Fess I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/248_Tierced Per Pale and Per Fess II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/248_Tierced Per Pale and Per Fess II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/249_Pale Checky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/249_Pale Checky.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/250_Bordure Compony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/250_Bordure Compony.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/251_Bordure Parted Bordurewise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/251_Bordure Parted Bordurewise.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/252_Bordure Counter-Compony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/252_Bordure Counter-Compony.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/253_Cross Cotised.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/253_Cross Cotised.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/254_Saltire Cotised.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/254_Saltire Cotised.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/255_Orle on a Bordure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/255_Orle on a Bordure.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/256_Pall Cotised.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/256_Pall Cotised.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/257_Pall Inverted Cotised.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/257_Pall Inverted Cotised.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/258_Fretty Parted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/258_Fretty Parted.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/259_Party of Eight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/259_Party of Eight.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/260_Three Quatrefoils on a Chief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/260_Three Quatrefoils on a Chief.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/261_Cross on a Chief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/261_Cross on a Chief.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/262_Saltire on a Chief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/262_Saltire on a Chief.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/263_Rising Sun on a Chief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/263_Rising Sun on a Chief.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/264_Tierces and Three Quatrefoils.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/264_Tierces and Three Quatrefoils.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/265_Three Quatrefoils on a Bend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/265_Three Quatrefoils on a Bend.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/266_Saltire on a Canton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/266_Saltire on a Canton.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/267_Gyronny Saltire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/267_Gyronny Saltire.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/268_Eight-pointed Star on a Cross and Saltire Engrailed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/268_Eight-pointed Star on a Cross and Saltire Engrailed.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/269_Cross and Saltire II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/269_Cross and Saltire II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/270_Saltire Engrailed on a Saltire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/270_Saltire Engrailed on a Saltire.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/271_Per Saltire and a Saltire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/271_Per Saltire and a Saltire.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/272_Quarterly, Perfect and Quarterly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/272_Quarterly, Perfect and Quarterly.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/273_Quarterly, Perfect and Check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/273_Quarterly, Perfect and Check.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/274_Quarterly, Perfect and a Bend Sinister.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/274_Quarterly, Perfect and a Bend Sinister.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/275_Quarterly, Perfect and Per Bend Sinister.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/275_Quarterly, Perfect and Per Bend Sinister.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/276_Quarterly, Perfect and a Saltire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/276_Quarterly, Perfect and a Saltire.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/277_Per Pale, Perfect and Barry of Eight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/277_Per Pale, Perfect and Barry of Eight.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/278_Per Pale, Semy of Ten Four-pointed Stars and Barry of Eight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/278_Per Pale, Semy of Ten Four-pointed Stars and Barry of Eight.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/279_Per Pale, Paly of Eight and Perfect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/279_Per Pale, Paly of Eight and Perfect.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/280_Semy of Sixteen Quatrefoils and a Chief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/280_Semy of Sixteen Quatrefoils and a Chief.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/281_Semy of Eighteen Four-pointed Stars and a Base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/281_Semy of Eighteen Four-pointed Stars and a Base.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/282_Fixture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/282_Fixture.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/283_Net.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/283_Net.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/284_Reticle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/284_Reticle.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/285_Sparkle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/285_Sparkle.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/286_Talon Matrix II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/286_Talon Matrix II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/287_Tiles I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/287_Tiles I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/288_Tiles IV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/288_Tiles IV.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/289_Xanom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/289_Xanom.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/290_QuiltX II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/290_QuiltX II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/291_Cubey I.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/291_Cubey I.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/292_Cubey II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/292_Cubey II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/293_Quarterly II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/293_Quarterly II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/294_Quarterly, a Cross and a Bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/294_Quarterly, a Cross and a Bar.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/295_Per Pall Inverted and a Chief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/295_Per Pall Inverted and a Chief.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/296_Per Pall Inverted and Chevronelly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/296_Per Pall Inverted and Chevronelly.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/297_Check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/297_Check.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/298_Tiles II.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/298_Tiles II.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/fields/299_Tiles III.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/fields/299_Tiles III.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/frame.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/frames/000_.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/frames/000_.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/frames/001_Adorned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/frames/001_Adorned.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/frames/002_Menacing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/frames/002_Menacing.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/frames/003_Secured.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/frames/003_Secured.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/frames/004_Floriated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/frames/004_Floriated.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/frames/005_Everlasting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/frames/005_Everlasting.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/000_Bushing Hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/000_Bushing Hammer.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/001_Shovel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/001_Shovel.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/002_Screw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/002_Screw.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/003_Flathead Screwdriver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/003_Flathead Screwdriver.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/004_Pen Nib.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/004_Pen Nib.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/005_Scissors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/005_Scissors.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/006_Compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/006_Compass.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/007_Gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/007_Gear.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/008_Tongs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/008_Tongs.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/009_Compass and Triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/009_Compass and Triangle.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/010_Magnifying Glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/010_Magnifying Glass.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/011_Shears.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/011_Shears.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/012_End Cutting Pliers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/012_End Cutting Pliers.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/013_Wheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/013_Wheel.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/014_Tuning Fork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/014_Tuning Fork.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/015_Mallet with Chisels in Saltire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/015_Mallet with Chisels in Saltire.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/016_Hammer and Compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/016_Hammer and Compass.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/017_Spring Caliper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/017_Spring Caliper.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/018_Book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/018_Book.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/019_Calipers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/019_Calipers.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/020_Three Nails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/020_Three Nails.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/021_Awl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/021_Awl.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/022_French Key Wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/022_French Key Wrench.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/023_Pocketwatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/023_Pocketwatch.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/024_Anvil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/024_Anvil.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/025_Crozier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/025_Crozier.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/026_Jackhammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/026_Jackhammer.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/027_Jewelers Loupe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/027_Jewelers Loupe.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/028_Fasces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/028_Fasces.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/029_Cauldron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/029_Cauldron.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/030_Horseshoe and Star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/030_Horseshoe and Star.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/031_Lug Wrench and Four Lug Nuts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/031_Lug Wrench and Four Lug Nuts.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/032_Masonry Trowel and Brickwork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/032_Masonry Trowel and Brickwork.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/033_Rudder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/033_Rudder.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/034_Gavel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/034_Gavel.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/035_Tongs and Hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/035_Tongs and Hammer.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/036_Pen Tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/036_Pen Tool.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/037_Triskele Tracery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/037_Triskele Tracery.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/037_Triskele.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/037_Triskele.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/038_Quatrefoil and Three Books in Chief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/038_Quatrefoil and Three Books in Chief.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/039_Keyhole.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/039_Keyhole.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/040_Pitcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/040_Pitcher.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/041_Piston.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/041_Piston.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/042_Scales.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/042_Scales.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/043_Pulleys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/043_Pulleys.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/044_Gears.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/044_Gears.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/045_Astrolabe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/045_Astrolabe.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/046_Laser Level.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/046_Laser Level.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/047_Wheatstalk and Two Suns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/047_Wheatstalk and Two Suns.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/048_Shipwheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/048_Shipwheel.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/049_Pipe Organ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/049_Pipe Organ.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/050_Knight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/050_Knight.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/051_Garb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/051_Garb.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/052_Anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/052_Anchor.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/053_Bells.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/053_Bells.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/054_Stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/054_Stack.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/055_Orb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/055_Orb.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/056_Command in Canton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/056_Command in Canton.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/057_Three Chalices.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/057_Three Chalices.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/058_Three Brushes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/058_Three Brushes.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/059_Three Writing Pens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/059_Three Writing Pens.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/060_Lead Holder and Twin Blades.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/060_Lead Holder and Twin Blades.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/061_Scyths Saltire and Treestump.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/061_Scyths Saltire and Treestump.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/062_Mining Helmet and Picks Saltire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/062_Mining Helmet and Picks Saltire.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/063_Flower Pot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/063_Flower Pot.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/064_Pickaxes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/064_Pickaxes.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/065_Three Bells in Chief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/065_Three Bells in Chief.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/066_Three Suns in Chief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/066_Three Suns in Chief.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/067_Quatrefoil Tracery in Chief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/067_Quatrefoil Tracery in Chief.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/068_Two Suns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/068_Two Suns.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/069_Four Suns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/069_Four Suns.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/070_Two Books.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/070_Two Books.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/071_Orle of Chains.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/071_Orle of Chains.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/072_Crancelin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/072_Crancelin.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/073_Four Wheels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/073_Four Wheels.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/074_Pear Diamond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/074_Pear Diamond.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/075_Maple Leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/075_Maple Leaf.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/076_Eighteen Orbs and Crown in Chief.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/076_Eighteen Orbs and Crown in Chief.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/077_Croziers in Saltire and Star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/077_Croziers in Saltire and Star.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/077_Croziers in Saltire and Stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/077_Croziers in Saltire and Stars.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/078_Plough and Sun In Splendour.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/078_Plough and Sun In Splendour.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/079_Telescope and Stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/079_Telescope and Stars.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/080_Necklace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/080_Necklace.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/081_Pillar and Twin Quatrefoils.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/081_Pillar and Twin Quatrefoils.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/082_Horse-head Gables.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/082_Horse-head Gables.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/083_Sextant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/083_Sextant.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/084_Lyre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/084_Lyre.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/085_Eye of Providence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/085_Eye of Providence.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/086_Clockwork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/086_Clockwork.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/087_Castle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/087_Castle.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/088_Needle and Thread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/088_Needle and Thread.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/089_Portcullis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/089_Portcullis.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/090_Tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/090_Tree.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/091_Pugin Thistle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/091_Pugin Thistle.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/092_Gauntlet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/092_Gauntlet.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/093_Two Fleury Hinges Issuant from Dexter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/093_Two Fleury Hinges Issuant from Dexter.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/094_Torch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/094_Torch.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/095_Sun and Moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/095_Sun and Moon.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/096_Helm of the Esquire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/096_Helm of the Esquire.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/097_Helm of the Knight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/097_Helm of the Knight.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/098_Helm of the Monarch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/098_Helm of the Monarch.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/099_Vambraced Arm of the Warrior.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/099_Vambraced Arm of the Warrior.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/100_Vambraced Arm of the Mage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/100_Vambraced Arm of the Mage.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/101_Vambraced Arm of the Hunter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/101_Vambraced Arm of the Hunter.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/102_Palace Key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/102_Palace Key.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/103_Vault Key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/103_Vault Key.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/104_Dungeon Key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/104_Dungeon Key.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/105_Chain Palewise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/105_Chain Palewise.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/106_Cross Saltire and Orle of Chains.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/106_Cross Saltire and Orle of Chains.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/107_Chain Maille.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/107_Chain Maille.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/108_Trypto Plate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/108_Trypto Plate.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/109_Bordure Plate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/109_Bordure Plate.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/110_Inverted Pall Plate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/110_Inverted Pall Plate.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/111_Escarbuncle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/111_Escarbuncle.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/112_Tracery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/112_Tracery.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/113_Starfield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/113_Starfield.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/114_Wings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/114_Wings.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/115_Skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/115_Skull.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/116_Rose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/116_Rose.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/117_Shields Plate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/117_Shields Plate.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/118_Shields Bracket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/118_Shields Bracket.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/119_The Book of Shields.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/119_The Book of Shields.svg -------------------------------------------------------------------------------- /test/__snapshots__/svgs/hardware/120_Three Shields.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/__snapshots__/svgs/hardware/120_Three Shields.svg -------------------------------------------------------------------------------- /test/shared/buildShield.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/shared/buildShield.ts -------------------------------------------------------------------------------- /test/shared/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/shared/colors.ts -------------------------------------------------------------------------------- /test/shared/deployFieldGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/shared/deployFieldGenerator.ts -------------------------------------------------------------------------------- /test/shared/deployFrameGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/shared/deployFrameGenerator.ts -------------------------------------------------------------------------------- /test/shared/deployHardwareGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/shared/deployHardwareGenerator.ts -------------------------------------------------------------------------------- /test/shared/deployTestFieldGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/shared/deployTestFieldGenerator.ts -------------------------------------------------------------------------------- /test/shared/deployTestHardwareGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/shared/deployTestHardwareGenerator.ts -------------------------------------------------------------------------------- /test/shared/encodeColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/shared/encodeColors.ts -------------------------------------------------------------------------------- /test/shared/expect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/shared/expect.ts -------------------------------------------------------------------------------- /test/shared/extractJSONFromURI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/shared/extractJSONFromURI.ts -------------------------------------------------------------------------------- /test/shared/printSVGToSnapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/shared/printSVGToSnapshots.ts -------------------------------------------------------------------------------- /test/shared/snapshotGasCost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/test/shared/snapshotGasCost.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Area-Technology/shields-contracts/HEAD/yarn.lock --------------------------------------------------------------------------------